Skip to content

Commit 0703da5

Browse files
authored
Merge pull request #1515 from johnedquinn/v1-conformance-time
Fixes timestamp bug
2 parents 8b4e0d3 + 5a9a25a commit 0703da5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

partiql-eval/src/main/java/org/partiql/eval/value/DatumTimestamp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class DatumTimestamp implements Datum {
1414

1515
// TODO: Pass precision to constructor.
1616
// TODO: Create a variant specifically for without TZ
17-
private final static PType _type = PType.typeTimeWithTZ(6);
17+
private final static PType _type = PType.typeTimestampWithTZ(6);
1818

1919
DatumTimestamp(@NotNull Timestamp value) {
2020
_value = value;

0 commit comments

Comments
 (0)