jduo commented on code in PR #464:
URL: https://github.com/apache/arrow-java/pull/464#discussion_r1915748322
##########
flight/flight-sql-jdbc-core/src/main/java/org/apache/arrow/driver/jdbc/utils/SqlTypes.java:
##########
@@ -120,7 +120,12 @@ public static int getSqlTypeIdFromArrowType(ArrowType
arrowType) {
case Time:
return Types.TIME;
case Timestamp:
- return Types.TIMESTAMP;
+ String tz = ((ArrowType.Timestamp) arrowType).getTimezone();
+ if (tz != null){
Review Comment:
This makes sense.
--
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]