File: MySQLLexer.h

package info (click to toggle)
mysql-workbench 6.3.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 113,932 kB
  • ctags: 87,814
  • sloc: ansic: 955,521; cpp: 427,465; python: 59,728; yacc: 59,129; xml: 54,204; sql: 7,091; objc: 965; makefile: 638; sh: 613; java: 237; perl: 30; ruby: 6; php: 1
file content (5587 lines) | stat: -rw-r--r-- 138,160 bytes parent folder | download
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
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
/** \file
 *  This C header file was generated by $ANTLR version 3.4
 *
 *     -  From the grammar source file : MySQL.g
 *     -                            On : 2016-10-14 14:12:13
 *     -                 for the lexer : MySQLLexerLexer
 *
 * Editing it, at least manually, is not wise.
 *
 * C language generator and runtime by Jim Idle, jimi|hereisanat|idle|dotgoeshere|ws.
 *
 *
 * The lexer 
MySQLLexer

has the callable functions (rules) shown below,
 * which will invoke the code for the associated rule in the source grammar
 * assuming that the input stream is pointing to a token/text stream that could begin
 * this rule.
 *
 * For instance if you call the first (topmost) rule in a parser grammar, you will
 * get the results of a full parse, but calling a rule half way through the grammar will
 * allow you to pass part of a full token stream to the parser, such as for syntax checking
 * in editors and so on.
 *
 * The parser entry points are called indirectly (by function pointer to function) via
 * a parser context typedef pMySQLLexer, which is returned from a call to MySQLLexerNew().
 *
 * As this is a generated lexer, it is unlikely you will call it 'manually'. However
 * the methods are provided anyway.
 *
 * The methods in pMySQLLexer are  as follows:
 *
 *  - 
 void
      pMySQLLexer->EQUAL_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ASSIGN_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NULL_SAFE_EQUAL_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GREATER_OR_EQUAL_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GREATER_THAN_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LESS_OR_EQUAL_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LESS_THAN_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NOT_EQUAL_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NOT_EQUAL2_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PLUS_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MINUS_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MULT_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DIV_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MOD_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOGICAL_NOT_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BITWISE_NOT_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SHIFT_LEFT_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SHIFT_RIGHT_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOGICAL_AND_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BITWISE_AND_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BITWISE_XOR_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOGICAL_OR_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BITWISE_OR_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DOT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COMMA_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SEMICOLON_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COLON_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OPEN_PAR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CLOSE_PAR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OPEN_CURLY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CLOSE_CURLY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNDERLINE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->JSON_SEPARATOR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->JSON_UNQUOTED_SEPARATOR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AT_SIGN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AT_AT_SIGN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NULL2_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PARAM_MARKER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BACK_TICK(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SINGLE_QUOTE(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DOUBLE_QUOTE(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ESCAPE_OPERATOR(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DOT_IDENTIFIER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ACCESSIBLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ACCOUNT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ACTION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ADD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ADDDATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AFTER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AGAINST_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AGGREGATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ALGORITHM_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ALL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ALTER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ALWAYS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ANALYSE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ANALYZE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ANY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ASC_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ASCII_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ASENSITIVE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AUTHORS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AUTOEXTEND_SIZE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AUTO_INCREMENT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AVG_ROW_LENGTH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AVG_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BACKUP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BEFORE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BEGIN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BETWEEN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BIGINT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BINARY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BINLOG_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BIN_NUM_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BIT_AND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BIT_OR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BIT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BIT_XOR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BLOB_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BLOCK_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BOOLEAN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BOOL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BOTH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BTREE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BYTE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CACHE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CALL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CASCADE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CASCADED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CASE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CAST_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CATALOG_NAME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CHAIN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CHANGE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CHANGED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CHANNEL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CHARSET_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CHARACTER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CHAR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CHECKSUM_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CHECK_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CIPHER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CLASS_ORIGIN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CLIENT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CLOSE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COALESCE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CODE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COLLATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COLLATION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COLUMNS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COLUMN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COLUMN_NAME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COLUMN_FORMAT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COMMENT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COMMITTED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COMMIT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COMPACT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COMPLETION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COMPRESSED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COMPRESSION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONCURRENT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONDITION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONNECTION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONSISTENT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONSTRAINT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONSTRAINT_CATALOG_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONSTRAINT_NAME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONSTRAINT_SCHEMA_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONTAINS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONTEXT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONTINUE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONTRIBUTORS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONVERT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COUNT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CPU_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CREATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CROSS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CUBE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CURDATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CURRENT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CURRENT_DATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CURRENT_TIME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CURRENT_TIMESTAMP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CURRENT_USER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CURSOR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CURSOR_NAME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CURTIME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DATABASE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DATABASES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DATAFILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DATA_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DATETIME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DATE_ADD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DATE_ADD_INTERVAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DATE_SUB_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DATE_SUB_INTERVAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DAYOFMONTH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DAY_HOUR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DAY_MICROSECOND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DAY_MINUTE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DAY_SECOND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DAY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DEALLOCATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DEC_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DECIMAL_NUM_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DECIMAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DECLARE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DEFAULT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DEFAULT_AUTH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DEFINER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DELAYED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DELAY_KEY_WRITE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DELETE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DESC_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DESCRIBE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DES_KEY_FILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DETERMINISTIC_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DIAGNOSTICS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DIRECTORY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DISABLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DISCARD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DISK_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DISTINCT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DISTINCTROW_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DIV_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DOUBLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DO_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DROP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DUAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DUMPFILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DUPLICATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DYNAMIC_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EACH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ELSE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ELSEIF_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ENABLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ENCLOSED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->END_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ENDS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->END_OF_INPUT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ENGINES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ENGINE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ENUM_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ERROR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ERRORS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ESCAPED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ESCAPE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EVENTS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EVENT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EVERY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EXCHANGE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EXECUTE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EXISTS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EXIT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EXPANSION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EXPIRE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EXPLAIN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EXPORT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EXTENDED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EXTENT_SIZE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->EXTRACT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FALSE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FAST_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FAULTS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FETCH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FIELDS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FILE_BLOCK_SIZE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FILTER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FIRST_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FIXED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FLOAT4_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FLOAT8_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FLOAT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FLUSH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FOLLOWS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FORCE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FOREIGN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FOR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FORMAT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FOUND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FRAC_SECOND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FROM_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FULL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FULLTEXT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FUNCTION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GET_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GENERAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GENERATED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GROUP_REPLICATION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GEOMETRYCOLLECTION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GEOMETRY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GET_FORMAT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GLOBAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GRANT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GRANTS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GROUP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->GROUP_CONCAT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HANDLER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HASH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HAVING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HELP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HIGH_PRIORITY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HOST_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HOSTS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HOUR_MICROSECOND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HOUR_MINUTE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HOUR_SECOND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HOUR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IDENTIFIED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IF_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IGNORE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IGNORE_SERVER_IDS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IMPORT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INDEXES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INDEX_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INFILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INITIAL_SIZE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INNER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INNODB_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INOUT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INSENSITIVE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INSERT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INSERT_METHOD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INSTALL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INTEGER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INTERVAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INTO_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INVOKER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IO_AFTER_GTIDS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IO_BEFORE_GTIDS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IO_THREAD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IO_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IPC_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ISOLATION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ISSUER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ITERATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->JOIN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->JSON_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->KEYS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->KEY_BLOCK_SIZE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->KEY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->KILL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LANGUAGE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LAST_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LEADING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LEAVES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LEAVE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LEFT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LESS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LEVEL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LIKE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LIMIT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LINEAR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LINES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LINESTRING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LIST_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOAD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOCALTIME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOCALTIMESTAMP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOCAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOCATOR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOCKS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOCK_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOGFILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOGS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LONGBLOB_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LONGTEXT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LONG_NUM_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LONG_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOOP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LOW_PRIORITY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_AUTO_POSITION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_BIND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_CONNECT_RETRY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_DELAY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_HOST_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_LOG_FILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_LOG_POS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_PASSWORD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_PORT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_RETRY_COUNT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_SERVER_ID_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_SSL_CAPATH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_SSL_CA_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_SSL_CERT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_SSL_CIPHER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_SSL_CRL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_SSL_CRLPATH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_SSL_KEY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_SSL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_SSL_VERIFY_SERVER_CERT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_USER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MASTER_HEARTBEAT_PERIOD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MATCH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MAX_CONNECTIONS_PER_HOUR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MAX_QUERIES_PER_HOUR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MAX_ROWS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MAX_SIZE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MAX_STATEMENT_TIME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MAX_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MAX_UPDATES_PER_HOUR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MAX_USER_CONNECTIONS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MAXVALUE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MEDIUMBLOB_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MEDIUMINT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MEDIUMTEXT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MEDIUM_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MEMORY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MERGE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MESSAGE_TEXT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MICROSECOND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MID_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MIDDLEINT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MIGRATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MINUTE_MICROSECOND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MINUTE_SECOND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MINUTE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MIN_ROWS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MIN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MODE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MODIFIES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MODIFY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MOD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MONTH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MULTILINESTRING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MULTIPOINT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MULTIPOLYGON_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MUTEX_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MYSQL_ERRNO_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NAMES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NAME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NATIONAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NATURAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NCHAR_STRING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NCHAR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NDB_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NDBCLUSTER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NEG_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NEVER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NEW_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NEXT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NODEGROUP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NONE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NONBLOCKING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NOT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NOW_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NO_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NO_WAIT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NO_WRITE_TO_BINLOG_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NULL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NUMBER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NUMERIC_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NVARCHAR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OFFLINE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OFFSET_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OLD_PASSWORD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ON_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ONE_SHOT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ONE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ONLINE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ONLY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OPEN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OPTIMIZE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OPTIMIZER_COSTS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OPTIONS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OPTION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OPTIONALLY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ORDER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OUTER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OUTFILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OUT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->OWNER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PACK_KEYS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PAGE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PARSER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PARTIAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PARTITIONING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PARTITIONS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PARTITION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PASSWORD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PHASE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PLUGINS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PLUGIN_DIR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PLUGIN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->POINT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->POLYGON_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PORT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->POSITION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PRECEDES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PRECISION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PREPARE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PRESERVE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PREV_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PRIMARY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PRIVILEGES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PROCEDURE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PROCESS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PROCESSLIST_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PROFILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PROFILES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PROXY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->PURGE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->QUARTER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->QUERY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->QUICK_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RANGE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->READS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->READ_ONLY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->READ_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->READ_WRITE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REBUILD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RECOVER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REDOFILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REDO_BUFFER_SIZE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REDUNDANT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REFERENCES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REGEXP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RELAY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RELAYLOG_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RELAY_LOG_FILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RELAY_LOG_POS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RELAY_THREAD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RELEASE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RELOAD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REMOVE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RENAME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REORGANIZE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REPAIR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REPEATABLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REPEAT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REPLACE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REPLICATION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REPLICATE_DO_DB_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REPLICATE_IGNORE_DB_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REPLICATE_DO_TABLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REPLICATE_IGNORE_TABLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REPLICATE_WILD_DO_TABLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REPLICATE_WILD_IGNORE_TABLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REPLICATE_REWRITE_DB_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REQUIRE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RESET_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RESIGNAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RESTORE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RESTRICT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RESUME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RETURNED_SQLSTATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RETURNS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RETURN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REVERSE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->REVOKE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RIGHT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RLIKE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ROLLBACK_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ROLLUP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ROUTINE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ROWS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ROW_COUNT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ROW_FORMAT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ROW_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->RTREE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SAVEPOINT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SCHEDULE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SCHEMA_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SCHEMA_NAME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SCHEMAS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SECOND_MICROSECOND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SECOND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SECURITY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SELECT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SENSITIVE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SEPARATOR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SERIALIZABLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SERIAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SESSION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SERVER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SERVER_OPTIONS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SESSION_USER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SET_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SET_VAR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SHARE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SHOW_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SHUTDOWN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SIGNAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SIGNED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SIMPLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SLAVE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SLOW_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SMALLINT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SNAPSHOT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SOME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SOCKET_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SONAME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SOUNDS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SOURCE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SPATIAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SPECIFIC_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQLEXCEPTION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQLSTATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQLWARNING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_AFTER_GTIDS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_AFTER_MTS_GAPS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_BEFORE_GTIDS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_BIG_RESULT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_BUFFER_RESULT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_CACHE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_CALC_FOUND_ROWS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_NO_CACHE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_SMALL_RESULT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_THREAD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SSL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STACKED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STARTING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STARTS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->START_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STATS_AUTO_RECALC_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STATS_PERSISTENT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STATS_SAMPLE_PAGES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STATUS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STDDEV_SAMP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STDDEV_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STDDEV_POP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STOP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STORAGE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STORED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STRAIGHT_JOIN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->STRING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SUBCLASS_ORIGIN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SUBDATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SUBJECT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SUBPARTITIONS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SUBPARTITION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SUBSTR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SUBSTRING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SUM_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SUPER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SUSPEND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SWAPS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SWITCHES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SYSDATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SYSTEM_USER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TABLES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TABLESPACE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TABLE_REF_PRIORITY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TABLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TABLE_CHECKSUM_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TABLE_NAME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TEMPORARY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TEMPTABLE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TERMINATED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TEXT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->THAN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->THEN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TIMESTAMP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TIMESTAMP_ADD_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TIMESTAMP_DIFF_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TIME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TINYBLOB_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TINYINT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TINYTEXT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TO_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TRAILING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TRANSACTION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TRIGGERS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TRIGGER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TRIM_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TRUE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TRUNCATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TYPES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->TYPE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UDF_RETURNS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNCOMMITTED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNDEFINED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNDOFILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNDO_BUFFER_SIZE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNDO_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNICODE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNINSTALL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNIQUE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNKNOWN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNLOCK_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNSIGNED_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNTIL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UPDATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UPGRADE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->USAGE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->USER_RESOURCES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->USER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->USE_FRM_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->USE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->USING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UTC_DATE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UTC_TIMESTAMP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UTC_TIME_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VALIDATION_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VALUES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VALUE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VARBINARY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VARCHAR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VARCHARACTER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VARIABLES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VARIANCE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VARYING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VAR_POP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VAR_SAMP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VIEW_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VIRTUAL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WAIT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WARNINGS_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WEEK_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WEIGHT_STRING_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WHEN_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WHERE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WHILE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WITH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WITH_CUBE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WITH_ROLLUP_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WITHOUT_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WORK_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WRAPPER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WRITE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->X509_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->XA_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->XID_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->XML_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->XOR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->YEAR_MONTH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->YEAR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ZEROFILL_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INT1_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INT2_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INT3_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INT4_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INT8_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_TSI_FRAC_SECOND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_TSI_SECOND_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_TSI_MINUTE_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_TSI_HOUR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_TSI_DAY_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_TSI_WEEK_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_TSI_MONTH_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_TSI_QUARTER_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SQL_TSI_YEAR_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->WHITESPACE(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INVALID_INPUT(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HEX_NUMBER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BIN_NUMBER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->UNDERSCORE_CHARSET(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->IDENTIFIER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NCHAR_TEXT(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NUMBER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DECIMAL_NUMBER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->FLOAT_NUMBER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BACK_TICK_QUOTED_ID(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DOUBLE_QUOTED_TEXT(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SINGLE_QUOTED_TEXT(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->COMMENT_RULE(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->BLOCK_COMMENT(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VERSION_COMMENT(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VERSION_COMMENT_TAIL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->MULTILINE_COMMENT(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VERSION_COMMENT_END(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->POUND_COMMENT(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DASHDASH_COMMENT(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DOUBLE_DASH(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LINEBREAK(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DIGIT(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->DIGITS(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->HEXDIGIT(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->SIMPLE_IDENTIFIER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ML_COMMENT_HEAD(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ML_COMMENT_END(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->VERSION_COMMENT_INTRODUCER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LETTER_WHEN_UNQUOTED(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LETTER_WHEN_UNQUOTED_NO_DIGIT(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->NOT2_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->CONCAT_PIPES_SYMBOL(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->AT_TEXT_SUFFIX(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->INT_NUMBER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->LONG_NUMBER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->ULONGLONG_NUMBER(pMySQLLexer)
 *  - 
 void
      pMySQLLexer->Tokens(pMySQLLexer)
 * 
 *
 * The return type for any particular rule is of course determined by the source
 * grammar file.
 */
