aiguofer commented on code in PR #840:
URL: https://github.com/apache/arrow-java/pull/840#discussion_r2376942192


##########
flight/flight-sql-jdbc-core/src/test/java/org/apache/arrow/driver/jdbc/TimestampResultSetTest.java:
##########
@@ -0,0 +1,164 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.arrow.driver.jdbc;
+
+import com.google.common.collect.ImmutableList;
+import java.sql.Connection;
+import java.sql.PreparedStatement;
+import java.sql.ResultSet;
+import java.sql.SQLException;
+import java.sql.Timestamp;
+import java.sql.Types;
+import java.time.Instant;
+import java.time.LocalDateTime;
+import java.time.OffsetDateTime;
+import java.time.ZoneOffset;
+import java.time.ZonedDateTime;
+import java.util.Calendar;
+import java.util.Collections;
+import java.util.TimeZone;
+import org.apache.arrow.driver.jdbc.utils.MockFlightSqlProducer;
+import org.apache.arrow.memory.BufferAllocator;
+import org.apache.arrow.memory.RootAllocator;
+import org.apache.arrow.vector.TimeStampVector;
+import org.apache.arrow.vector.VectorSchemaRoot;
+import org.apache.arrow.vector.types.TimeUnit;
+import org.apache.arrow.vector.types.pojo.ArrowType;
+import org.apache.arrow.vector.types.pojo.Field;
+import org.apache.arrow.vector.types.pojo.Schema;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.RegisterExtension;
+
+/**
+ * Timestamps have a lot of nuances in JDBC. This class is here to test that 
timestamp behavior is
+ * correct for different types of Timestamp vectors as well as different 
methods of retrieving the
+ * timestamps in JDBC.
+ */
+public class TimestampResultSetTest {
+  private static final MockFlightSqlProducer FLIGHT_SQL_PRODUCER = new 
MockFlightSqlProducer();
+
+  @RegisterExtension public static FlightServerTestExtension 
FLIGHT_SERVER_TEST_EXTENSION;
+
+  static {
+    FLIGHT_SERVER_TEST_EXTENSION =
+        
FlightServerTestExtension.createStandardTestExtension(FLIGHT_SQL_PRODUCER);
+  }
+
+  private static final String QUERY_STRING = "SELECT * FROM TIMESTAMPS";
+  private static final Schema QUERY_SCHEMA =
+      new Schema(
+          ImmutableList.of(
+              Field.nullable("no_tz", new 
ArrowType.Timestamp(TimeUnit.MILLISECOND, null)),
+              Field.nullable("utc", new 
ArrowType.Timestamp(TimeUnit.MILLISECOND, "UTC")),
+              Field.nullable("utc+1", new 
ArrowType.Timestamp(TimeUnit.MILLISECOND, "GMT+1:00")),

Review Comment:
   @lidavidm I updated the offsets to `GMT+1` and `GMT-1` for now, which seems 
to work correctly. I will create a separate issue for validation.



-- 
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]

Reply via email to