We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aefb7cf commit 864121dCopy full SHA for 864121d
1 file changed
src/datajoint/declare.py
@@ -20,6 +20,8 @@
20
TYPE_ALIASES = {
21
"FLOAT32": "float",
22
"FLOAT64": "double",
23
+ "INT64": "bigint",
24
+ "UINT64": "bigint unsigned",
25
"INT32": "int",
26
"UINT32": "int unsigned",
27
"INT16": "smallint",
@@ -40,6 +42,8 @@
40
42
# Type aliases must come before INTEGER and FLOAT patterns to avoid prefix matching
41
43
FLOAT32=r"float32$",
44
FLOAT64=r"float64$",
45
+ INT64=r"int64$",
46
+ UINT64=r"uint64$",
47
INT32=r"int32$",
48
UINT32=r"uint32$",
49
INT16=r"int16$",
0 commit comments