File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
document-store/src/main/java/org/hypertrace/core/documentstore/expression/impl Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ public enum DataType {
2222 FLOAT ,
2323 DOUBLE ,
2424 BOOLEAN ,
25+ // timestamp with time-zone information. For example: 2004-10-19 10:23:54+02.
26+ // For more info, see: https://www.postgresql.org/docs/current/datatype-datetime.html
2527 TIMESTAMPTZ ,
2628 DATE
2729}
Original file line number Diff line number Diff line change @@ -73,6 +73,8 @@ public static IdentifierExpression ofBoolean(final String name) {
7373 return of (name , DataType .BOOLEAN );
7474 }
7575
76+ // Timestamp with time-zone information. For example: 2004-10-19 10:23:54+02. For more info, see:
77+ // https://www.postgresql.org/docs/current/datatype-datetime.html
7678 public static IdentifierExpression ofTimestampTz (final String name ) {
7779 return of (name , DataType .TIMESTAMPTZ );
7880 }
You can’t perform that action at this time.
0 commit comments