// [The "BSD license"]
// Copyright (c) 2005-2009 Jim Idle, Temporal Wave LLC
// http://www.temporal-wave.com
// http://www.linkedin.com/in/jimidle
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of source code must retain the above copyright
//    notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
//    notice, this list of conditions and the following disclaimer in the
//    documentation and/or other materials provided with the distribution.
// 3. The name of the author may not be used to endorse or promote products
//    derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
// IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
// NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#ifndef	_MySQLLexer_H
#define _MySQLLexer_H
/* =============================================================================
 * Standard antlr3 C runtime definitions
 */
#include    <antlr3.h>

/* End of standard antlr 3 runtime definitions
 * =============================================================================
 */


// This structure carries important values that are needed to make the lexer + parser work properly, as they
// provide context information. The code which creates parser and lexer must set a reference to such a structure
// initialized to the proper values in the shared lexer/parser state userp member.
typedef struct {
  int versionMatched;    // True if a given version number is less or equal compare to that of the server.
  int inVersionComment;  // True if we are in a version comment (/*!12345 ... */).
  long version;
  unsigned sqlMode;      // A collection of flags indicating which of relevant SQL modes are active.
  void *payload;         // Since we use the usercp for this struct we need another way to pass around other arbitrary data.
} RecognitionContext;

// SQL modes that control parsing behavior.
#define SQL_MODE_ANSI_QUOTES            1
#define SQL_MODE_HIGH_NOT_PRECEDENCE    2
#define SQL_MODE_PIPES_AS_CONCAT        4
#define SQL_MODE_IGNORE_SPACE           8
#define SQL_MODE_NO_BACKSLASH_ESCAPES  16

// 2 vars stored in state pointer (otherwise we would have to create global vars).
#define VERSION_MATCHED ((RecognitionContext*)RECOGNIZER->state->userp)->versionMatched
#define IN_VERSION_COMMENT ((RecognitionContext*)RECOGNIZER->state->userp)->inVersionComment

#define PAYLOAD ((RecognitionContext*)RECOGNIZER->state->userp)->payload
#define SERVER_VERSION ((RecognitionContext*)RECOGNIZER->state->userp)->version
#define TYPE_FROM_VERSION(version, type) (SERVER_VERSION >= version ? type : IDENTIFIER)
#define DEPRECATED_TYPE_FROM_VERSION(version, type) (SERVER_VERSION < version ? type : IDENTIFIER)
#define TYPE_IN_VERSION_RANGE(small_version, large_version, type) ((SERVER_VERSION >= small_version && SERVER_VERSION < large_version) ? type : IDENTIFIER)
#define SQL_MODE_ACTIVE(mode) (((RecognitionContext*)RECOGNIZER->state->userp)->sqlMode & mode) != 0



