-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgrammar.js
682 lines (682 loc) · 53.1 KB
/
grammar.js
1
2
3
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
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
278
279
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
// Generated automatically by nearley, version 2.20.1
// http://github.com/Hardmath123/nearley
(function () {
function id(x) { return x[0]; }
var grammar = {
Lexer: undefined,
ParserRules: [
{"name": "_$ebnf$1", "symbols": []},
{"name": "_$ebnf$1", "symbols": ["_$ebnf$1", "wschar"], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "_", "symbols": ["_$ebnf$1"], "postprocess": function(d) {return null;}},
{"name": "__$ebnf$1", "symbols": ["wschar"]},
{"name": "__$ebnf$1", "symbols": ["__$ebnf$1", "wschar"], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "__", "symbols": ["__$ebnf$1"], "postprocess": function(d) {return null;}},
{"name": "wschar", "symbols": [/[ \t\n\v\f]/], "postprocess": id},
{"name": "unsigned_int$ebnf$1", "symbols": [/[0-9]/]},
{"name": "unsigned_int$ebnf$1", "symbols": ["unsigned_int$ebnf$1", /[0-9]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "unsigned_int", "symbols": ["unsigned_int$ebnf$1"], "postprocess":
function(d) {
return parseInt(d[0].join(""));
}
},
{"name": "int$ebnf$1$subexpression$1", "symbols": [{"literal":"-"}]},
{"name": "int$ebnf$1$subexpression$1", "symbols": [{"literal":"+"}]},
{"name": "int$ebnf$1", "symbols": ["int$ebnf$1$subexpression$1"], "postprocess": id},
{"name": "int$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "int$ebnf$2", "symbols": [/[0-9]/]},
{"name": "int$ebnf$2", "symbols": ["int$ebnf$2", /[0-9]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "int", "symbols": ["int$ebnf$1", "int$ebnf$2"], "postprocess":
function(d) {
if (d[0]) {
return parseInt(d[0][0]+d[1].join(""));
} else {
return parseInt(d[1].join(""));
}
}
},
{"name": "unsigned_decimal$ebnf$1", "symbols": [/[0-9]/]},
{"name": "unsigned_decimal$ebnf$1", "symbols": ["unsigned_decimal$ebnf$1", /[0-9]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "unsigned_decimal$ebnf$2$subexpression$1$ebnf$1", "symbols": [/[0-9]/]},
{"name": "unsigned_decimal$ebnf$2$subexpression$1$ebnf$1", "symbols": ["unsigned_decimal$ebnf$2$subexpression$1$ebnf$1", /[0-9]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "unsigned_decimal$ebnf$2$subexpression$1", "symbols": [{"literal":"."}, "unsigned_decimal$ebnf$2$subexpression$1$ebnf$1"]},
{"name": "unsigned_decimal$ebnf$2", "symbols": ["unsigned_decimal$ebnf$2$subexpression$1"], "postprocess": id},
{"name": "unsigned_decimal$ebnf$2", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "unsigned_decimal", "symbols": ["unsigned_decimal$ebnf$1", "unsigned_decimal$ebnf$2"], "postprocess":
function(d) {
return parseFloat(
d[0].join("") +
(d[1] ? "."+d[1][1].join("") : "")
);
}
},
{"name": "decimal$ebnf$1", "symbols": [{"literal":"-"}], "postprocess": id},
{"name": "decimal$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "decimal$ebnf$2", "symbols": [/[0-9]/]},
{"name": "decimal$ebnf$2", "symbols": ["decimal$ebnf$2", /[0-9]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "decimal$ebnf$3$subexpression$1$ebnf$1", "symbols": [/[0-9]/]},
{"name": "decimal$ebnf$3$subexpression$1$ebnf$1", "symbols": ["decimal$ebnf$3$subexpression$1$ebnf$1", /[0-9]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "decimal$ebnf$3$subexpression$1", "symbols": [{"literal":"."}, "decimal$ebnf$3$subexpression$1$ebnf$1"]},
{"name": "decimal$ebnf$3", "symbols": ["decimal$ebnf$3$subexpression$1"], "postprocess": id},
{"name": "decimal$ebnf$3", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "decimal", "symbols": ["decimal$ebnf$1", "decimal$ebnf$2", "decimal$ebnf$3"], "postprocess":
function(d) {
return parseFloat(
(d[0] || "") +
d[1].join("") +
(d[2] ? "."+d[2][1].join("") : "")
);
}
},
{"name": "percentage", "symbols": ["decimal", {"literal":"%"}], "postprocess":
function(d) {
return d[0]/100;
}
},
{"name": "jsonfloat$ebnf$1", "symbols": [{"literal":"-"}], "postprocess": id},
{"name": "jsonfloat$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "jsonfloat$ebnf$2", "symbols": [/[0-9]/]},
{"name": "jsonfloat$ebnf$2", "symbols": ["jsonfloat$ebnf$2", /[0-9]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "jsonfloat$ebnf$3$subexpression$1$ebnf$1", "symbols": [/[0-9]/]},
{"name": "jsonfloat$ebnf$3$subexpression$1$ebnf$1", "symbols": ["jsonfloat$ebnf$3$subexpression$1$ebnf$1", /[0-9]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "jsonfloat$ebnf$3$subexpression$1", "symbols": [{"literal":"."}, "jsonfloat$ebnf$3$subexpression$1$ebnf$1"]},
{"name": "jsonfloat$ebnf$3", "symbols": ["jsonfloat$ebnf$3$subexpression$1"], "postprocess": id},
{"name": "jsonfloat$ebnf$3", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "jsonfloat$ebnf$4$subexpression$1$ebnf$1", "symbols": [/[+-]/], "postprocess": id},
{"name": "jsonfloat$ebnf$4$subexpression$1$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "jsonfloat$ebnf$4$subexpression$1$ebnf$2", "symbols": [/[0-9]/]},
{"name": "jsonfloat$ebnf$4$subexpression$1$ebnf$2", "symbols": ["jsonfloat$ebnf$4$subexpression$1$ebnf$2", /[0-9]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "jsonfloat$ebnf$4$subexpression$1", "symbols": [/[eE]/, "jsonfloat$ebnf$4$subexpression$1$ebnf$1", "jsonfloat$ebnf$4$subexpression$1$ebnf$2"]},
{"name": "jsonfloat$ebnf$4", "symbols": ["jsonfloat$ebnf$4$subexpression$1"], "postprocess": id},
{"name": "jsonfloat$ebnf$4", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "jsonfloat", "symbols": ["jsonfloat$ebnf$1", "jsonfloat$ebnf$2", "jsonfloat$ebnf$3", "jsonfloat$ebnf$4"], "postprocess":
function(d) {
return parseFloat(
(d[0] || "") +
d[1].join("") +
(d[2] ? "."+d[2][1].join("") : "") +
(d[3] ? "e" + (d[3][1] || "+") + d[3][2].join("") : "")
);
}
},
{"name": "dqstring$ebnf$1", "symbols": []},
{"name": "dqstring$ebnf$1", "symbols": ["dqstring$ebnf$1", "dstrchar"], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "dqstring", "symbols": [{"literal":"\""}, "dqstring$ebnf$1", {"literal":"\""}], "postprocess": function(d) {return d[1].join(""); }},
{"name": "sqstring$ebnf$1", "symbols": []},
{"name": "sqstring$ebnf$1", "symbols": ["sqstring$ebnf$1", "sstrchar"], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "sqstring", "symbols": [{"literal":"'"}, "sqstring$ebnf$1", {"literal":"'"}], "postprocess": function(d) {return d[1].join(""); }},
{"name": "btstring$ebnf$1", "symbols": []},
{"name": "btstring$ebnf$1", "symbols": ["btstring$ebnf$1", /[^`]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "btstring", "symbols": [{"literal":"`"}, "btstring$ebnf$1", {"literal":"`"}], "postprocess": function(d) {return d[1].join(""); }},
{"name": "dstrchar", "symbols": [/[^\\"\n]/], "postprocess": id},
{"name": "dstrchar", "symbols": [{"literal":"\\"}, "strescape"], "postprocess":
function(d) {
return JSON.parse("\""+d.join("")+"\"");
}
},
{"name": "sstrchar", "symbols": [/[^\\'\n]/], "postprocess": id},
{"name": "sstrchar", "symbols": [{"literal":"\\"}, "strescape"], "postprocess": function(d) { return JSON.parse("\""+d.join("")+"\""); }},
{"name": "sstrchar$string$1", "symbols": [{"literal":"\\"}, {"literal":"'"}], "postprocess": function joiner(d) {return d.join('');}},
{"name": "sstrchar", "symbols": ["sstrchar$string$1"], "postprocess": function(d) {return "'"; }},
{"name": "strescape", "symbols": [/["\\/bfnrt]/], "postprocess": id},
{"name": "strescape", "symbols": [{"literal":"u"}, /[a-fA-F0-9]/, /[a-fA-F0-9]/, /[a-fA-F0-9]/, /[a-fA-F0-9]/], "postprocess":
function(d) {
return d.join("");
}
},
{"name": "table_name", "symbols": ["word"], "postprocess": d => d[0]},
{"name": "table_name", "symbols": ["btstring"], "postprocess": d => d[0]},
{"name": "field_name", "symbols": ["word"], "postprocess": d => d[0]},
{"name": "field_name", "symbols": ["btstring"], "postprocess": d => d[0]},
{"name": "set_value", "symbols": ["word"], "postprocess": d => d[0]},
{"name": "set_value", "symbols": ["btstring"], "postprocess": d => d[0]},
{"name": "string", "symbols": ["dqstring"], "postprocess": d => d[0]},
{"name": "string", "symbols": ["sqstring"], "postprocess": d => d[0]},
{"name": "word", "symbols": [/[A-Za-z_]/], "postprocess": id},
{"name": "word", "symbols": ["word", /[A-Za-z0-9_]/], "postprocess": d => '' + d[0] + d[1]},
{"name": "newline$ebnf$1", "symbols": []},
{"name": "newline$ebnf$1", "symbols": ["newline$ebnf$1", /[ \t\v\f]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "newline", "symbols": ["newline$ebnf$1", /[\r?\n]/], "postprocess": d => null},
{"name": "space$ebnf$1", "symbols": []},
{"name": "space$ebnf$1", "symbols": ["space$ebnf$1", /[ \t\v\f]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "space", "symbols": ["space$ebnf$1"], "postprocess": d => null},
{"name": "data_type", "symbols": ["numeric_type"], "postprocess": d => d[0]},
{"name": "data_type", "symbols": ["datetime_type"], "postprocess": d => d[0]},
{"name": "data_type", "symbols": ["string_type"], "postprocess": d => d[0]},
{"name": "data_type", "symbols": ["spatial_data_type"], "postprocess": d => d[0]},
{"name": "numeric_type", "symbols": ["integer_type"], "postprocess": d => d[0]},
{"name": "numeric_type$subexpression$1$subexpression$1", "symbols": [/[dD]/, /[eE]/, /[cC]/, /[iI]/, /[mM]/, /[aA]/, /[lL]/], "postprocess": function(d) {return d.join(""); }},
{"name": "numeric_type$subexpression$1", "symbols": ["numeric_type$subexpression$1$subexpression$1"]},
{"name": "numeric_type$subexpression$1$subexpression$2", "symbols": [/[nN]/, /[uU]/, /[mM]/, /[eE]/, /[rR]/, /[iI]/, /[cC]/], "postprocess": function(d) {return d.join(""); }},
{"name": "numeric_type$subexpression$1", "symbols": ["numeric_type$subexpression$1$subexpression$2"]},
{"name": "numeric_type$subexpression$1$subexpression$3", "symbols": [/[fF]/, /[lL]/, /[oO]/, /[aA]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "numeric_type$subexpression$1", "symbols": ["numeric_type$subexpression$1$subexpression$3"]},
{"name": "numeric_type$subexpression$1$subexpression$4", "symbols": [/[dD]/, /[oO]/, /[uU]/, /[bB]/, /[lL]/, /[eE]/], "postprocess": function(d) {return d.join(""); }},
{"name": "numeric_type$subexpression$1", "symbols": ["numeric_type$subexpression$1$subexpression$4"]},
{"name": "numeric_type$ebnf$1$subexpression$1$subexpression$1", "symbols": ["unsigned_int"]},
{"name": "numeric_type$ebnf$1$subexpression$1$subexpression$1", "symbols": ["unsigned_int", "_", {"literal":","}, "_", "unsigned_int"]},
{"name": "numeric_type$ebnf$1$subexpression$1", "symbols": ["_", {"literal":"("}, "_", "numeric_type$ebnf$1$subexpression$1$subexpression$1", "_", {"literal":")"}, "_"]},
{"name": "numeric_type$ebnf$1", "symbols": ["numeric_type$ebnf$1$subexpression$1"], "postprocess": id},
{"name": "numeric_type$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "numeric_type", "symbols": ["numeric_type$subexpression$1", "numeric_type$ebnf$1"], "postprocess":
d => {
let type = d[0][0].toUpperCase();
if (type === 'NUMERIC') {
type = 'DECIMAL';
}
const default_m_data = {
DECIMAL: 10,
FLOAT: 23,
DOUBLE: 53,
};
let _m = default_m_data[type];
let _d = 0;
if (d[1] && d[1][3]) {
if (d[1][3].length === 1) {
_m = d[1][3][0];
} else if (d[1][3].length === 5) {
_m = d[1][3][0];
_d = d[1][3][4];
}
}
return {
type,
params: [ _m, _d ],
};
}
},
{"name": "numeric_type$subexpression$2", "symbols": [/[bB]/, /[iI]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "numeric_type", "symbols": ["numeric_type$subexpression$2", "_", {"literal":"("}, "_", "unsigned_int", "_", {"literal":")"}], "postprocess":
d => {
return {
type: 'BIT',
params: [ d[4] ],
};
}
},
{"name": "integer_type$subexpression$1$subexpression$1", "symbols": [/[tT]/, /[iI]/, /[nN]/, /[yY]/, /[iI]/, /[nN]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "integer_type$subexpression$1", "symbols": ["integer_type$subexpression$1$subexpression$1"]},
{"name": "integer_type$subexpression$1$subexpression$2", "symbols": [/[sS]/, /[mM]/, /[aA]/, /[lL]/, /[lL]/, /[iI]/, /[nN]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "integer_type$subexpression$1", "symbols": ["integer_type$subexpression$1$subexpression$2"]},
{"name": "integer_type$subexpression$1$subexpression$3", "symbols": [/[mM]/, /[eE]/, /[dD]/, /[iI]/, /[uU]/, /[mM]/, /[iI]/, /[nN]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "integer_type$subexpression$1", "symbols": ["integer_type$subexpression$1$subexpression$3"]},
{"name": "integer_type$subexpression$1$subexpression$4", "symbols": [/[iI]/, /[nN]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "integer_type$subexpression$1", "symbols": ["integer_type$subexpression$1$subexpression$4"]},
{"name": "integer_type$subexpression$1$subexpression$5", "symbols": [/[bB]/, /[iI]/, /[gG]/, /[iI]/, /[nN]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "integer_type$subexpression$1", "symbols": ["integer_type$subexpression$1$subexpression$5"]},
{"name": "integer_type$ebnf$1$subexpression$1", "symbols": ["_", {"literal":"("}, "_", "unsigned_int", "_", {"literal":")"}, "_"]},
{"name": "integer_type$ebnf$1", "symbols": ["integer_type$ebnf$1$subexpression$1"], "postprocess": id},
{"name": "integer_type$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "integer_type$ebnf$2$subexpression$1$subexpression$1", "symbols": [/[uU]/, /[nN]/, /[sS]/, /[iI]/, /[gG]/, /[nN]/, /[eE]/, /[dD]/], "postprocess": function(d) {return d.join(""); }},
{"name": "integer_type$ebnf$2$subexpression$1", "symbols": ["__", "integer_type$ebnf$2$subexpression$1$subexpression$1"]},
{"name": "integer_type$ebnf$2", "symbols": ["integer_type$ebnf$2$subexpression$1"], "postprocess": id},
{"name": "integer_type$ebnf$2", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "integer_type$ebnf$3$subexpression$1$subexpression$1", "symbols": [/[zZ]/, /[eE]/, /[rR]/, /[oO]/, /[fF]/, /[iI]/, /[lL]/, /[lL]/], "postprocess": function(d) {return d.join(""); }},
{"name": "integer_type$ebnf$3$subexpression$1", "symbols": ["__", "integer_type$ebnf$3$subexpression$1$subexpression$1"]},
{"name": "integer_type$ebnf$3", "symbols": ["integer_type$ebnf$3$subexpression$1"], "postprocess": id},
{"name": "integer_type$ebnf$3", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "integer_type", "symbols": ["integer_type$subexpression$1", "integer_type$ebnf$1", "integer_type$ebnf$2", "integer_type$ebnf$3"], "postprocess":
d => {
const type = d[0][0].toUpperCase();
const default_length_data = {
TINYINT: 4,
SMALLINT: 6,
MEDIUMINT: 8,
INT: 11,
BIGINT: 20,
};
const length = d[1] ? d[1][3] : default_length_data[type];
const result = {
type,
params: [ length ],
};
if (d[2] && d[2][1]) {
result.unsigned = true;
}
if (d[3] && d[3][1]) {
result.zerofill = true;
}
return result;
}
},
{"name": "datetime_type$subexpression$1", "symbols": [/[dD]/, /[aA]/, /[tT]/, /[eE]/], "postprocess": function(d) {return d.join(""); }},
{"name": "datetime_type", "symbols": ["datetime_type$subexpression$1"], "postprocess":
d => {
return {
type: 'DATE',
};
}
},
{"name": "datetime_type$subexpression$2$subexpression$1", "symbols": [/[dD]/, /[aA]/, /[tT]/, /[eE]/, /[tT]/, /[iI]/, /[mM]/, /[eE]/], "postprocess": function(d) {return d.join(""); }},
{"name": "datetime_type$subexpression$2", "symbols": ["datetime_type$subexpression$2$subexpression$1"]},
{"name": "datetime_type$subexpression$2$subexpression$2", "symbols": [/[tT]/, /[iI]/, /[mM]/, /[eE]/, /[sS]/, /[tT]/, /[aA]/, /[mM]/, /[pP]/], "postprocess": function(d) {return d.join(""); }},
{"name": "datetime_type$subexpression$2", "symbols": ["datetime_type$subexpression$2$subexpression$2"]},
{"name": "datetime_type$subexpression$2$subexpression$3", "symbols": [/[tT]/, /[iI]/, /[mM]/, /[eE]/], "postprocess": function(d) {return d.join(""); }},
{"name": "datetime_type$subexpression$2", "symbols": ["datetime_type$subexpression$2$subexpression$3"]},
{"name": "datetime_type$subexpression$2$subexpression$4", "symbols": [/[yY]/, /[eE]/, /[aA]/, /[rR]/], "postprocess": function(d) {return d.join(""); }},
{"name": "datetime_type$subexpression$2", "symbols": ["datetime_type$subexpression$2$subexpression$4"]},
{"name": "datetime_type$ebnf$1$subexpression$1", "symbols": ["_", {"literal":"("}, "_", "unsigned_int", "_", {"literal":")"}, "_"]},
{"name": "datetime_type$ebnf$1", "symbols": ["datetime_type$ebnf$1$subexpression$1"], "postprocess": id},
{"name": "datetime_type$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "datetime_type", "symbols": ["datetime_type$subexpression$2", "datetime_type$ebnf$1"], "postprocess":
d => {
let params = [];
if (d[1] && d[1][3]) {
params.push(d[1][3]);
}
const result = {
type: d[0][0].toUpperCase(),
};
if (params) {
result.params = params;
}
return result;
}
},
{"name": "string_type$subexpression$1$subexpression$1", "symbols": [/[cC]/, /[hH]/, /[aA]/, /[rR]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$1", "symbols": ["string_type$subexpression$1$subexpression$1"]},
{"name": "string_type$subexpression$1$subexpression$2", "symbols": [/[vV]/, /[aA]/, /[rR]/, /[cC]/, /[hH]/, /[aA]/, /[rR]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$1", "symbols": ["string_type$subexpression$1$subexpression$2"]},
{"name": "string_type$subexpression$1$subexpression$3", "symbols": [/[bB]/, /[iI]/, /[nN]/, /[aA]/, /[rR]/, /[yY]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$1", "symbols": ["string_type$subexpression$1$subexpression$3"]},
{"name": "string_type$subexpression$1$subexpression$4", "symbols": [/[vV]/, /[aA]/, /[rR]/, /[bB]/, /[iI]/, /[nN]/, /[aA]/, /[rR]/, /[yY]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$1", "symbols": ["string_type$subexpression$1$subexpression$4"]},
{"name": "string_type", "symbols": ["string_type$subexpression$1", "_", {"literal":"("}, "_", "unsigned_int", "_", {"literal":")"}], "postprocess":
d => {
return {
type: d[0][0].toUpperCase(),
params: [ d[4] ],
};
}
},
{"name": "string_type$subexpression$2$subexpression$1", "symbols": [/[tT]/, /[iI]/, /[nN]/, /[yY]/, /[bB]/, /[lL]/, /[oO]/, /[bB]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$2", "symbols": ["string_type$subexpression$2$subexpression$1"]},
{"name": "string_type$subexpression$2$subexpression$2", "symbols": [/[bB]/, /[lL]/, /[oO]/, /[bB]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$2", "symbols": ["string_type$subexpression$2$subexpression$2"]},
{"name": "string_type$subexpression$2$subexpression$3", "symbols": [/[mM]/, /[eE]/, /[dD]/, /[iI]/, /[uU]/, /[mM]/, /[bB]/, /[lL]/, /[oO]/, /[bB]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$2", "symbols": ["string_type$subexpression$2$subexpression$3"]},
{"name": "string_type$subexpression$2$subexpression$4", "symbols": [/[lL]/, /[oO]/, /[nN]/, /[gG]/, /[bB]/, /[lL]/, /[oO]/, /[bB]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$2", "symbols": ["string_type$subexpression$2$subexpression$4"]},
{"name": "string_type$subexpression$2$subexpression$5", "symbols": [/[tT]/, /[iI]/, /[nN]/, /[yY]/, /[tT]/, /[eE]/, /[xX]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$2", "symbols": ["string_type$subexpression$2$subexpression$5"]},
{"name": "string_type$subexpression$2$subexpression$6", "symbols": [/[tT]/, /[eE]/, /[xX]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$2", "symbols": ["string_type$subexpression$2$subexpression$6"]},
{"name": "string_type$subexpression$2$subexpression$7", "symbols": [/[mM]/, /[eE]/, /[dD]/, /[iI]/, /[uU]/, /[mM]/, /[tT]/, /[eE]/, /[xX]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$2", "symbols": ["string_type$subexpression$2$subexpression$7"]},
{"name": "string_type$subexpression$2$subexpression$8", "symbols": [/[lL]/, /[oO]/, /[nN]/, /[gG]/, /[tT]/, /[eE]/, /[xX]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$2", "symbols": ["string_type$subexpression$2$subexpression$8"]},
{"name": "string_type$subexpression$2$subexpression$9", "symbols": [/[jJ]/, /[sS]/, /[oO]/, /[nN]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$2", "symbols": ["string_type$subexpression$2$subexpression$9"]},
{"name": "string_type", "symbols": ["string_type$subexpression$2"], "postprocess":
d => {
return {
type: d[0][0].toUpperCase(),
};
}
},
{"name": "string_type$subexpression$3$subexpression$1", "symbols": [/[eE]/, /[nN]/, /[uU]/, /[mM]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$3", "symbols": ["string_type$subexpression$3$subexpression$1"]},
{"name": "string_type$subexpression$3$subexpression$2", "symbols": [/[sS]/, /[eE]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "string_type$subexpression$3", "symbols": ["string_type$subexpression$3$subexpression$2"]},
{"name": "string_type$ebnf$1$subexpression$1$ebnf$1$subexpression$1", "symbols": [{"literal":","}, "_"]},
{"name": "string_type$ebnf$1$subexpression$1$ebnf$1", "symbols": ["string_type$ebnf$1$subexpression$1$ebnf$1$subexpression$1"], "postprocess": id},
{"name": "string_type$ebnf$1$subexpression$1$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "string_type$ebnf$1$subexpression$1", "symbols": ["string", "_", "string_type$ebnf$1$subexpression$1$ebnf$1"]},
{"name": "string_type$ebnf$1", "symbols": ["string_type$ebnf$1$subexpression$1"]},
{"name": "string_type$ebnf$1$subexpression$2$ebnf$1$subexpression$1", "symbols": [{"literal":","}, "_"]},
{"name": "string_type$ebnf$1$subexpression$2$ebnf$1", "symbols": ["string_type$ebnf$1$subexpression$2$ebnf$1$subexpression$1"], "postprocess": id},
{"name": "string_type$ebnf$1$subexpression$2$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "string_type$ebnf$1$subexpression$2", "symbols": ["string", "_", "string_type$ebnf$1$subexpression$2$ebnf$1"]},
{"name": "string_type$ebnf$1", "symbols": ["string_type$ebnf$1", "string_type$ebnf$1$subexpression$2"], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "string_type", "symbols": ["string_type$subexpression$3", "_", {"literal":"("}, "_", "string_type$ebnf$1", "_", {"literal":")"}], "postprocess":
d => {
return {
type: d[0][0].toUpperCase(),
params: d[4].map(i => i[0]),
};
}
},
{"name": "spatial_data_type$subexpression$1$subexpression$1", "symbols": [/[gG]/, /[eE]/, /[oO]/, /[mM]/, /[eE]/, /[tT]/, /[rR]/, /[yY]/], "postprocess": function(d) {return d.join(""); }},
{"name": "spatial_data_type$subexpression$1", "symbols": ["spatial_data_type$subexpression$1$subexpression$1"]},
{"name": "spatial_data_type$subexpression$1$subexpression$2", "symbols": [/[pP]/, /[oO]/, /[iI]/, /[nN]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "spatial_data_type$subexpression$1", "symbols": ["spatial_data_type$subexpression$1$subexpression$2"]},
{"name": "spatial_data_type$subexpression$1$subexpression$3", "symbols": [/[lL]/, /[iI]/, /[nN]/, /[eE]/, /[sS]/, /[tT]/, /[rR]/, /[iI]/, /[nN]/, /[gG]/], "postprocess": function(d) {return d.join(""); }},
{"name": "spatial_data_type$subexpression$1", "symbols": ["spatial_data_type$subexpression$1$subexpression$3"]},
{"name": "spatial_data_type$subexpression$1$subexpression$4", "symbols": [/[pP]/, /[oO]/, /[lL]/, /[yY]/, /[gG]/, /[oO]/, /[nN]/], "postprocess": function(d) {return d.join(""); }},
{"name": "spatial_data_type$subexpression$1", "symbols": ["spatial_data_type$subexpression$1$subexpression$4"]},
{"name": "spatial_data_type$subexpression$1$subexpression$5", "symbols": [/[mM]/, /[uU]/, /[lL]/, /[tT]/, /[iI]/, /[pP]/, /[oO]/, /[iI]/, /[nN]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "spatial_data_type$subexpression$1", "symbols": ["spatial_data_type$subexpression$1$subexpression$5"]},
{"name": "spatial_data_type$subexpression$1$subexpression$6", "symbols": [/[mM]/, /[uU]/, /[lL]/, /[tT]/, /[iI]/, /[lL]/, /[iI]/, /[nN]/, /[eE]/, /[sS]/, /[tT]/, /[rR]/, /[iI]/, /[nN]/, /[gG]/], "postprocess": function(d) {return d.join(""); }},
{"name": "spatial_data_type$subexpression$1", "symbols": ["spatial_data_type$subexpression$1$subexpression$6"]},
{"name": "spatial_data_type$subexpression$1$subexpression$7", "symbols": [/[mM]/, /[uU]/, /[lL]/, /[tT]/, /[iI]/, /[pP]/, /[oO]/, /[lL]/, /[yY]/, /[gG]/, /[oO]/, /[nN]/], "postprocess": function(d) {return d.join(""); }},
{"name": "spatial_data_type$subexpression$1", "symbols": ["spatial_data_type$subexpression$1$subexpression$7"]},
{"name": "spatial_data_type$subexpression$1$subexpression$8", "symbols": [/[gG]/, /[eE]/, /[oO]/, /[mM]/, /[eE]/, /[tT]/, /[rR]/, /[yY]/, /[cC]/, /[oO]/, /[lL]/, /[lL]/, /[eE]/, /[cC]/, /[tT]/, /[iI]/, /[oO]/, /[nN]/], "postprocess": function(d) {return d.join(""); }},
{"name": "spatial_data_type$subexpression$1", "symbols": ["spatial_data_type$subexpression$1$subexpression$8"]},
{"name": "spatial_data_type", "symbols": ["spatial_data_type$subexpression$1"], "postprocess":
d => {
return {
type: d[0][0].toUpperCase(),
};
}
},
{"name": "column_def$ebnf$1$subexpression$1", "symbols": ["__", "column_def_options"]},
{"name": "column_def$ebnf$1", "symbols": ["column_def$ebnf$1$subexpression$1"], "postprocess": id},
{"name": "column_def$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "column_def", "symbols": ["_", "field_name", "__", "data_type", "column_def$ebnf$1", "_"], "postprocess":
d => {
let allow_null = true;
let auto_increment = false;
let comment = '';
let default_value = null;
let on_update_current_timestamp = false;
let charset = '';
let collate = '';
if (d[4] && d[4][1]) {
for (let _item of d[4][1]) {
const optionInfo = _item;
if (optionInfo && optionInfo.key) {
switch (optionInfo.key) {
case 'NOT NULL': allow_null = optionInfo.value; break;
case 'AUTO_INCREMENT': auto_increment = optionInfo.value; break;
case 'COMMENT': comment = optionInfo.value; break;
case 'DEFAULT': default_value = optionInfo.value; break;
case 'ON UPDATE CURRENT_TIMESTAMP': on_update_current_timestamp = optionInfo.value; break;
case 'CHARSET': charset = optionInfo.value; break;
case 'COLLATE': collate = optionInfo.value; break;
}
}
}
}
const result = {
type: 'column',
name: d[1],
data_type: d[3],
allow_null,
comment,
};
if (auto_increment) {
result.auto_increment = auto_increment;
}
if (default_value !== null) {
result.default_value = default_value;
}
if (on_update_current_timestamp) {
result.on_update_current_timestamp = on_update_current_timestamp;
}
if (charset) {
result.charset = charset;
}
if (collate) {
result.collate = collate;
}
return result;
}
},
{"name": "column_def_options", "symbols": ["column_def_option"], "postprocess": d => [d[0]]},
{"name": "column_def_options", "symbols": ["column_def_options", "__", "column_def_option"], "postprocess": d => d[0].concat(d[2])},
{"name": "column_def_option", "symbols": ["field_not_null"], "postprocess": d => d[1]},
{"name": "column_def_option", "symbols": ["field_auto_increment"], "postprocess": d => d[0]},
{"name": "column_def_option", "symbols": ["field_comment"], "postprocess": d => d[0]},
{"name": "column_def_option", "symbols": ["field_default_value"], "postprocess": d => d[0]},
{"name": "column_def_option", "symbols": ["field_update_value"], "postprocess": d => d[0]},
{"name": "column_def_option", "symbols": ["field_charset"], "postprocess": d => d[0]},
{"name": "field_not_null$subexpression$1$subexpression$1", "symbols": [/[nN]/, /[oO]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_not_null$subexpression$1$subexpression$2", "symbols": [/[nN]/, /[uU]/, /[lL]/, /[lL]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_not_null$subexpression$1", "symbols": ["field_not_null$subexpression$1$subexpression$1", "__", "field_not_null$subexpression$1$subexpression$2"]},
{"name": "field_not_null$subexpression$1$subexpression$3", "symbols": [/[nN]/, /[uU]/, /[lL]/, /[lL]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_not_null$subexpression$1", "symbols": ["field_not_null$subexpression$1$subexpression$3"]},
{"name": "field_not_null", "symbols": ["field_not_null$subexpression$1"], "postprocess":
d => {
let allow_null = true;
if (d[0][0] && d[0][2] && (d[0][0] + ' ' + d[0][2]).toUpperCase() === 'NOT NULL') {
allow_null = false;
}
return {
key: 'NOT NULL',
value: allow_null,
};
}
},
{"name": "field_auto_increment$subexpression$1", "symbols": [/[aA]/, /[uU]/, /[tT]/, /[oO]/, {"literal":"_"}, /[iI]/, /[nN]/, /[cC]/, /[rR]/, /[eE]/, /[mM]/, /[eE]/, /[nN]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_auto_increment", "symbols": ["field_auto_increment$subexpression$1"], "postprocess":
d => {
return {
key: 'AUTO_INCREMENT',
value: true,
};
}
},
{"name": "field_default_value$subexpression$1", "symbols": [/[dD]/, /[eE]/, /[fF]/, /[aA]/, /[uU]/, /[lL]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_default_value$subexpression$2", "symbols": ["decimal"]},
{"name": "field_default_value$subexpression$2", "symbols": ["string"]},
{"name": "field_default_value$subexpression$2$subexpression$1", "symbols": [/[cC]/, /[uU]/, /[rR]/, /[rR]/, /[eE]/, /[nN]/, /[tT]/, {"literal":"_"}, /[tT]/, /[iI]/, /[mM]/, /[eE]/, /[sS]/, /[tT]/, /[aA]/, /[mM]/, /[pP]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_default_value$subexpression$2", "symbols": ["field_default_value$subexpression$2$subexpression$1"]},
{"name": "field_default_value$subexpression$2$subexpression$2", "symbols": [/[nN]/, /[uU]/, /[lL]/, /[lL]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_default_value$subexpression$2", "symbols": ["field_default_value$subexpression$2$subexpression$2"]},
{"name": "field_default_value", "symbols": ["field_default_value$subexpression$1", "__", "field_default_value$subexpression$2"], "postprocess":
d => {
return {
key: 'DEFAULT',
value: d[2][0],
};
}
},
{"name": "field_update_value$subexpression$1", "symbols": [/[oO]/, /[nN]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_update_value$subexpression$2", "symbols": [/[uU]/, /[pP]/, /[dD]/, /[aA]/, /[tT]/, /[eE]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_update_value$subexpression$3", "symbols": [/[cC]/, /[uU]/, /[rR]/, /[rR]/, /[eE]/, /[nN]/, /[tT]/, {"literal":"_"}, /[tT]/, /[iI]/, /[mM]/, /[eE]/, /[sS]/, /[tT]/, /[aA]/, /[mM]/, /[pP]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_update_value", "symbols": ["field_update_value$subexpression$1", "__", "field_update_value$subexpression$2", "__", "field_update_value$subexpression$3"], "postprocess":
d => {
return {
key: 'ON UPDATE CURRENT_TIMESTAMP',
value: true,
};
}
},
{"name": "field_charset$subexpression$1$subexpression$1", "symbols": [/[cC]/, /[hH]/, /[aA]/, /[rR]/, /[aA]/, /[cC]/, /[tT]/, /[eE]/, /[rR]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_charset$subexpression$1$subexpression$2", "symbols": [/[sS]/, /[eE]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_charset$subexpression$1", "symbols": ["field_charset$subexpression$1$subexpression$1", "__", "field_charset$subexpression$1$subexpression$2"]},
{"name": "field_charset$subexpression$1$subexpression$3", "symbols": [/[cC]/, /[hH]/, /[aA]/, /[rR]/, /[sS]/, /[eE]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_charset$subexpression$1", "symbols": ["field_charset$subexpression$1$subexpression$3"]},
{"name": "field_charset", "symbols": ["field_charset$subexpression$1", "__", "word"], "postprocess":
d => {
return {
key: 'CHARSET',
value: d[2],
};
}
},
{"name": "field_charset$subexpression$2", "symbols": [/[cC]/, /[oO]/, /[lL]/, /[lL]/, /[aA]/, /[tT]/, /[eE]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_charset", "symbols": ["field_charset$subexpression$2", "__", "word"], "postprocess":
d => {
return {
key: 'COLLATE',
value: d[2],
};
}
},
{"name": "field_comment$subexpression$1", "symbols": [/[cC]/, /[oO]/, /[mM]/, /[mM]/, /[eE]/, /[nN]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "field_comment", "symbols": ["field_comment$subexpression$1", "__", "string"], "postprocess":
d => {
return {
key: 'COMMENT',
value: d[2],
};
}
},
{"name": "create_definition_list", "symbols": ["create_definition"], "postprocess": d => [d[0]]},
{"name": "create_definition_list", "symbols": ["create_definition_list", {"literal":","}, "create_definition"], "postprocess":
d => {
return d[0].concat(d[2]);
}
},
{"name": "create_definition", "symbols": ["column_def"], "postprocess": d => d[0]},
{"name": "create_definition", "symbols": ["primary_key"], "postprocess": d => d[0]},
{"name": "create_definition", "symbols": ["index_key"], "postprocess": d => d[0]},
{"name": "create_definition", "symbols": ["unique_key"], "postprocess": d => d[0]},
{"name": "table_options", "symbols": ["_", "table_option", "_"], "postprocess": d => [d[1]]},
{"name": "table_options", "symbols": ["table_options", "__", "table_option"], "postprocess": d => d[0].concat(d[2])},
{"name": "table_option", "symbols": ["table_option_engine"], "postprocess": d => ({ key: 'ENGINE', value: d[0] })},
{"name": "table_option", "symbols": ["table_option_auto_increment"], "postprocess": d => ({ key: 'AUTO_INCREMENT', value: d[0] })},
{"name": "table_option", "symbols": ["table_option_charset"], "postprocess": d => ({ key: 'CHARSET', value: d[0] })},
{"name": "table_option", "symbols": ["table_option_collate"], "postprocess": d => ({ key: 'COLLATE', value: d[0] })},
{"name": "table_option", "symbols": ["table_option_comment"], "postprocess": d => ({ key: 'COMMENT', value: d[0] })},
{"name": "table_option_engine$subexpression$1", "symbols": [/[eE]/, /[nN]/, /[gG]/, /[iI]/, /[nN]/, /[eE]/], "postprocess": function(d) {return d.join(""); }},
{"name": "table_option_engine", "symbols": ["table_option_engine$subexpression$1", "_", {"literal":"="}, "_", "word"], "postprocess": d => d[4]},
{"name": "table_option_auto_increment$subexpression$1", "symbols": [/[aA]/, /[uU]/, /[tT]/, /[oO]/, {"literal":"_"}, /[iI]/, /[nN]/, /[cC]/, /[rR]/, /[eE]/, /[mM]/, /[eE]/, /[nN]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "table_option_auto_increment", "symbols": ["table_option_auto_increment$subexpression$1", "_", {"literal":"="}, "_", "int"], "postprocess": d => d[4]},
{"name": "table_option_charset$ebnf$1$subexpression$1$subexpression$1", "symbols": [/[dD]/, /[eE]/, /[fF]/, /[aA]/, /[uU]/, /[lL]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "table_option_charset$ebnf$1$subexpression$1", "symbols": ["table_option_charset$ebnf$1$subexpression$1$subexpression$1", "__"]},
{"name": "table_option_charset$ebnf$1", "symbols": ["table_option_charset$ebnf$1$subexpression$1"], "postprocess": id},
{"name": "table_option_charset$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "table_option_charset$subexpression$1$subexpression$1", "symbols": [/[cC]/, /[hH]/, /[aA]/, /[rR]/, /[sS]/, /[eE]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "table_option_charset$subexpression$1", "symbols": ["table_option_charset$subexpression$1$subexpression$1"]},
{"name": "table_option_charset$subexpression$1$subexpression$2", "symbols": [/[cC]/, /[hH]/, /[aA]/, /[rR]/, /[aA]/, /[cC]/, /[tT]/, /[eE]/, /[rR]/, {"literal":" "}, /[sS]/, /[eE]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "table_option_charset$subexpression$1", "symbols": ["table_option_charset$subexpression$1$subexpression$2"]},
{"name": "table_option_charset", "symbols": ["table_option_charset$ebnf$1", "table_option_charset$subexpression$1", "_", {"literal":"="}, "_", "word"], "postprocess": d => d[5]},
{"name": "table_option_collate$ebnf$1$subexpression$1$subexpression$1", "symbols": [/[dD]/, /[eE]/, /[fF]/, /[aA]/, /[uU]/, /[lL]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "table_option_collate$ebnf$1$subexpression$1", "symbols": ["table_option_collate$ebnf$1$subexpression$1$subexpression$1", "__"]},
{"name": "table_option_collate$ebnf$1", "symbols": ["table_option_collate$ebnf$1$subexpression$1"], "postprocess": id},
{"name": "table_option_collate$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "table_option_collate$subexpression$1", "symbols": [/[cC]/, /[oO]/, /[lL]/, /[lL]/, /[aA]/, /[tT]/, /[eE]/], "postprocess": function(d) {return d.join(""); }},
{"name": "table_option_collate", "symbols": ["table_option_collate$ebnf$1", "table_option_collate$subexpression$1", "_", {"literal":"="}, "_", "word"], "postprocess": d => d[5]},
{"name": "table_option_comment$subexpression$1", "symbols": [/[cC]/, /[oO]/, /[mM]/, /[mM]/, /[eE]/, /[nN]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "table_option_comment", "symbols": ["table_option_comment$subexpression$1", "_", {"literal":"="}, "_", "string"], "postprocess": d => d[4]},
{"name": "index_type$subexpression$1", "symbols": [/[uU]/, /[sS]/, /[iI]/, /[nN]/, /[gG]/], "postprocess": function(d) {return d.join(""); }},
{"name": "index_type$subexpression$2$subexpression$1", "symbols": [/[bB]/, /[tT]/, /[rR]/, /[eE]/, /[eE]/], "postprocess": function(d) {return d.join(""); }},
{"name": "index_type$subexpression$2", "symbols": ["index_type$subexpression$2$subexpression$1"]},
{"name": "index_type$subexpression$2$subexpression$2", "symbols": [/[hH]/, /[aA]/, /[sS]/, /[hH]/], "postprocess": function(d) {return d.join(""); }},
{"name": "index_type$subexpression$2", "symbols": ["index_type$subexpression$2$subexpression$2"]},
{"name": "index_type", "symbols": ["_", "index_type$subexpression$1", "_", "index_type$subexpression$2", "_"], "postprocess": d => d[3]},
{"name": "primary_key$subexpression$1", "symbols": [/[pP]/, /[rR]/, /[iI]/, /[mM]/, /[aA]/, /[rR]/, /[yY]/, {"literal":" "}, /[kK]/, /[eE]/, /[yY]/], "postprocess": function(d) {return d.join(""); }},
{"name": "primary_key$ebnf$1", "symbols": ["index_type"], "postprocess": id},
{"name": "primary_key$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "primary_key$ebnf$2", "symbols": [{"literal":","}], "postprocess": id},
{"name": "primary_key$ebnf$2", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "primary_key", "symbols": ["_", "primary_key$subexpression$1", "_", {"literal":"("}, "key_field_list", {"literal":")"}, "primary_key$ebnf$1", "_", "primary_key$ebnf$2"], "postprocess":
d => {
return {
type: 'primary_key',
fields: d[4],
};
}
},
{"name": "index_key$subexpression$1", "symbols": [/[kK]/, /[eE]/, /[yY]/], "postprocess": function(d) {return d.join(""); }},
{"name": "index_key$ebnf$1", "symbols": ["index_type"], "postprocess": id},
{"name": "index_key$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "index_key$ebnf$2", "symbols": [{"literal":","}], "postprocess": id},
{"name": "index_key$ebnf$2", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "index_key", "symbols": ["_", "index_key$subexpression$1", "__", "field_name", "_", {"literal":"("}, "key_field_list", {"literal":")"}, "index_key$ebnf$1", "_", "index_key$ebnf$2"], "postprocess":
d => {
return {
type: 'index_key',
name: d[3],
fields: d[6],
};
}
},
{"name": "unique_key$subexpression$1", "symbols": [/[uU]/, /[nN]/, /[iI]/, /[qQ]/, /[uU]/, /[eE]/, {"literal":" "}, /[kK]/, /[eE]/, /[yY]/], "postprocess": function(d) {return d.join(""); }},
{"name": "unique_key$ebnf$1", "symbols": ["index_type"], "postprocess": id},
{"name": "unique_key$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "unique_key$ebnf$2", "symbols": [{"literal":","}], "postprocess": id},
{"name": "unique_key$ebnf$2", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "unique_key", "symbols": ["_", "unique_key$subexpression$1", "__", "field_name", "_", {"literal":"("}, "key_field_list", {"literal":")"}, "unique_key$ebnf$1", "_", "unique_key$ebnf$2"], "postprocess":
d => {
return {
type: 'unique_key',
name: d[3],
fields: d[6],
};
}
},
{"name": "key_field_list$ebnf$1$subexpression$1", "symbols": [{"literal":"("}, "_", "unsigned_int", "_", {"literal":")"}]},
{"name": "key_field_list$ebnf$1", "symbols": ["key_field_list$ebnf$1$subexpression$1"], "postprocess": id},
{"name": "key_field_list$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "key_field_list", "symbols": ["_", "field_name", "key_field_list$ebnf$1", "_"], "postprocess": d => [d[1]]},
{"name": "key_field_list", "symbols": ["key_field_list", "_", {"literal":","}, "_", "field_name"], "postprocess":
d => {
return d[0].concat(d[4]);
}
},
{"name": "comment", "symbols": ["inline_comment"], "postprocess": d => d[0]},
{"name": "comment", "symbols": ["multiline_comment"], "postprocess": d => d[0]},
{"name": "comment", "symbols": ["newline"], "postprocess": d => null},
{"name": "inline_comment$subexpression$1", "symbols": [{"literal":"#"}]},
{"name": "inline_comment$subexpression$1$string$1", "symbols": [{"literal":"-"}, {"literal":"-"}], "postprocess": function joiner(d) {return d.join('');}},
{"name": "inline_comment$subexpression$1", "symbols": ["inline_comment$subexpression$1$string$1"]},
{"name": "inline_comment$ebnf$1", "symbols": []},
{"name": "inline_comment$ebnf$1", "symbols": ["inline_comment$ebnf$1", /[^\n]/], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "inline_comment", "symbols": ["space", "inline_comment$subexpression$1", "inline_comment$ebnf$1", /[\n]/], "postprocess": d => {
return d[2].join('');
} },
{"name": "multiline_comment$string$1", "symbols": [{"literal":"/"}, {"literal":"*"}], "postprocess": function joiner(d) {return d.join('');}},
{"name": "multiline_comment$ebnf$1", "symbols": []},
{"name": "multiline_comment$ebnf$1$subexpression$1", "symbols": [/[^\*]/]},
{"name": "multiline_comment$ebnf$1$subexpression$1", "symbols": [/[\*]/, /[^\/\*]/]},
{"name": "multiline_comment$ebnf$1", "symbols": ["multiline_comment$ebnf$1", "multiline_comment$ebnf$1$subexpression$1"], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "multiline_comment$string$2", "symbols": [{"literal":"*"}, {"literal":"/"}], "postprocess": function joiner(d) {return d.join('');}},
{"name": "multiline_comment", "symbols": ["space", "multiline_comment$string$1", "multiline_comment$ebnf$1", "multiline_comment$string$2", "space"], "postprocess": d => {
return [].concat(...d[2]).join('');
} },
{"name": "main", "symbols": ["blocks"], "postprocess": d => d[0]},
{"name": "blocks$ebnf$1", "symbols": []},
{"name": "blocks$ebnf$1", "symbols": ["blocks$ebnf$1", {"literal":";"}], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "blocks", "symbols": ["block", "blocks$ebnf$1"], "postprocess": d => d[0]},
{"name": "blocks$ebnf$2", "symbols": [{"literal":";"}]},
{"name": "blocks$ebnf$2", "symbols": ["blocks$ebnf$2", {"literal":";"}], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "blocks$ebnf$3", "symbols": []},
{"name": "blocks$ebnf$3", "symbols": ["blocks$ebnf$3", {"literal":";"}], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "blocks", "symbols": ["blocks", "blocks$ebnf$2", "block", "blocks$ebnf$3"], "postprocess": d => {
const result = d[0] || [];
return result.concat(d[2] || []);
} },
{"name": "block", "symbols": ["space"], "postprocess": d => null},
{"name": "block$ebnf$1", "symbols": ["comment"]},
{"name": "block$ebnf$1", "symbols": ["block$ebnf$1", "comment"], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "block", "symbols": ["block$ebnf$1"], "postprocess": d => null},
{"name": "block$ebnf$2", "symbols": ["statement"]},
{"name": "block$ebnf$2", "symbols": ["block$ebnf$2", "statement"], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "block", "symbols": ["block$ebnf$2"], "postprocess": d => d[0].filter(i => i)},
{"name": "statement$ebnf$1", "symbols": []},
{"name": "statement$ebnf$1", "symbols": ["statement$ebnf$1", "comment"], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "statement$ebnf$2", "symbols": []},
{"name": "statement$ebnf$2", "symbols": ["statement$ebnf$2", "comment"], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "statement", "symbols": ["statement$ebnf$1", "P_CREATE_TABLE", "statement$ebnf$2"], "postprocess": d => d[1]},
{"name": "statement$ebnf$3", "symbols": []},
{"name": "statement$ebnf$3", "symbols": ["statement$ebnf$3", "comment"], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "statement$ebnf$4", "symbols": []},
{"name": "statement$ebnf$4", "symbols": ["statement$ebnf$4", "comment"], "postprocess": function arrpush(d) {return d[0].concat([d[1]]);}},
{"name": "statement", "symbols": ["statement$ebnf$3", "P_SET", "statement$ebnf$4"], "postprocess": d => null},
{"name": "P_CREATE_TABLE$subexpression$1", "symbols": [/[cC]/, /[rR]/, /[eE]/, /[aA]/, /[tT]/, /[eE]/], "postprocess": function(d) {return d.join(""); }},
{"name": "P_CREATE_TABLE$ebnf$1$subexpression$1$subexpression$1", "symbols": [/[tT]/, /[eE]/, /[mM]/, /[pP]/, /[oO]/, /[rR]/, /[aA]/, /[rR]/, /[yY]/], "postprocess": function(d) {return d.join(""); }},
{"name": "P_CREATE_TABLE$ebnf$1$subexpression$1", "symbols": ["__", "P_CREATE_TABLE$ebnf$1$subexpression$1$subexpression$1"]},
{"name": "P_CREATE_TABLE$ebnf$1", "symbols": ["P_CREATE_TABLE$ebnf$1$subexpression$1"], "postprocess": id},
{"name": "P_CREATE_TABLE$ebnf$1", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "P_CREATE_TABLE$subexpression$2", "symbols": [/[tT]/, /[aA]/, /[bB]/, /[lL]/, /[eE]/], "postprocess": function(d) {return d.join(""); }},
{"name": "P_CREATE_TABLE$ebnf$2$subexpression$1$subexpression$1", "symbols": [/[iI]/, /[fF]/, {"literal":" "}, /[nN]/, /[oO]/, /[tT]/, {"literal":" "}, /[eE]/, /[xX]/, /[iI]/, /[sS]/, /[tT]/, /[sS]/], "postprocess": function(d) {return d.join(""); }},
{"name": "P_CREATE_TABLE$ebnf$2$subexpression$1", "symbols": ["__", "P_CREATE_TABLE$ebnf$2$subexpression$1$subexpression$1"]},
{"name": "P_CREATE_TABLE$ebnf$2", "symbols": ["P_CREATE_TABLE$ebnf$2$subexpression$1"], "postprocess": id},
{"name": "P_CREATE_TABLE$ebnf$2", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "P_CREATE_TABLE$ebnf$3", "symbols": ["table_options"], "postprocess": id},
{"name": "P_CREATE_TABLE$ebnf$3", "symbols": [], "postprocess": function(d) {return null;}},
{"name": "P_CREATE_TABLE", "symbols": ["_", "P_CREATE_TABLE$subexpression$1", "P_CREATE_TABLE$ebnf$1", "__", "P_CREATE_TABLE$subexpression$2", "P_CREATE_TABLE$ebnf$2", "__", "table_name", "_", {"literal":"("}, "create_definition_list", {"literal":")"}, "P_CREATE_TABLE$ebnf$3", "_"], "postprocess":
d => {
return {
type: 'create_table',
name: d[7],
columns: d[10],
options: d[12],
};
}
},
{"name": "P_SET$subexpression$1", "symbols": [/[sS]/, /[eE]/, /[tT]/], "postprocess": function(d) {return d.join(""); }},
{"name": "P_SET$subexpression$2$subexpression$1", "symbols": [/[nN]/, /[aA]/, /[mM]/, /[eE]/, /[sS]/], "postprocess": function(d) {return d.join(""); }},
{"name": "P_SET$subexpression$2", "symbols": ["P_SET$subexpression$2$subexpression$1"]},
{"name": "P_SET", "symbols": ["_", "P_SET$subexpression$1", "__", "P_SET$subexpression$2", "__", "set_value", "_"], "postprocess": d => null}
]
, ParserStart: "main"
}
if (typeof module !== 'undefined'&& typeof module.exports !== 'undefined') {
module.exports = grammar;
} else {
window.grammar = grammar;
}
})();