@@ -58,12 +58,20 @@ public enum PrimitiveType implements Type {
58
58
/** JSON in an indexed binary representation. Doesn't support matching, can't be used in the primary key */
59
59
JsonDocument (ProtoType .getJsonDocument ()),
60
60
/** A binary representation of a real number with an accuracy of up to 38 digits.
61
- * Acceptable values: positive numbers from 1×10-130 up to 1×10126–1,
62
- * negative numbers from -1×10126–1 to -1×10-130, and 0.
63
- * Compatible with the Number type in AWS DynamoDB.
64
- * It's not recommended for ydb-native applications.
65
- */
66
- DyNumber (ProtoType .getDyNumber ());
61
+ * Acceptable values: positive numbers from 1×10-130 up to 1×10126–1,
62
+ * negative numbers from -1×10126–1 to -1×10-130, and 0.
63
+ * Compatible with the Number type in AWS DynamoDB.
64
+ * It's not recommended for ydb-native applications.
65
+ */
66
+ DyNumber (ProtoType .getDyNumber ()),
67
+
68
+ Date32 (ProtoType .getDate32 ()),
69
+
70
+ Datetime64 (ProtoType .getDatetime64 ()),
71
+
72
+ Timestamp64 (ProtoType .getTimestamp64 ()),
73
+
74
+ Interval64 (ProtoType .getInterval64 ());
67
75
68
76
private final ValueProtos .Type pbType ;
69
77
0 commit comments