#ifdef __cplusplus
extern "C" {
#endif

// Forward declare the context typedef so that we can use it before it is
// properly defined. Delegators and delegates (from import statements) are
// interdependent and their context structures contain pointers to each other
// C only allows such things to be declared if you pre-declare the typedef.
//
typedef struct MySQLLexer_Ctx_struct MySQLLexer, * pMySQLLexer;




#define ANTLR3_HUGE
#ifndef _WIN32
// Usually suppressing such warnings is wrong, but here we got to do with generated code,
// so it's ok for this specific case.
#pragma GCC diagnostic ignored "-Wunused-variable"
#pragma GCC diagnostic ignored "-Wparentheses"
#ifdef __clang__
// Comparison of unsigned expression >= 0 is always true.
#pragma GCC diagnostic ignored "-Wtautological-compare"
#else
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 6 )
#pragma GCC diagnostic ignored "-Wtype-limits"
#endif
#endif
#else
#pragma warning(disable:4296) // Condition is always true.
#endif



#ifdef	ANTLR3_WINDOWS
// Disable: Unreferenced parameter,							- Rules with parameters that are not used
//          constant conditional,							- ANTLR realizes that a prediction is always true (synpred usually)
//          initialized but unused variable					- tree rewrite variables declared but not needed
//          Unreferenced local variable						- lexer rule declares but does not always use _type
//          potentially unitialized variable used			- retval always returned from a rule
//			unreferenced local function has been removed	- susually getTokenNames or freeScope, they can go without warnigns
//
// These are only really displayed at warning level /W4 but that is the code ideal I am aiming at
// and the codegen must generate some of these warnings by necessity, apart from 4100, which is
// usually generated when a parser rule is given a parameter that it does not use. Mostly though
// this is a matter of orthogonality hence I disable that one.
//
#pragma warning( disable : 4100 )
#pragma warning( disable : 4101 )
#pragma warning( disable : 4127 )
#pragma warning( disable : 4189 )
#pragma warning( disable : 4505 )
#pragma warning( disable : 4701 )
#endif

/* ========================
 * BACKTRACKING IS ENABLED
 * ========================
 */


/** Context tracking structure for 
MySQLLexer

 */
struct MySQLLexer_Ctx_struct
{
    /** Built in ANTLR3 context tracker contains all the generic elements
     *  required for context tracking.
     */
    pANTLR3_LEXER    pLexer;

