@surrealdb/lezer 1.0.0-beta.9 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +359 -309
- package/dist/index.js +359 -311
- package/dist/typing.d.ts +6 -0
- package/package.json +35 -27
- package/rollup.config.js +9 -5
- package/src/highlight.js +6 -4
- package/src/index.js +2 -0
- package/src/parser.js +21 -18
- package/src/parser.terms.js +383 -375
- package/src/surrealql.grammar +806 -618
- package/src/tokens.js +155 -132
- package/src/typing.d.ts +6 -0
- package/src/version.js +15 -0
- package/test/statement.txt +85 -0
- package/test/test-surrealql.js +5 -5
- package/test/value.txt +32 -1
- package/LICENSE +0 -201
package/src/parser.terms.js
CHANGED
|
@@ -1,378 +1,386 @@
|
|
|
1
1
|
// This file was generated by lezer-generator. You probably shouldn't edit it.
|
|
2
2
|
export const
|
|
3
3
|
objectOpen = 1,
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
is =
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
Path =
|
|
278
|
-
|
|
279
|
-
Any =
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
4
|
+
rangeOp = 2,
|
|
5
|
+
rangeOpOpenBoth = 3,
|
|
6
|
+
rangeOpOpenLeft = 4,
|
|
7
|
+
rangeOpOpenRight = 5,
|
|
8
|
+
access = 6,
|
|
9
|
+
algorithm = 7,
|
|
10
|
+
all = 8,
|
|
11
|
+
alter = 9,
|
|
12
|
+
always = 10,
|
|
13
|
+
analyzer = 11,
|
|
14
|
+
and = 12,
|
|
15
|
+
any = 13,
|
|
16
|
+
api = 14,
|
|
17
|
+
as = 15,
|
|
18
|
+
asc = 16,
|
|
19
|
+
assert = 17,
|
|
20
|
+
at = 18,
|
|
21
|
+
authenticate = 19,
|
|
22
|
+
auto = 20,
|
|
23
|
+
backend = 21,
|
|
24
|
+
begin = 22,
|
|
25
|
+
bm25 = 23,
|
|
26
|
+
_break = 24,
|
|
27
|
+
bucket = 25,
|
|
28
|
+
by = 26,
|
|
29
|
+
cancel = 27,
|
|
30
|
+
capacity = 28,
|
|
31
|
+
cascade = 29,
|
|
32
|
+
changefeed = 30,
|
|
33
|
+
changes = 31,
|
|
34
|
+
collate = 32,
|
|
35
|
+
columns = 33,
|
|
36
|
+
comment = 34,
|
|
37
|
+
commit = 35,
|
|
38
|
+
computed = 36,
|
|
39
|
+
concurrently = 37,
|
|
40
|
+
config = 38,
|
|
41
|
+
content = 39,
|
|
42
|
+
_continue = 40,
|
|
43
|
+
create = 41,
|
|
44
|
+
database = 42,
|
|
45
|
+
db = 43,
|
|
46
|
+
_default = 44,
|
|
47
|
+
defer = 45,
|
|
48
|
+
define = 46,
|
|
49
|
+
_delete = 47,
|
|
50
|
+
desc = 48,
|
|
51
|
+
dimension = 49,
|
|
52
|
+
dist = 50,
|
|
53
|
+
doc_ids_cache = 51,
|
|
54
|
+
doc_ids_order = 52,
|
|
55
|
+
doc_lengths_cache = 53,
|
|
56
|
+
doc_lengths_order = 54,
|
|
57
|
+
drop = 55,
|
|
58
|
+
duplicate = 56,
|
|
59
|
+
duration = 57,
|
|
60
|
+
efc = 58,
|
|
61
|
+
_else = 59,
|
|
62
|
+
end = 60,
|
|
63
|
+
enforced = 61,
|
|
64
|
+
event = 62,
|
|
65
|
+
exclude = 63,
|
|
66
|
+
exists = 64,
|
|
67
|
+
explain = 65,
|
|
68
|
+
expunge = 66,
|
|
69
|
+
extend_candidates = 67,
|
|
70
|
+
fetch = 68,
|
|
71
|
+
field = 69,
|
|
72
|
+
fields = 70,
|
|
73
|
+
filters = 71,
|
|
74
|
+
flexible = 72,
|
|
75
|
+
_for = 73,
|
|
76
|
+
from = 74,
|
|
77
|
+
functions = 75,
|
|
78
|
+
get = 76,
|
|
79
|
+
graphql = 77,
|
|
80
|
+
group = 78,
|
|
81
|
+
highlights = 79,
|
|
82
|
+
hnsw = 80,
|
|
83
|
+
_if = 81,
|
|
84
|
+
ignore = 82,
|
|
85
|
+
_in = 83,
|
|
86
|
+
include = 84,
|
|
87
|
+
index = 85,
|
|
88
|
+
info = 86,
|
|
89
|
+
insert = 87,
|
|
90
|
+
into = 88,
|
|
91
|
+
issuer = 89,
|
|
92
|
+
jwt = 90,
|
|
93
|
+
keep_pruned_connections = 91,
|
|
94
|
+
key = 92,
|
|
95
|
+
kill = 93,
|
|
96
|
+
_let = 94,
|
|
97
|
+
limit = 95,
|
|
98
|
+
live = 96,
|
|
99
|
+
lm = 97,
|
|
100
|
+
m = 98,
|
|
101
|
+
m0 = 99,
|
|
102
|
+
merge = 100,
|
|
103
|
+
middleware = 101,
|
|
104
|
+
mtree = 102,
|
|
105
|
+
mtree_cache = 103,
|
|
106
|
+
namespace = 104,
|
|
107
|
+
noindex = 105,
|
|
108
|
+
normal = 106,
|
|
109
|
+
not = 107,
|
|
110
|
+
ns = 108,
|
|
111
|
+
numeric = 109,
|
|
112
|
+
omit = 110,
|
|
113
|
+
on = 111,
|
|
114
|
+
only = 112,
|
|
115
|
+
option = 113,
|
|
116
|
+
order = 114,
|
|
117
|
+
out = 115,
|
|
118
|
+
overwrite = 116,
|
|
119
|
+
parallel = 117,
|
|
120
|
+
param = 118,
|
|
121
|
+
passhash = 119,
|
|
122
|
+
password = 120,
|
|
123
|
+
patch = 121,
|
|
124
|
+
permissions = 122,
|
|
125
|
+
post = 123,
|
|
126
|
+
postings_cache = 124,
|
|
127
|
+
postings_order = 125,
|
|
128
|
+
put = 126,
|
|
129
|
+
readonly = 127,
|
|
130
|
+
rebuild = 128,
|
|
131
|
+
record = 129,
|
|
132
|
+
reference = 130,
|
|
133
|
+
reject = 131,
|
|
134
|
+
relate = 132,
|
|
135
|
+
relation = 133,
|
|
136
|
+
remove = 134,
|
|
137
|
+
replace = 135,
|
|
138
|
+
_return = 136,
|
|
139
|
+
roles = 137,
|
|
140
|
+
root = 138,
|
|
141
|
+
sc = 139,
|
|
142
|
+
schemafull = 140,
|
|
143
|
+
schemaless = 141,
|
|
144
|
+
scope = 142,
|
|
145
|
+
search = 143,
|
|
146
|
+
select = 144,
|
|
147
|
+
session = 145,
|
|
148
|
+
set = 146,
|
|
149
|
+
show = 147,
|
|
150
|
+
signin = 148,
|
|
151
|
+
signup = 149,
|
|
152
|
+
since = 150,
|
|
153
|
+
sleep = 151,
|
|
154
|
+
split = 152,
|
|
155
|
+
start = 153,
|
|
156
|
+
structure = 154,
|
|
157
|
+
table = 155,
|
|
158
|
+
tables = 156,
|
|
159
|
+
tb = 157,
|
|
160
|
+
tempfiles = 158,
|
|
161
|
+
terms_cache = 159,
|
|
162
|
+
terms_order = 160,
|
|
163
|
+
then = 161,
|
|
164
|
+
_throw = 162,
|
|
165
|
+
timeout = 163,
|
|
166
|
+
to = 164,
|
|
167
|
+
token = 165,
|
|
168
|
+
tokenizers = 166,
|
|
169
|
+
trace = 167,
|
|
170
|
+
transaction = 168,
|
|
171
|
+
typeKeyword = 169,
|
|
172
|
+
unique = 170,
|
|
173
|
+
unset = 171,
|
|
174
|
+
update = 172,
|
|
175
|
+
upsert = 173,
|
|
176
|
+
url = 174,
|
|
177
|
+
use = 175,
|
|
178
|
+
user = 176,
|
|
179
|
+
valueKeyword = 177,
|
|
180
|
+
values = 178,
|
|
181
|
+
version = 179,
|
|
182
|
+
when = 180,
|
|
183
|
+
where = 181,
|
|
184
|
+
_with = 182,
|
|
185
|
+
after = 183,
|
|
186
|
+
before = 184,
|
|
187
|
+
diff = 185,
|
|
188
|
+
_false = 186,
|
|
189
|
+
full = 187,
|
|
190
|
+
none = 188,
|
|
191
|
+
_null = 189,
|
|
192
|
+
_true = 190,
|
|
193
|
+
IndexTypeClause = 191,
|
|
194
|
+
TokenType = 192,
|
|
195
|
+
binaryOperatorKeyword = 492,
|
|
196
|
+
is = 493,
|
|
197
|
+
opIn = 494,
|
|
198
|
+
opNot = 495,
|
|
199
|
+
Distance = 193,
|
|
200
|
+
minkowski = 194,
|
|
201
|
+
Filter = 195,
|
|
202
|
+
AnalyzerTokenizer = 196,
|
|
203
|
+
_function = 496,
|
|
204
|
+
rand = 197,
|
|
205
|
+
count = 198,
|
|
206
|
+
Comment = 199,
|
|
207
|
+
BlockComment = 200,
|
|
208
|
+
SurrealQL = 201,
|
|
209
|
+
BeginStatement = 202,
|
|
210
|
+
CancelStatement = 203,
|
|
211
|
+
CommitStatement = 204,
|
|
212
|
+
InfoForStatement = 205,
|
|
213
|
+
Ident = 206,
|
|
214
|
+
KillStatement = 207,
|
|
215
|
+
String = 208,
|
|
216
|
+
LiveSelectStatement = 209,
|
|
217
|
+
Predicate = 210,
|
|
218
|
+
prefixedString = 211,
|
|
219
|
+
FormatString = 212,
|
|
220
|
+
Interpolation = 215,
|
|
221
|
+
Int = 216,
|
|
222
|
+
Float = 217,
|
|
223
|
+
Decimal = 218,
|
|
224
|
+
Regex = 219,
|
|
225
|
+
VariableName = 220,
|
|
226
|
+
Array = 224,
|
|
227
|
+
Set = 225,
|
|
228
|
+
RecordId = 226,
|
|
229
|
+
RecordTbIdent = 227,
|
|
230
|
+
RecordIdIdent = 229,
|
|
231
|
+
Object = 230,
|
|
232
|
+
ObjectContent = 231,
|
|
233
|
+
ObjectProperty = 232,
|
|
234
|
+
ObjectKey = 233,
|
|
235
|
+
RecordIdRange = 236,
|
|
236
|
+
FunctionJs = 237,
|
|
237
|
+
ArgumentList = 239,
|
|
238
|
+
IfElseStatement = 240,
|
|
239
|
+
Block = 242,
|
|
240
|
+
SubQuery = 243,
|
|
241
|
+
LetStatement = 245,
|
|
242
|
+
paramDefinition = 246,
|
|
243
|
+
LiteralType = 252,
|
|
244
|
+
Duration = 253,
|
|
245
|
+
DurationPart = 254,
|
|
246
|
+
ObjectTypeContent = 257,
|
|
247
|
+
ObjectTypeProperty = 258,
|
|
248
|
+
DeleteStatement = 261,
|
|
249
|
+
WhereClause = 262,
|
|
250
|
+
ReturnClause = 263,
|
|
251
|
+
Fields = 264,
|
|
252
|
+
AnyStar = 265,
|
|
253
|
+
TimeoutClause = 266,
|
|
254
|
+
ParallelClause = 267,
|
|
255
|
+
CreateStatement = 268,
|
|
256
|
+
FunctionCall = 269,
|
|
257
|
+
FunctionName = 270,
|
|
258
|
+
customFunctionName = 271,
|
|
259
|
+
VersionNumber = 273,
|
|
260
|
+
ContentClause = 274,
|
|
261
|
+
SetClause = 275,
|
|
262
|
+
FieldAssignment = 276,
|
|
263
|
+
assignmentOperator = 277,
|
|
264
|
+
UnsetClause = 278,
|
|
265
|
+
SelectStatement = 279,
|
|
266
|
+
OmitClause = 280,
|
|
267
|
+
WithClause = 281,
|
|
268
|
+
SplitClause = 282,
|
|
269
|
+
Idiom = 283,
|
|
270
|
+
GroupClause = 284,
|
|
271
|
+
OrderClause = 285,
|
|
272
|
+
Order = 286,
|
|
273
|
+
LimitStartComboClause = 287,
|
|
274
|
+
StartClause = 288,
|
|
275
|
+
LimitClause = 289,
|
|
276
|
+
FetchClause = 290,
|
|
277
|
+
Path = 291,
|
|
278
|
+
Lookup = 292,
|
|
279
|
+
Any = 297,
|
|
280
|
+
LookupSelection = 298,
|
|
281
|
+
GraphPredicate = 300,
|
|
282
|
+
Optional = 306,
|
|
283
|
+
At = 307,
|
|
284
|
+
IdiomFunction = 308,
|
|
285
|
+
Destructure = 310,
|
|
286
|
+
Recurse = 311,
|
|
287
|
+
RecurseRange = 312,
|
|
288
|
+
RecurseOptions = 313,
|
|
289
|
+
recurseOptionName = 314,
|
|
290
|
+
TempfilesClause = 317,
|
|
291
|
+
ExplainClause = 318,
|
|
292
|
+
VersionClause = 319,
|
|
293
|
+
RelateStatement = 320,
|
|
294
|
+
UpdateStatement = 321,
|
|
295
|
+
ReplaceClause = 322,
|
|
296
|
+
MergeClause = 323,
|
|
297
|
+
PatchClause = 324,
|
|
298
|
+
RemoveStatement = 325,
|
|
299
|
+
IfExistsClause = 326,
|
|
300
|
+
OnTableClause = 327,
|
|
301
|
+
functionKw = 328,
|
|
302
|
+
UpsertStatement = 329,
|
|
303
|
+
ReturnStatement = 330,
|
|
304
|
+
AlterStatement = 331,
|
|
305
|
+
IfNotExistsClause = 332,
|
|
306
|
+
PermissionsForClause = 333,
|
|
307
|
+
CommentClause = 334,
|
|
308
|
+
DefineStatement = 335,
|
|
309
|
+
OverwriteClause = 337,
|
|
310
|
+
OnRootNsDbClause = 338,
|
|
311
|
+
AccessTypeClause = 339,
|
|
312
|
+
JwtClause = 340,
|
|
313
|
+
SignupClause = 341,
|
|
314
|
+
SigninClause = 342,
|
|
315
|
+
AuthenticateClause = 343,
|
|
316
|
+
DurationClause = 344,
|
|
317
|
+
DurationValue = 345,
|
|
318
|
+
TokenTypeClause = 346,
|
|
319
|
+
TypeClause = 349,
|
|
320
|
+
DefaultClause = 350,
|
|
321
|
+
ReadonlyClause = 352,
|
|
322
|
+
ValueClause = 353,
|
|
323
|
+
AssertClause = 354,
|
|
324
|
+
ReferenceClause = 355,
|
|
325
|
+
ComputedClause = 356,
|
|
326
|
+
FieldsColumnsClause = 357,
|
|
327
|
+
IndexClause = 358,
|
|
328
|
+
UniqueClause = 359,
|
|
329
|
+
SearchAnalyzerClause = 360,
|
|
330
|
+
Bm25Clause = 361,
|
|
331
|
+
DocIdsOrderClause = 362,
|
|
332
|
+
DocLenghtsOrderClause = 363,
|
|
333
|
+
PostingsOrderClause = 364,
|
|
334
|
+
TermsOrderClause = 365,
|
|
335
|
+
DocIdsCacheClause = 366,
|
|
336
|
+
DocLenghtsCacheClause = 367,
|
|
337
|
+
PostingsCacheClause = 368,
|
|
338
|
+
TermsCacheClause = 369,
|
|
339
|
+
MtreeClause = 370,
|
|
340
|
+
IndexDimensionClause = 371,
|
|
341
|
+
MtreeDistClause = 372,
|
|
342
|
+
IndexCapacityClause = 373,
|
|
343
|
+
MtreeCacheClause = 374,
|
|
344
|
+
HnswClause = 375,
|
|
345
|
+
HnswDistClause = 376,
|
|
346
|
+
IndexLmClause = 377,
|
|
347
|
+
IndexM0Clause = 378,
|
|
348
|
+
IndexMClause = 379,
|
|
349
|
+
IndexEfcClause = 380,
|
|
350
|
+
IndexExtendCandidatesClause = 381,
|
|
351
|
+
IndexKeepPrunedConnectionsClause = 382,
|
|
352
|
+
TokenizersClause = 385,
|
|
353
|
+
FiltersClause = 386,
|
|
354
|
+
AnalyzerFilters = 387,
|
|
355
|
+
FunctionClause = 388,
|
|
356
|
+
PermissionsBasicClause = 389,
|
|
357
|
+
SessionClause = 391,
|
|
358
|
+
TableTypeClause = 392,
|
|
359
|
+
TableViewClause = 394,
|
|
360
|
+
ChangefeedClause = 395,
|
|
361
|
+
ApiOptions = 396,
|
|
362
|
+
MiddlewareClause = 397,
|
|
363
|
+
HttpMethod = 398,
|
|
364
|
+
BackendClause = 399,
|
|
365
|
+
RebuildStatement = 400,
|
|
366
|
+
InsertStatement = 401,
|
|
367
|
+
JavaScriptBlock = 404,
|
|
368
|
+
Closure = 406,
|
|
369
|
+
escapedParamDefinition = 407,
|
|
370
|
+
TypeCast = 409,
|
|
371
|
+
BinaryExpression = 411,
|
|
372
|
+
Operator = 412,
|
|
373
|
+
Range = 413,
|
|
374
|
+
ShowStatement = 414,
|
|
375
|
+
SleepStatement = 415,
|
|
376
|
+
UseStatement = 416,
|
|
377
|
+
OptionStatement = 417,
|
|
378
|
+
BreakStatement = 418,
|
|
379
|
+
ContinueStatement = 419,
|
|
380
|
+
ForStatement = 420,
|
|
381
|
+
ThrowStatement = 421,
|
|
382
|
+
PermissionInput = 422,
|
|
383
|
+
IndexInput = 423,
|
|
384
|
+
CombinedResults = 424,
|
|
385
|
+
CommentResult = 426,
|
|
386
|
+
Syntax = 428
|