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
2070
2070
/ long_and_raw_data_type
2071
2071
/ datetime_data_type
2072
2072
/ large_object_data_type
2073
+ / boolean_type
2074
+
2075
+ boolean_type
2076
+ = type :(KW_BOOL / KW_BOOLEAN ) { return { type }; }
2073
2077
2074
2078
// CHARACTER DATATYPE
2075
2079
character_data_type
@@ -3011,4 +3015,6 @@ KW_JSON = 'json'i !ident_start { return 'json'; }
3011
3015
KW_DATE = 'date'i !ident_start { return 'date'; }
3012
3016
KW_TIMESTAMP = 'timestamp'i !ident_start { return 'timestamp'; }
3013
3017
KW_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