     void
     (*mEQUAL_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mASSIGN_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNULL_SAFE_EQUAL_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGREATER_OR_EQUAL_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGREATER_THAN_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLESS_OR_EQUAL_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLESS_THAN_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNOT_EQUAL_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNOT_EQUAL2_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPLUS_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMINUS_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMULT_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDIV_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMOD_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOGICAL_NOT_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBITWISE_NOT_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSHIFT_LEFT_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSHIFT_RIGHT_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOGICAL_AND_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBITWISE_AND_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBITWISE_XOR_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOGICAL_OR_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBITWISE_OR_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDOT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOMMA_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSEMICOLON_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOLON_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOPEN_PAR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCLOSE_PAR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOPEN_CURLY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCLOSE_CURLY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNDERLINE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mJSON_SEPARATOR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mJSON_UNQUOTED_SEPARATOR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAT_SIGN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAT_AT_SIGN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNULL2_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPARAM_MARKER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBACK_TICK)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSINGLE_QUOTE)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDOUBLE_QUOTE)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mESCAPE_OPERATOR)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDOT_IDENTIFIER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mACCESSIBLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mACCOUNT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mACTION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mADD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mADDDATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAFTER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAGAINST_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAGGREGATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mALGORITHM_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mALL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mALTER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mALWAYS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mANALYSE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mANALYZE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mANY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mASC_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mASCII_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mASENSITIVE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAUTHORS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAUTOEXTEND_SIZE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAUTO_INCREMENT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAVG_ROW_LENGTH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAVG_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBACKUP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBEFORE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBEGIN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBETWEEN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBIGINT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBINARY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBINLOG_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBIN_NUM_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBIT_AND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBIT_OR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBIT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBIT_XOR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBLOB_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBLOCK_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBOOLEAN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBOOL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBOTH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBTREE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBYTE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCACHE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCALL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCASCADE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCASCADED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCASE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCAST_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCATALOG_NAME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCHAIN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCHANGE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCHANGED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCHANNEL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCHARSET_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCHARACTER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCHAR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCHECKSUM_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCHECK_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCIPHER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCLASS_ORIGIN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCLIENT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCLOSE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOALESCE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCODE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOLLATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOLLATION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOLUMNS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOLUMN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOLUMN_NAME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOLUMN_FORMAT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOMMENT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOMMITTED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOMMIT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOMPACT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOMPLETION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOMPRESSED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOMPRESSION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONCURRENT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONDITION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONNECTION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONSISTENT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONSTRAINT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONSTRAINT_CATALOG_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONSTRAINT_NAME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONSTRAINT_SCHEMA_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONTAINS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONTEXT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONTINUE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONTRIBUTORS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONVERT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOUNT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCPU_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCREATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCROSS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCUBE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCURDATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCURRENT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCURRENT_DATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCURRENT_TIME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCURRENT_TIMESTAMP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCURRENT_USER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCURSOR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCURSOR_NAME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCURTIME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDATABASE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDATABASES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDATAFILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDATA_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDATETIME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDATE_ADD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDATE_ADD_INTERVAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDATE_SUB_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDATE_SUB_INTERVAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDAYOFMONTH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDAY_HOUR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDAY_MICROSECOND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDAY_MINUTE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDAY_SECOND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDAY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDEALLOCATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDEC_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDECIMAL_NUM_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDECIMAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDECLARE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDEFAULT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDEFAULT_AUTH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDEFINER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDELAYED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDELAY_KEY_WRITE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDELETE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDESC_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDESCRIBE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDES_KEY_FILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDETERMINISTIC_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDIAGNOSTICS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDIRECTORY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDISABLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDISCARD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDISK_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDISTINCT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDISTINCTROW_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDIV_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDOUBLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDO_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDROP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDUAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDUMPFILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDUPLICATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDYNAMIC_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEACH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mELSE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mELSEIF_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mENABLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mENCLOSED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mENDS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEND_OF_INPUT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mENGINES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mENGINE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mENUM_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mERROR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mERRORS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mESCAPED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mESCAPE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEVENTS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEVENT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEVERY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEXCHANGE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEXECUTE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEXISTS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEXIT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEXPANSION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEXPIRE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEXPLAIN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEXPORT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEXTENDED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEXTENT_SIZE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mEXTRACT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFALSE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFAST_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFAULTS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFETCH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFIELDS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFILE_BLOCK_SIZE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFILTER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFIRST_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFIXED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFLOAT4_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFLOAT8_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFLOAT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFLUSH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFOLLOWS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFORCE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFOREIGN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFOR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFORMAT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFOUND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFRAC_SECOND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFROM_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFULL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFULLTEXT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFUNCTION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGET_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGENERAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGENERATED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGROUP_REPLICATION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGEOMETRYCOLLECTION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGEOMETRY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGET_FORMAT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGLOBAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGRANT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGRANTS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGROUP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mGROUP_CONCAT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHANDLER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHASH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHAVING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHELP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHIGH_PRIORITY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHOST_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHOSTS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHOUR_MICROSECOND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHOUR_MINUTE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHOUR_SECOND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHOUR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIDENTIFIED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIF_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIGNORE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIGNORE_SERVER_IDS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIMPORT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINDEXES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINDEX_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINFILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINITIAL_SIZE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINNER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINNODB_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINOUT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINSENSITIVE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINSERT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINSERT_METHOD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINSTALL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINTEGER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINTERVAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINTO_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINVOKER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIO_AFTER_GTIDS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIO_BEFORE_GTIDS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIO_THREAD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIO_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIPC_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mISOLATION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mISSUER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mITERATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mJOIN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mJSON_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mKEYS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mKEY_BLOCK_SIZE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mKEY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mKILL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLANGUAGE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLAST_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLEADING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLEAVES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLEAVE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLEFT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLESS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLEVEL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLIKE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLIMIT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLINEAR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLINES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLINESTRING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLIST_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOAD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOCALTIME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOCALTIMESTAMP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOCAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOCATOR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOCKS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOCK_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOGFILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOGS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLONGBLOB_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLONGTEXT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLONG_NUM_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLONG_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOOP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLOW_PRIORITY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_AUTO_POSITION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_BIND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_CONNECT_RETRY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_DELAY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_HOST_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_LOG_FILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_LOG_POS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_PASSWORD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_PORT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_RETRY_COUNT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_SERVER_ID_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_SSL_CAPATH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_SSL_CA_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_SSL_CERT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_SSL_CIPHER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_SSL_CRL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_SSL_CRLPATH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_SSL_KEY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_SSL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_SSL_VERIFY_SERVER_CERT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_USER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMASTER_HEARTBEAT_PERIOD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMATCH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMAX_CONNECTIONS_PER_HOUR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMAX_QUERIES_PER_HOUR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMAX_ROWS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMAX_SIZE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMAX_STATEMENT_TIME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMAX_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMAX_UPDATES_PER_HOUR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMAX_USER_CONNECTIONS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMAXVALUE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMEDIUMBLOB_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMEDIUMINT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMEDIUMTEXT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMEDIUM_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMEMORY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMERGE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMESSAGE_TEXT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMICROSECOND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMID_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMIDDLEINT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMIGRATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMINUTE_MICROSECOND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMINUTE_SECOND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMINUTE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMIN_ROWS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMIN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMODE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMODIFIES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMODIFY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMOD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMONTH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMULTILINESTRING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMULTIPOINT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMULTIPOLYGON_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMUTEX_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMYSQL_ERRNO_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNAMES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNAME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNATIONAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNATURAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNCHAR_STRING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNCHAR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNDB_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNDBCLUSTER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNEG_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNEVER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNEW_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNEXT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNODEGROUP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNONE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNONBLOCKING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNOT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNOW_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNO_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNO_WAIT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNO_WRITE_TO_BINLOG_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNULL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNUMBER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNUMERIC_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNVARCHAR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOFFLINE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOFFSET_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOLD_PASSWORD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mON_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mONE_SHOT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mONE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mONLINE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mONLY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOPEN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOPTIMIZE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOPTIMIZER_COSTS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOPTIONS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOPTION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOPTIONALLY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mORDER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOUTER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOUTFILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOUT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mOWNER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPACK_KEYS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPAGE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPARSER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPARTIAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPARTITIONING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPARTITIONS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPARTITION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPASSWORD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPHASE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPLUGINS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPLUGIN_DIR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPLUGIN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPOINT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPOLYGON_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPORT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPOSITION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPRECEDES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPRECISION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPREPARE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPRESERVE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPREV_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPRIMARY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPRIVILEGES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPROCEDURE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPROCESS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPROCESSLIST_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPROFILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPROFILES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPROXY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPURGE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mQUARTER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mQUERY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mQUICK_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRANGE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREADS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREAD_ONLY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREAD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREAD_WRITE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREBUILD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRECOVER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREDOFILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREDO_BUFFER_SIZE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREDUNDANT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREFERENCES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREGEXP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRELAY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRELAYLOG_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRELAY_LOG_FILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRELAY_LOG_POS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRELAY_THREAD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRELEASE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRELOAD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREMOVE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRENAME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREORGANIZE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREPAIR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREPEATABLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREPEAT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREPLACE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREPLICATION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREPLICATE_DO_DB_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREPLICATE_IGNORE_DB_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREPLICATE_DO_TABLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREPLICATE_IGNORE_TABLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREPLICATE_WILD_DO_TABLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREPLICATE_WILD_IGNORE_TABLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREPLICATE_REWRITE_DB_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREQUIRE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRESET_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRESIGNAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRESTORE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRESTRICT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRESUME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRETURNED_SQLSTATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRETURNS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRETURN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREVERSE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mREVOKE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRIGHT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRLIKE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mROLLBACK_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mROLLUP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mROUTINE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mROWS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mROW_COUNT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mROW_FORMAT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mROW_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mRTREE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSAVEPOINT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSCHEDULE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSCHEMA_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSCHEMA_NAME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSCHEMAS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSECOND_MICROSECOND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSECOND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSECURITY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSELECT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSENSITIVE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSEPARATOR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSERIALIZABLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSERIAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSESSION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSERVER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSERVER_OPTIONS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSESSION_USER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSET_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSET_VAR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSHARE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSHOW_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSHUTDOWN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSIGNAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSIGNED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSIMPLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSLAVE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSLOW_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSMALLINT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSNAPSHOT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSOME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSOCKET_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSONAME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSOUNDS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSOURCE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSPATIAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSPECIFIC_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQLEXCEPTION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQLSTATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQLWARNING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_AFTER_GTIDS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_AFTER_MTS_GAPS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_BEFORE_GTIDS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_BIG_RESULT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_BUFFER_RESULT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_CACHE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_CALC_FOUND_ROWS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_NO_CACHE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_SMALL_RESULT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_THREAD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSSL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTACKED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTARTING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTARTS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTART_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTATS_AUTO_RECALC_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTATS_PERSISTENT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTATS_SAMPLE_PAGES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTATUS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTDDEV_SAMP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTDDEV_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTDDEV_POP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTOP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTORAGE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTORED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTRAIGHT_JOIN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSTRING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSUBCLASS_ORIGIN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSUBDATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSUBJECT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSUBPARTITIONS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSUBPARTITION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSUBSTR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSUBSTRING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSUM_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSUPER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSUSPEND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSWAPS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSWITCHES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSYSDATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSYSTEM_USER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTABLES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTABLESPACE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTABLE_REF_PRIORITY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTABLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTABLE_CHECKSUM_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTABLE_NAME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTEMPORARY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTEMPTABLE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTERMINATED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTEXT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTHAN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTHEN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTIMESTAMP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTIMESTAMP_ADD_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTIMESTAMP_DIFF_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTIME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTINYBLOB_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTINYINT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTINYTEXT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTO_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTRAILING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTRANSACTION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTRIGGERS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTRIGGER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTRIM_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTRUE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTRUNCATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTYPES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTYPE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUDF_RETURNS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNCOMMITTED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNDEFINED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNDOFILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNDO_BUFFER_SIZE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNDO_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNICODE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNINSTALL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNIQUE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNKNOWN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNLOCK_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNSIGNED_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNTIL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUPDATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUPGRADE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUSAGE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUSER_RESOURCES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUSER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUSE_FRM_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUSE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUSING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUTC_DATE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUTC_TIMESTAMP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUTC_TIME_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVALIDATION_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVALUES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVALUE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVARBINARY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVARCHAR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVARCHARACTER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVARIABLES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVARIANCE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVARYING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVAR_POP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVAR_SAMP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVIEW_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVIRTUAL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWAIT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWARNINGS_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWEEK_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWEIGHT_STRING_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWHEN_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWHERE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWHILE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWITH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWITH_CUBE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWITH_ROLLUP_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWITHOUT_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWORK_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWRAPPER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWRITE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mX509_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mXA_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mXID_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mXML_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mXOR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mYEAR_MONTH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mYEAR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mZEROFILL_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINT1_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINT2_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINT3_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINT4_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINT8_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_TSI_FRAC_SECOND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_TSI_SECOND_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_TSI_MINUTE_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_TSI_HOUR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_TSI_DAY_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_TSI_WEEK_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_TSI_MONTH_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_TSI_QUARTER_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSQL_TSI_YEAR_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mWHITESPACE)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINVALID_INPUT)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHEX_NUMBER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBIN_NUMBER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mUNDERSCORE_CHARSET)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mIDENTIFIER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNCHAR_TEXT)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNUMBER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDECIMAL_NUMBER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mFLOAT_NUMBER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBACK_TICK_QUOTED_ID)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDOUBLE_QUOTED_TEXT)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSINGLE_QUOTED_TEXT)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCOMMENT_RULE)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mBLOCK_COMMENT)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVERSION_COMMENT)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVERSION_COMMENT_TAIL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mMULTILINE_COMMENT)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVERSION_COMMENT_END)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mPOUND_COMMENT)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDASHDASH_COMMENT)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDOUBLE_DASH)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLINEBREAK)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDIGIT)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mDIGITS)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mHEXDIGIT)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mSIMPLE_IDENTIFIER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mML_COMMENT_HEAD)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mML_COMMENT_END)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mVERSION_COMMENT_INTRODUCER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLETTER_WHEN_UNQUOTED)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLETTER_WHEN_UNQUOTED_NO_DIGIT)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mNOT2_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mCONCAT_PIPES_SYMBOL)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mAT_TEXT_SUFFIX)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mINT_NUMBER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mLONG_NUMBER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mULONGLONG_NUMBER)	(struct MySQLLexer_Ctx_struct * ctx);

     void
     (*mTokens)	(struct MySQLLexer_Ctx_struct * ctx);

    const char * (*getGrammarFileName)();
    void            (*reset)  (struct MySQLLexer_Ctx_struct * ctx);
    void	    (*free)   (struct MySQLLexer_Ctx_struct * ctx);

    // A pointer to the original nextToken function.
    pANTLR3_COMMON_TOKEN (*originalNextToken)(pANTLR3_TOKEN_SOURCE tokenSource);

    // Contains ANTLR3_COMMON_TOKEN instances.
    pANTLR3_VECTOR pendingTokens;

};

// Function protoypes for the constructor functions that external translation units
// such as delegators and delegates may wish to call.
//
ANTLR3_API pMySQLLexer MySQLLexerNew         (
pANTLR3_INPUT_STREAM
 instream);
ANTLR3_API pMySQLLexer MySQLLexerNewSSD      (
pANTLR3_INPUT_STREAM
 instream, pANTLR3_RECOGNIZER_SHARED_STATE state);

/** Symbolic definitions of all the tokens that the 
lexer
 will work with.
 * \{
 *
 * Antlr will define EOF, but we can't use that as it it is too common in
 * in C header files and that would be confusing. There is no way to filter this out at the moment
 * so we just undef it here for now. That isn't the value we get back from C recognizers
 * anyway. We are looking for ANTLR3_TOKEN_EOF.
 */
