Skip to content

Commit b5c99fa

Browse files
committed
Minor cleanup
1 parent 10d9583 commit b5c99fa

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

flight/flight-sql-jdbc-core/src/test/java/org/apache/arrow/driver/jdbc/TimestampResultSetTest.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,7 @@ public static void setup() throws SQLException {
8787
if (v instanceof TimeStampMilliVector) {
8888
((TimeStampMilliVector) v).setSafe(0, firstDay2025.toEpochMilli());
8989
} else if (v instanceof TimeStampMilliTZVector) {
90-
String vecTz =
91-
((ArrowType.Timestamp) v.getField().getType()).getTimezone();
92-
long millis = firstDay2025.toEpochMilli();
93-
((TimeStampMilliTZVector) v).setSafe(0, millis);
90+
((TimeStampMilliTZVector) v).setSafe(0, firstDay2025.toEpochMilli());
9491
}
9592
});
9693
root.setRowCount(1);

0 commit comments

Comments
 (0)