fila-73 opened a new issue, #8015:
URL: https://github.com/apache/hop/issues/8015
### Apache Hop version?
2.16+
### Java version?
21
### Operating system
Windows
### What happened?
plugins/valuetypes/uuid/src/main/java/org/apache/hop/uuid/ValueMetaUuid.java
@Override
public void setPreparedStatementValue(
DatabaseMeta databaseMeta, PreparedStatement preparedStatement, int
index, Object data)
throws HopDatabaseException {
try {
UUID u = toUuid(this, data);
if (u == null) {
preparedStatement.setNull(index, Types.OTHER);
return;
}
Oracle does not support Types.OTHER 1111 and raise an error when inserting
null UUID
Is it posibble to use Types.NULL ?
### Issue Priority
Priority: 2
### Issue Component
Component: Transforms, Component: Database
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]