#ifdef	EOF
#undef	EOF
#endif
#ifdef	Tokens
#undef	Tokens
#endif
#define EOF      -1
#define ACCOUNT_SYMBOL      4
#define ASCII_SYMBOL      5
#define ALWAYS_SYMBOL      6
#define BACKUP_SYMBOL      7
#define BEGIN_SYMBOL      8
#define BYTE_SYMBOL      9
#define CACHE_SYMBOL      10
#define CHARSET_SYMBOL      11
#define CHECKSUM_SYMBOL      12
#define CLOSE_SYMBOL      13
#define COMMENT_SYMBOL      14
#define COMMIT_SYMBOL      15
#define CONTAINS_SYMBOL      16
#define DEALLOCATE_SYMBOL      17
#define DO_SYMBOL      18
#define END_SYMBOL      19
#define EXECUTE_SYMBOL      20
#define FLUSH_SYMBOL      21
#define FOLLOWS_SYMBOL      22
#define FORMAT_SYMBOL      23
#define GROUP_REPLICATION_SYMBOL      24
#define HANDLER_SYMBOL      25
#define HELP_SYMBOL      26
#define HOST_SYMBOL      27
#define INSTALL_SYMBOL      28
#define LANGUAGE_SYMBOL      29
#define NO_SYMBOL      30
#define OPEN_SYMBOL      31
#define OPTIONS_SYMBOL      32
#define OWNER_SYMBOL      33
#define PARSER_SYMBOL      34
#define PARTITION_SYMBOL      35
#define PORT_SYMBOL      36
#define PRECEDES_SYMBOL      37
#define PREPARE_SYMBOL      38
#define REMOVE_SYMBOL      39
#define REPAIR_SYMBOL      40
#define RESET_SYMBOL      41
#define RESTORE_SYMBOL      42
#define ROLLBACK_SYMBOL      43
#define SAVEPOINT_SYMBOL      44
#define SECURITY_SYMBOL      45
#define SERVER_SYMBOL      46
#define SIGNED_SYMBOL      47
#define SLAVE_SYMBOL      48
#define SOCKET_SYMBOL      49
#define SONAME_SYMBOL      50
#define START_SYMBOL      51
#define STOP_SYMBOL      52
#define TRUNCATE_SYMBOL      53
#define UNICODE_SYMBOL      54
#define UNINSTALL_SYMBOL      55
#define UPGRADE_SYMBOL      56
#define WRAPPER_SYMBOL      57
#define XA_SYMBOL      58
#define ACTION_SYMBOL      59
#define ADDDATE_SYMBOL      60
#define AFTER_SYMBOL      61
#define AGAINST_SYMBOL      62
#define AGGREGATE_SYMBOL      63
#define ALGORITHM_SYMBOL      64
#define ANALYZE_SYMBOL      65
#define ANY_SYMBOL      66
#define AT_SYMBOL      67
#define AUTHORS_SYMBOL      68
#define AUTO_INCREMENT_SYMBOL      69
#define AUTOEXTEND_SIZE_SYMBOL      70
#define AVG_ROW_LENGTH_SYMBOL      71
#define AVG_SYMBOL      72
#define BINLOG_SYMBOL      73
#define BIT_SYMBOL      74
#define BLOCK_SYMBOL      75
#define BOOL_SYMBOL      76
#define BOOLEAN_SYMBOL      77
#define BTREE_SYMBOL      78
#define CASCADED_SYMBOL      79
#define CATALOG_NAME_SYMBOL      80
#define CHAIN_SYMBOL      81
#define CHANGED_SYMBOL      82
#define CHANNEL_SYMBOL      83
#define CIPHER_SYMBOL      84
#define CLIENT_SYMBOL      85
#define CLASS_ORIGIN_SYMBOL      86
#define COALESCE_SYMBOL      87
#define CODE_SYMBOL      88
#define COLLATION_SYMBOL      89
#define COLUMN_NAME_SYMBOL      90
#define COLUMN_FORMAT_SYMBOL      91
#define COLUMNS_SYMBOL      92
#define COMMITTED_SYMBOL      93
#define COMPACT_SYMBOL      94
#define COMPLETION_SYMBOL      95
#define COMPRESSED_SYMBOL      96
#define COMPRESSION_SYMBOL      97
#define CONCURRENT_SYMBOL      98
#define CONNECTION_SYMBOL      99
#define CONSISTENT_SYMBOL      100
#define CONSTRAINT_CATALOG_SYMBOL      101
#define CONSTRAINT_SCHEMA_SYMBOL      102
#define CONSTRAINT_NAME_SYMBOL      103
#define CONTEXT_SYMBOL      104
#define CONTRIBUTORS_SYMBOL      105
#define CPU_SYMBOL      106
#define CUBE_SYMBOL      107
#define CURRENT_SYMBOL      108
#define CURSOR_NAME_SYMBOL      109
#define DATA_SYMBOL      110
#define DATAFILE_SYMBOL      111
#define DATETIME_SYMBOL      112
#define DATE_SYMBOL      113
#define DAY_SYMBOL      114
#define DEFAULT_AUTH_SYMBOL      115
#define DEFINER_SYMBOL      116
#define DELAY_KEY_WRITE_SYMBOL      117
#define DES_KEY_FILE_SYMBOL      118
#define DIAGNOSTICS_SYMBOL      119
#define DIRECTORY_SYMBOL      120
#define DISABLE_SYMBOL      121
#define DISCARD_SYMBOL      122
#define DISK_SYMBOL      123
#define DUMPFILE_SYMBOL      124
#define DUPLICATE_SYMBOL      125
#define DYNAMIC_SYMBOL      126
#define ENDS_SYMBOL      127
#define ENUM_SYMBOL      128
#define ENGINE_SYMBOL      129
#define ENGINES_SYMBOL      130
#define ERROR_SYMBOL      131
#define ERRORS_SYMBOL      132
#define ESCAPE_SYMBOL      133
#define EVENT_SYMBOL      134
#define EVENTS_SYMBOL      135
#define EVERY_SYMBOL      136
#define EXPANSION_SYMBOL      137
#define EXPORT_SYMBOL      138
#define EXTENDED_SYMBOL      139
#define EXTENT_SIZE_SYMBOL      140
#define FAULTS_SYMBOL      141
#define FAST_SYMBOL      142
#define FOUND_SYMBOL      143
#define ENABLE_SYMBOL      144
#define FULL_SYMBOL      145
#define FILE_SYMBOL      146
#define FILE_BLOCK_SIZE_SYMBOL      147
#define FILTER_SYMBOL      148
#define FIRST_SYMBOL      149
#define FIXED_SYMBOL      150
#define GENERAL_SYMBOL      151
#define GEOMETRY_SYMBOL      152
#define GEOMETRYCOLLECTION_SYMBOL      153
#define GET_FORMAT_SYMBOL      154
#define GRANTS_SYMBOL      155
#define GLOBAL_SYMBOL      156
#define HASH_SYMBOL      157
#define HOSTS_SYMBOL      158
#define HOUR_SYMBOL      159
#define IDENTIFIED_SYMBOL      160
#define IGNORE_SERVER_IDS_SYMBOL      161
#define INVOKER_SYMBOL      162
#define IMPORT_SYMBOL      163
#define INDEXES_SYMBOL      164
#define INITIAL_SIZE_SYMBOL      165
#define INNODB_SYMBOL      166
#define IO_SYMBOL      167
#define IPC_SYMBOL      168
#define ISOLATION_SYMBOL      169
#define ISSUER_SYMBOL      170
#define INSERT_METHOD_SYMBOL      171
#define JSON_SYMBOL      172
#define KEY_BLOCK_SIZE_SYMBOL      173
#define LAST_SYMBOL      174
#define LEAVES_SYMBOL      175
#define LESS_SYMBOL      176
#define LEVEL_SYMBOL      177
#define LINESTRING_SYMBOL      178
#define LIST_SYMBOL      179
#define LOCAL_SYMBOL      180
#define LOCKS_SYMBOL      181
#define LOGFILE_SYMBOL      182
#define LOGS_SYMBOL      183
#define MAX_ROWS_SYMBOL      184
#define MASTER_SYMBOL      185
#define MASTER_HEARTBEAT_PERIOD_SYMBOL      186
#define MASTER_HOST_SYMBOL      187
#define MASTER_PORT_SYMBOL      188
#define MASTER_LOG_FILE_SYMBOL      189
#define MASTER_LOG_POS_SYMBOL      190
#define MASTER_USER_SYMBOL      191
#define MASTER_PASSWORD_SYMBOL      192
#define MASTER_SERVER_ID_SYMBOL      193
#define MASTER_CONNECT_RETRY_SYMBOL      194
#define MASTER_RETRY_COUNT_SYMBOL      195
#define MASTER_DELAY_SYMBOL      196
#define MASTER_SSL_SYMBOL      197
#define MASTER_SSL_CA_SYMBOL      198
#define MASTER_SSL_CAPATH_SYMBOL      199
#define MASTER_SSL_CERT_SYMBOL      200
#define MASTER_SSL_CIPHER_SYMBOL      201
#define MASTER_SSL_CRL_SYMBOL      202
#define MASTER_SSL_CRLPATH_SYMBOL      203
#define MASTER_SSL_KEY_SYMBOL      204
#define MASTER_AUTO_POSITION_SYMBOL      205
#define MAX_CONNECTIONS_PER_HOUR_SYMBOL      206
#define MAX_QUERIES_PER_HOUR_SYMBOL      207
#define MAX_STATEMENT_TIME_SYMBOL      208
#define MAX_SIZE_SYMBOL      209
#define MAX_UPDATES_PER_HOUR_SYMBOL      210
#define MAX_USER_CONNECTIONS_SYMBOL      211
#define MEDIUM_SYMBOL      212
#define MEMORY_SYMBOL      213
#define MERGE_SYMBOL      214
#define MESSAGE_TEXT_SYMBOL      215
#define MICROSECOND_SYMBOL      216
#define MIGRATE_SYMBOL      217
#define MINUTE_SYMBOL      218
#define MIN_ROWS_SYMBOL      219
#define MODIFY_SYMBOL      220
#define MODE_SYMBOL      221
#define MONTH_SYMBOL      222
#define MULTILINESTRING_SYMBOL      223
#define MULTIPOINT_SYMBOL      224
#define MULTIPOLYGON_SYMBOL      225
#define MUTEX_SYMBOL      226
#define MYSQL_ERRNO_SYMBOL      227
#define NAME_SYMBOL      228
#define NAMES_SYMBOL      229
#define NATIONAL_SYMBOL      230
#define NCHAR_SYMBOL      231
#define NDBCLUSTER_SYMBOL      232
#define NEVER_SYMBOL      233
#define NEXT_SYMBOL      234
#define NEW_SYMBOL      235
#define NO_WAIT_SYMBOL      236
#define NODEGROUP_SYMBOL      237
#define NONE_SYMBOL      238
#define NUMBER_SYMBOL      239
#define NVARCHAR_SYMBOL      240
#define OFFSET_SYMBOL      241
#define OLD_PASSWORD_SYMBOL      242
#define ONE_SHOT_SYMBOL      243
#define ONE_SYMBOL      244
#define PACK_KEYS_SYMBOL      245
#define PAGE_SYMBOL      246
#define PARTIAL_SYMBOL      247
#define PARTITIONING_SYMBOL      248
#define PARTITIONS_SYMBOL      249
#define PASSWORD_SYMBOL      250
#define PHASE_SYMBOL      251
#define PLUGIN_DIR_SYMBOL      252
#define PLUGIN_SYMBOL      253
#define PLUGINS_SYMBOL      254
#define POINT_SYMBOL      255
#define POLYGON_SYMBOL      256
#define PRESERVE_SYMBOL      257
#define PREV_SYMBOL      258
#define PRIVILEGES_SYMBOL      259
#define PROCESS_SYMBOL      260
#define PROCESSLIST_SYMBOL      261
#define PROFILE_SYMBOL      262
#define PROFILES_SYMBOL      263
#define PROXY_SYMBOL      264
#define QUARTER_SYMBOL      265
#define QUERY_SYMBOL      266
#define QUICK_SYMBOL      267
#define READ_ONLY_SYMBOL      268
#define REBUILD_SYMBOL      269
#define RECOVER_SYMBOL      270
#define REDO_BUFFER_SIZE_SYMBOL      271
#define REDOFILE_SYMBOL      272
#define REDUNDANT_SYMBOL      273
#define RELAY_SYMBOL      274
#define RELAYLOG_SYMBOL      275
#define RELAY_LOG_FILE_SYMBOL      276
#define RELAY_LOG_POS_SYMBOL      277
#define RELAY_THREAD_SYMBOL      278
#define RELOAD_SYMBOL      279
#define REORGANIZE_SYMBOL      280
#define REPEATABLE_SYMBOL      281
#define REPLICATION_SYMBOL      282
#define REPLICATE_DO_DB_SYMBOL      283
#define REPLICATE_IGNORE_DB_SYMBOL      284
#define REPLICATE_DO_TABLE_SYMBOL      285
#define REPLICATE_IGNORE_TABLE_SYMBOL      286
#define REPLICATE_WILD_DO_TABLE_SYMBOL      287
#define REPLICATE_WILD_IGNORE_TABLE_SYMBOL      288
#define REPLICATE_REWRITE_DB_SYMBOL      289
#define RESUME_SYMBOL      290
#define RETURNED_SQLSTATE_SYMBOL      291
#define RETURNS_SYMBOL      292
#define REVERSE_SYMBOL      293
#define ROLLUP_SYMBOL      294
#define ROUTINE_SYMBOL      295
#define ROWS_SYMBOL      296
#define ROW_COUNT_SYMBOL      297
#define ROW_FORMAT_SYMBOL      298
#define ROW_SYMBOL      299
#define RTREE_SYMBOL      300
#define SCHEDULE_SYMBOL      301
#define SCHEMA_NAME_SYMBOL      302
#define SECOND_SYMBOL      303
#define SERIAL_SYMBOL      304
#define SERIALIZABLE_SYMBOL      305
#define SESSION_SYMBOL      306
#define SIMPLE_SYMBOL      307
#define SHARE_SYMBOL      308
#define SHUTDOWN_SYMBOL      309
#define SLOW_SYMBOL      310
#define SNAPSHOT_SYMBOL      311
#define SOUNDS_SYMBOL      312
#define SOURCE_SYMBOL      313
#define SQL_AFTER_GTIDS_SYMBOL      314
#define SQL_AFTER_MTS_GAPS_SYMBOL      315
#define SQL_BEFORE_GTIDS_SYMBOL      316
#define SQL_CACHE_SYMBOL      317
#define SQL_BUFFER_RESULT_SYMBOL      318
#define SQL_NO_CACHE_SYMBOL      319
#define SQL_THREAD_SYMBOL      320
#define STACKED_SYMBOL      321
#define STARTS_SYMBOL      322
#define STATS_AUTO_RECALC_SYMBOL      323
#define STATS_PERSISTENT_SYMBOL      324
#define STATS_SAMPLE_PAGES_SYMBOL      325
#define STATUS_SYMBOL      326
#define STORAGE_SYMBOL      327
#define STRING_SYMBOL      328
#define SUBCLASS_ORIGIN_SYMBOL      329
#define SUBDATE_SYMBOL      330
#define SUBJECT_SYMBOL      331
#define SUBPARTITION_SYMBOL      332
#define SUBPARTITIONS_SYMBOL      333
#define SUPER_SYMBOL      334
#define SUSPEND_SYMBOL      335
#define SWAPS_SYMBOL      336
#define SWITCHES_SYMBOL      337
#define TABLE_NAME_SYMBOL      338
#define TABLES_SYMBOL      339
#define TABLE_CHECKSUM_SYMBOL      340
#define TABLESPACE_SYMBOL      341
#define TEMPORARY_SYMBOL      342
#define TEMPTABLE_SYMBOL      343
#define TEXT_SYMBOL      344
#define THAN_SYMBOL      345
#define TRANSACTION_SYMBOL      346
#define TRIGGERS_SYMBOL      347
#define TIMESTAMP_SYMBOL      348
#define TIMESTAMP_ADD_SYMBOL      349
#define TIMESTAMP_DIFF_SYMBOL      350
#define TIME_SYMBOL      351
#define TYPES_SYMBOL      352
#define TYPE_SYMBOL      353
#define UDF_RETURNS_SYMBOL      354
#define FUNCTION_SYMBOL      355
#define UNCOMMITTED_SYMBOL      356
#define UNDEFINED_SYMBOL      357
#define UNDO_BUFFER_SIZE_SYMBOL      358
#define UNDOFILE_SYMBOL      359
#define UNKNOWN_SYMBOL      360
#define UNTIL_SYMBOL      361
#define USER_RESOURCES_SYMBOL      362
#define USER_SYMBOL      363
#define USE_FRM_SYMBOL      364
#define VARIABLES_SYMBOL      365
#define VIEW_SYMBOL      366
#define VALUE_SYMBOL      367
#define WARNINGS_SYMBOL      368
#define WAIT_SYMBOL      369
#define WEEK_SYMBOL      370
#define WORK_SYMBOL      371
#define WEIGHT_STRING_SYMBOL      372
#define X509_SYMBOL      373
#define XID_SYMBOL      374
#define XML_SYMBOL      375
#define YEAR_SYMBOL      376
#define ACCESSIBLE_SYMBOL      377
#define ADD_SYMBOL      378
#define ALL_SYMBOL      379
#define ALTER_SYMBOL      380
#define ANALYSE_SYMBOL      381
#define AND_SYMBOL      382
#define ASC_SYMBOL      383
#define ASENSITIVE_SYMBOL      384
#define BEFORE_SYMBOL      385
#define BETWEEN_SYMBOL      386
#define BIGINT_SYMBOL      387
#define BINARY_SYMBOL      388
#define BIN_NUM_SYMBOL      389
#define BLOB_SYMBOL      390
#define BLOCK_COMMENT      391
#define BOTH_SYMBOL      392
#define BY_SYMBOL      393
#define CALL_SYMBOL      394
#define CASCADE_SYMBOL      395
#define CASE_SYMBOL      396
#define CAST_SYMBOL      397
#define CHANGE_SYMBOL      398
#define CHARACTER_SYMBOL      399
#define CHAR_SYMBOL      400
#define CHECK_SYMBOL      401
#define COLLATE_SYMBOL      402
#define COLUMN_SYMBOL      403
#define COMMENT_RULE      404
#define CONDITION_SYMBOL      405
#define CONSTRAINT_SYMBOL      406
#define CONTINUE_SYMBOL      407
#define CONVERT_SYMBOL      408
#define COUNT_SYMBOL      409
#define CREATE_SYMBOL      410
#define CROSS_SYMBOL      411
#define CURDATE_SYMBOL      412
#define CURRENT_TIMESTAMP_SYMBOL      413
#define CURRENT_USER_SYMBOL      414
#define CURSOR_SYMBOL      415
#define CURTIME_SYMBOL      416
#define DASHDASH_COMMENT      417
#define DATABASES_SYMBOL      418
#define DATABASE_SYMBOL      419
#define DATE_ADD_INTERVAL_SYMBOL      420
#define DATE_ADD_SYMBOL      421
#define DATE_SUB_INTERVAL_SYMBOL      422
#define DATE_SUB_SYMBOL      423
#define DAYOFMONTH_SYMBOL      424
#define DAY_HOUR_SYMBOL      425
#define DAY_MICROSECOND_SYMBOL      426
#define DAY_MINUTE_SYMBOL      427
#define DAY_SECOND_SYMBOL      428
#define DECIMAL_NUM_SYMBOL      429
#define DECIMAL_SYMBOL      430
#define DECLARE_SYMBOL      431
#define DEC_SYMBOL      432
#define DEFAULT_SYMBOL      433
#define DELAYED_SYMBOL      434
#define DELETE_SYMBOL      435
#define DESCRIBE_SYMBOL      436
#define DESC_SYMBOL      437
#define DETERMINISTIC_SYMBOL      438
#define DISTINCTROW_SYMBOL      439
#define DISTINCT_SYMBOL      440
#define DROP_SYMBOL      441
#define DUAL_SYMBOL      442
#define EACH_SYMBOL      443
#define ELSEIF_SYMBOL      444
#define ELSE_SYMBOL      445
#define ENCLOSED_SYMBOL      446
#define END_OF_INPUT_SYMBOL      447
#define ESCAPED_SYMBOL      448
#define EXCHANGE_SYMBOL      449
#define EXISTS_SYMBOL      450
#define EXIT_SYMBOL      451
#define EXPIRE_SYMBOL      452
#define EXPLAIN_SYMBOL      453
#define EXTRACT_SYMBOL      454
#define FALSE_SYMBOL      455
#define FETCH_SYMBOL      456
#define FIELDS_SYMBOL      457
#define FLOAT4_SYMBOL      458
#define FLOAT8_SYMBOL      459
#define FLOAT_SYMBOL      460
#define FORCE_SYMBOL      461
#define FOREIGN_SYMBOL      462
#define FOR_SYMBOL      463
#define FRAC_SECOND_SYMBOL      464
#define FROM_SYMBOL      465
#define FULLTEXT_SYMBOL      466
#define GENERATED_SYMBOL      467
#define GET_SYMBOL      468
#define GRANT_SYMBOL      469
#define GROUP_CONCAT_SYMBOL      470
#define GROUP_SYMBOL      471
#define HAVING_SYMBOL      472
#define HIGH_PRIORITY_SYMBOL      473
#define HOUR_MICROSECOND_SYMBOL      474
#define HOUR_MINUTE_SYMBOL      475
#define HOUR_SECOND_SYMBOL      476
#define IF_SYMBOL      477
#define IGNORE_SYMBOL      478
#define INDEX_SYMBOL      479
#define INFILE_SYMBOL      480
#define INNER_SYMBOL      481
#define INOUT_SYMBOL      482
#define INSENSITIVE_SYMBOL      483
#define INSERT_SYMBOL      484
#define INT1_SYMBOL      485
#define INT2_SYMBOL      486
#define INT3_SYMBOL      487
#define INT4_SYMBOL      488
#define INT8_SYMBOL      489
#define INTEGER_SYMBOL      490
#define INTERVAL_SYMBOL      491
#define INTO_SYMBOL      492
#define INT_SYMBOL      493
#define IN_SYMBOL      494
#define IO_AFTER_GTIDS_SYMBOL      495
#define IO_BEFORE_GTIDS_SYMBOL      496
#define IO_THREAD_SYMBOL      497
#define IS_SYMBOL      498
#define ITERATE_SYMBOL      499
#define JOIN_SYMBOL      500
#define JSON_SEPARATOR_SYMBOL      501
#define KEYS_SYMBOL      502
#define KEY_SYMBOL      503
#define KILL_SYMBOL      504
#define LEADING_SYMBOL      505
#define LEAVE_SYMBOL      506
#define LEFT_SYMBOL      507
#define LIKE_SYMBOL      508
#define LIMIT_SYMBOL      509
#define LINEAR_SYMBOL      510
#define LINES_SYMBOL      511
#define LOAD_SYMBOL      512
#define LOCALTIMESTAMP_SYMBOL      513
#define LOCALTIME_SYMBOL      514
#define LOCATOR_SYMBOL      515
#define LOCK_SYMBOL      516
#define LONGBLOB_SYMBOL      517
#define LONGTEXT_SYMBOL      518
#define LONG_NUM_SYMBOL      519
#define LONG_SYMBOL      520
#define LOOP_SYMBOL      521
#define LOW_PRIORITY_SYMBOL      522
#define MASTER_BIND_SYMBOL      523
#define MASTER_SSL_VERIFY_SERVER_CERT_SYMBOL      524
#define MATCH_SYMBOL      525
#define MAXVALUE_SYMBOL      526
#define MAX_SYMBOL      527
#define MEDIUMBLOB_SYMBOL      528
#define MEDIUMINT_SYMBOL      529
#define MEDIUMTEXT_SYMBOL      530
#define MIDDLEINT_SYMBOL      531
#define MID_SYMBOL      532
#define MINUTE_MICROSECOND_SYMBOL      533
#define MINUTE_SECOND_SYMBOL      534
#define MIN_SYMBOL      535
#define ML_COMMENT_END      536
#define ML_COMMENT_HEAD      537
#define MODIFIES_SYMBOL      538
#define MOD_SYMBOL      539
#define NATURAL_SYMBOL      540
#define NCHAR_STRING_SYMBOL      541
#define NCHAR_TEXT      542
#define NDB_SYMBOL      543
#define NEG_SYMBOL      544
#define NONBLOCKING_SYMBOL      545
#define NOT2_SYMBOL      546
#define NOT_SYMBOL      547
#define NOW_SYMBOL      548
#define NO_WRITE_TO_BINLOG_SYMBOL      549
#define NULL2_SYMBOL      550
#define NULL_SYMBOL      551
#define NUMERIC_SYMBOL      552
#define OFFLINE_SYMBOL      553
#define ONLINE_SYMBOL      554
#define ONLY_SYMBOL      555
#define ON_SYMBOL      556
#define OPEN_CURLY_SYMBOL      557
#define OPEN_PAR_SYMBOL      558
#define OPTIMIZER_COSTS_SYMBOL      559
#define OPTIMIZE_SYMBOL      560
#define OPTIONALLY_SYMBOL      561
#define OPTION_SYMBOL      562
#define ORDER_SYMBOL      563
#define OR_SYMBOL      564
#define OUTER_SYMBOL      565
#define OUTFILE_SYMBOL      566
#define OUT_SYMBOL      567
#define PARAM_MARKER      568
#define POSITION_SYMBOL      569
#define POUND_COMMENT      570
#define PRECISION_SYMBOL      571
#define PRIMARY_SYMBOL      572
#define PROCEDURE_SYMBOL      573
#define PURGE_SYMBOL      574
#define RANGE_SYMBOL      575
#define READS_SYMBOL      576
#define READ_SYMBOL      577
#define READ_WRITE_SYMBOL      578
#define REAL_SYMBOL      579
#define REFERENCES_SYMBOL      580
#define REGEXP_SYMBOL      581
#define RELEASE_SYMBOL      582
#define RENAME_SYMBOL      583
#define REPEAT_SYMBOL      584
#define REPLACE_SYMBOL      585
#define REQUIRE_SYMBOL      586
#define RESIGNAL_SYMBOL      587
#define RESTRICT_SYMBOL      588
#define RETURN_SYMBOL      589
#define REVOKE_SYMBOL      590
#define RIGHT_SYMBOL      591
#define RLIKE_SYMBOL      592
#define SCHEMAS_SYMBOL      593
#define SCHEMA_SYMBOL      594
#define SECOND_MICROSECOND_SYMBOL      595
#define SELECT_SYMBOL      596
#define SEMICOLON_SYMBOL      597
#define SENSITIVE_SYMBOL      598
#define SEPARATOR_SYMBOL      599
#define SERVER_OPTIONS_SYMBOL      600
#define SESSION_USER_SYMBOL      601
#define SET_SYMBOL      602
#define SET_VAR_SYMBOL      603
#define SHOW_SYMBOL      604
#define SIGNAL_SYMBOL      605
#define SINGLE_QUOTED_TEXT      606
#define SMALLINT_SYMBOL      607
#define SPATIAL_SYMBOL      608
#define SPECIFIC_SYMBOL      609
#define SQLEXCEPTION_SYMBOL      610
#define SQLSTATE_SYMBOL      611
#define SQLWARNING_SYMBOL      612
#define SQL_BIG_RESULT_SYMBOL      613
#define SQL_CALC_FOUND_ROWS_SYMBOL      614
#define SQL_SMALL_RESULT_SYMBOL      615
#define SQL_SYMBOL      616
#define SQL_TSI_DAY_SYMBOL      617
#define SQL_TSI_FRAC_SECOND_SYMBOL      618
#define SQL_TSI_HOUR_SYMBOL      619
#define SQL_TSI_MINUTE_SYMBOL      620
#define SQL_TSI_MONTH_SYMBOL      621
#define SQL_TSI_QUARTER_SYMBOL      622
#define SQL_TSI_SECOND_SYMBOL      623
#define SQL_TSI_WEEK_SYMBOL      624
#define SQL_TSI_YEAR_SYMBOL      625
#define SSL_SYMBOL      626
#define STARTING_SYMBOL      627
#define STDDEV_POP_SYMBOL      628
#define STDDEV_SAMP_SYMBOL      629
#define STDDEV_SYMBOL      630
#define STD_SYMBOL      631
#define STORED_SYMBOL      632
#define STRAIGHT_JOIN_SYMBOL      633
#define SUBSTRING_SYMBOL      634
#define SUBSTR_SYMBOL      635
#define SUM_SYMBOL      636
#define SYSDATE_SYMBOL      637
#define SYSTEM_USER_SYMBOL      638
#define TABLE_REF_PRIORITY_SYMBOL      639
#define TABLE_SYMBOL      640
#define TERMINATED_SYMBOL      641
#define THEN_SYMBOL      642
#define TINYBLOB_SYMBOL      643
#define TINYINT_SYMBOL      644
#define TINYTEXT_SYMBOL      645
#define TO_SYMBOL      646
#define TRAILING_SYMBOL      647
#define TRIGGER_SYMBOL      648
#define TRIM_SYMBOL      649
#define TRUE_SYMBOL      650
#define UNDERLINE_SYMBOL      651
#define UNDO_SYMBOL      652
#define UNION_SYMBOL      653
#define UNIQUE_SYMBOL      654
#define UNLOCK_SYMBOL      655
#define UNSIGNED_SYMBOL      656
#define UPDATE_SYMBOL      657
#define USAGE_SYMBOL      658
#define USE_SYMBOL      659
#define USING_SYMBOL      660
#define UTC_DATE_SYMBOL      661
#define UTC_TIMESTAMP_SYMBOL      662
#define UTC_TIME_SYMBOL      663
#define VALIDATION_SYMBOL      664
#define VALUES_SYMBOL      665
#define VARBINARY_SYMBOL      666
#define VARCHARACTER_SYMBOL      667
#define VARCHAR_SYMBOL      668
#define VARIANCE_SYMBOL      669
#define VARYING_SYMBOL      670
#define VAR_POP_SYMBOL      671
#define VAR_SAMP_SYMBOL      672
#define VIRTUAL_SYMBOL      673
#define WHEN_SYMBOL      674
#define WHERE_SYMBOL      675
#define WHILE_SYMBOL      676
#define WITHOUT_SYMBOL      677
#define WITH_CUBE_SYMBOL      678
#define WITH_ROLLUP_SYMBOL      679
#define WITH_SYMBOL      680
#define WRITE_SYMBOL      681
#define XOR_SYMBOL      682
#define YEAR_MONTH_SYMBOL      683
#define ZEROFILL_SYMBOL      684
#define ALTER_TABLE_ITEM_TOKEN      685
#define ASSIGN_OPERATOR      686
#define AS_SYMBOL      687
#define AT_AT_SIGN_SYMBOL      688
#define AT_SIGN_SYMBOL      689
#define AT_TEXT_SUFFIX      690
#define BACK_TICK      691
#define BACK_TICK_QUOTED_ID      692
#define BIN_NUMBER      693
#define BITWISE_AND_OPERATOR      694
#define BITWISE_NOT_OPERATOR      695
#define BITWISE_OR_OPERATOR      696
#define BITWISE_XOR_OPERATOR      697
#define BIT_AND_SYMBOL      698
#define BIT_OR_SYMBOL      699
#define BIT_XOR_SYMBOL      700
#define CHANGE_MASTER_OPTIONS_TOKEN      701
#define CLOSE_CURLY_SYMBOL      702
#define CLOSE_PAR_SYMBOL      703
#define COLON_SYMBOL      704
#define COLUMN_ASSIGNMENT_LIST_TOKEN      705
#define COLUMN_INTERNAL_REF_TOKEN      706
#define COLUMN_NAME_TOKEN      707
#define COLUMN_REF_TOKEN      708
#define COMMA_SYMBOL      709
#define CONCAT_PIPES_SYMBOL      710
#define CREATE_ITEM_TOKEN      711
#define CURRENT_DATE_SYMBOL      712
#define CURRENT_TIME_SYMBOL      713
#define DATA_TYPE_TOKEN      714
#define DECIMAL_NUMBER      715
#define DIGIT      716
#define DIGITS      717
#define DIV_OPERATOR      718
#define DIV_SYMBOL      719
#define DOT_IDENTIFIER      720
#define DOT_SYMBOL      721
#define DOUBLE_DASH      722
#define DOUBLE_QUOTE      723
#define DOUBLE_QUOTED_TEXT      724
#define DOUBLE_SYMBOL      725
#define ENGINE_REF_TOKEN      726
#define EQUAL_OPERATOR      727
#define ESCAPE_OPERATOR      728
#define EVENT_NAME_TOKEN      729
#define EVENT_REF_TOKEN      730
#define EXPRESSION_TOKEN      731
#define FLOAT_NUMBER      732
#define FUNCTION_CALL_TOKEN      733
#define FUNCTION_NAME_TOKEN      734
#define FUNCTION_REF_TOKEN      735
#define GREATER_OR_EQUAL_OPERATOR      736
#define GREATER_THAN_OPERATOR      737
#define HEXDIGIT      738
#define HEX_NUMBER      739
#define IDENTIFIER      740
#define INDEX_HINT_LIST_TOKEN      741
#define INDEX_NAME_TOKEN      742
#define INDEX_REF_TOKEN      743
#define INT_NUMBER      744
#define INVALID_INPUT      745
#define JOIN_EXPR_TOKEN      746
#define JSON_UNQUOTED_SEPARATOR_SYMBOL      747
#define KEY_CACHE_LIST_TOKEN      748
#define KEY_CACHE_PARTITION_TOKEN      749
#define LABEL_TOKEN      750
#define LESS_OR_EQUAL_OPERATOR      751
#define LESS_THAN_OPERATOR      752
#define LETTER_WHEN_UNQUOTED      753
#define LETTER_WHEN_UNQUOTED_NO_DIGIT      754
#define LINEBREAK      755
#define LOGFILE_GROUP_NAME_TOKEN      756
#define LOGFILE_GROUP_OPTIONS_TOKEN      757
#define LOGFILE_GROUP_REF_TOKEN      758
#define LOGICAL_AND_OPERATOR      759
#define LOGICAL_NOT_OPERATOR      760
#define LOGICAL_OR_OPERATOR      761
#define LONG_NUMBER      762
#define MINUS_OPERATOR      763
#define MOD_OPERATOR      764
#define MULTILINE_COMMENT      765
#define MULT_OPERATOR      766
#define NOT_EQUAL2_OPERATOR      767
#define NOT_EQUAL_OPERATOR      768
#define NULL_SAFE_EQUAL_OPERATOR      769
#define NUMBER      770
#define PAR_EXPRESSION_TOKEN      771
#define PLUS_OPERATOR      772
#define PRIVILEGE_TARGET_TOKEN      773
#define PROCEDURE_NAME_TOKEN      774
#define PROCEDURE_REF_TOKEN      775
#define ROUTINE_ALTER_OPTIONS      776
#define ROUTINE_CREATE_OPTIONS      777
#define RUNTIME_FUNCTION_TOKEN      778
#define SCHEMA_NAME_TOKEN      779
#define SCHEMA_REF_TOKEN      780
#define SELECT_EXPR_TOKEN      781
#define SERVER_NAME_TOKEN      782
#define SERVER_REF_TOKEN      783
#define SHIFT_LEFT_OPERATOR      784
#define SHIFT_RIGHT_OPERATOR      785
#define SIMPLE_IDENTIFIER      786
#define SINGLE_QUOTE      787
#define SLAVE_THREAD_OPTIONS_TOKEN      788
#define SOME_SYMBOL      789
#define STRING_NO_LINEBREAK_TOKEN      790
#define STRING_TOKEN      791
#define SUBQUERY_TOKEN      792
#define TABLESPACE_NAME_TOKEN      793
#define TABLESPACE_OPTIONS_TOKEN      794
#define TABLESPACE_REF_TOKEN      795
#define TABLE_NAME_TOKEN      796
#define TABLE_REF_TOKEN      797
#define TRIGGER_NAME_TOKEN      798
#define TRIGGER_REF_TOKEN      799
#define UDF_CALL_TOKEN      800
#define UDF_NAME_TOKEN      801
#define ULONGLONG_NUMBER      802
#define UNDERSCORE_CHARSET      803
#define VERSION_COMMENT      804
#define VERSION_COMMENT_END      805
#define VERSION_COMMENT_INTRODUCER      806
#define VERSION_COMMENT_START_TOKEN      807
#define VERSION_COMMENT_TAIL      808
#define VIEW_NAME_TOKEN      809
#define VIEW_REF_TOKEN      810
#define WHITESPACE      811
#define XA_ID_TOKEN      812
#ifdef	EOF
#undef	EOF
#define	EOF	ANTLR3_TOKEN_EOF
#endif

#ifndef TOKENSOURCE
#define TOKENSOURCE(lxr) lxr->pLexer->rec->state->tokSource
#endif

/* End of token definitions for MySQLLexer
 * =============================================================================
 */
/** } */

#ifdef __cplusplus
}
#endif

#endif

/* END - Note:Keep extra line feed to satisfy UNIX systems */