File tree Expand file tree Collapse file tree 1 file changed +16
-18
lines changed Expand file tree Collapse file tree 1 file changed +16
-18
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,11 @@ export const keywords: string[] = [
45
45
'IN' ,
46
46
'INNER' ,
47
47
'INTERSECT' ,
48
- 'INTERVAL' ,
49
48
'INTO' ,
50
49
'IS' ,
51
50
'JOIN' ,
52
51
'LATERAL' ,
53
52
'LEFT' ,
54
- 'LIKE' ,
55
53
'LIMIT' ,
56
54
'LOOKUP' ,
57
55
'MERGE' ,
@@ -94,6 +92,22 @@ export const keywords: string[] = [
94
92
'WINDOW' ,
95
93
'WITH' ,
96
94
'WITHIN' ,
95
+
96
+ // misc
97
+ 'SAFE' ,
98
+
99
+ // https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language
100
+ 'LIKE' , // CREATE TABLE LIKE
101
+ 'COPY' , // CREATE TABLE COPY
102
+ 'CLONE' , // CREATE TABLE CLONE
103
+ 'IN' ,
104
+ 'OUT' ,
105
+ 'INOUT' ,
106
+ 'RETURNS' ,
107
+ 'LANGUAGE' ,
108
+ 'CASCADE' ,
109
+ 'RESTRICT' ,
110
+ 'DETERMINISTIC' ,
97
111
] ;
98
112
99
113
export const dataTypes : string [ ] = [
@@ -128,20 +142,4 @@ export const dataTypes: string[] = [
128
142
'ASCII' ,
129
143
'UTF-8' ,
130
144
'UTF8' ,
131
-
132
- // misc
133
- 'SAFE' ,
134
-
135
- // https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language
136
- 'LIKE' , // CREATE TABLE LIKE
137
- 'COPY' , // CREATE TABLE COPY
138
- 'CLONE' , // CREATE TABLE CLONE
139
- 'IN' ,
140
- 'OUT' ,
141
- 'INOUT' ,
142
- 'RETURNS' ,
143
- 'LANGUAGE' ,
144
- 'CASCADE' ,
145
- 'RESTRICT' ,
146
- 'DETERMINISTIC' ,
147
145
] ;
You can’t perform that action at this time.
0 commit comments