File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -2070,6 +2070,10 @@ oracle_built_in_data_type
20702070 / long_and_raw_data_type
20712071 / datetime_data_type
20722072 / large_object_data_type
2073+ / boolean_type
2074+
2075+ boolean_type
2076+ = KW_BOOL / KW_BOOLEAN
20732077
20742078// CHARACTER DATATYPE
20752079character_data_type
@@ -3011,4 +3015,6 @@ KW_JSON = 'json'i !ident_start { return 'json'; }
30113015KW_DATE = 'date'i !ident_start { return 'date'; }
30123016KW_TIMESTAMP = 'timestamp'i !ident_start { return 'timestamp'; }
30133017KW_TIME = 'time'i !ident_start { return 'time'; }
3014- KW_ZONE = 'zone'i !ident_start { return 'zone'; }
3018+ KW_ZONE = 'zone'i !ident_start { return 'zone'; }
3019+ KW_BOOL = 'bool'i !ident_start { return 'bool'; }
3020+ KW_BOOLEAN = 'boolean'i !ident_start { return 'boolean'; }
You can’t perform that action at this time.
0 commit comments