Github user MikeThomsen commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2638#discussion_r183256566
--- Diff:
nifi-commons/nifi-record/src/main/java/org/apache/nifi/serialization/record/ResultSetRecordSet.java
---
@@ -350,6 +350,8 @@ private static RecordFieldType getFieldType(final int
sqlType) {
return RecordFieldType.TIME;
case Types.TIMESTAMP:
case Types.TIMESTAMP_WITH_TIMEZONE:
+ case -101: // Oracle's TIMESTAMP WITH TIME ZONE
--- End diff --
@mattyb149 @markap14 Given how proprietary Oracle can be, I don't see how
this could hurt because it's going to be difficult to say what they'll do in
the future and how Calcite might respond to that.
---