Tuple values not implementing the Comparable interface cause the jdbc tap to throw an exception. This means that no values of type byte[] can be saved to the db.
The issue is caused by the tuple.get( i ) method call in TupleRecord.java on line 51. If tuple.getObject(i) is used instead inserts containing byte[] values work fine.
Tuple values not implementing the Comparable interface cause the jdbc tap to throw an exception. This means that no values of type byte[] can be saved to the db.
The issue is caused by the tuple.get( i ) method call in TupleRecord.java on line 51. If tuple.getObject(i) is used instead inserts containing byte[] values work fine.