@plurnk/plurnk-mimetypes-text-postgresql 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +15 -0
  3. package/dist/TextPostgresql.d.ts +7 -0
  4. package/dist/TextPostgresql.d.ts.map +1 -0
  5. package/dist/TextPostgresql.js +198 -0
  6. package/dist/TextPostgresql.js.map +1 -0
  7. package/dist/generated/PostgreSQLLexer.d.ts +640 -0
  8. package/dist/generated/PostgreSQLLexer.d.ts.map +1 -0
  9. package/dist/generated/PostgreSQLLexer.js +3359 -0
  10. package/dist/generated/PostgreSQLLexer.js.map +1 -0
  11. package/dist/generated/PostgreSQLLexerBase.d.ts +33 -0
  12. package/dist/generated/PostgreSQLLexerBase.d.ts.map +1 -0
  13. package/dist/generated/PostgreSQLLexerBase.js +92 -0
  14. package/dist/generated/PostgreSQLLexerBase.js.map +1 -0
  15. package/dist/generated/PostgreSQLParser.d.ts +10568 -0
  16. package/dist/generated/PostgreSQLParser.d.ts.map +1 -0
  17. package/dist/generated/PostgreSQLParser.js +93755 -0
  18. package/dist/generated/PostgreSQLParser.js.map +1 -0
  19. package/dist/generated/PostgreSQLParserBase.d.ts +9 -0
  20. package/dist/generated/PostgreSQLParserBase.d.ts.map +1 -0
  21. package/dist/generated/PostgreSQLParserBase.js +106 -0
  22. package/dist/generated/PostgreSQLParserBase.js.map +1 -0
  23. package/dist/generated/PostgreSQLParserVisitor.d.ts +5086 -0
  24. package/dist/generated/PostgreSQLParserVisitor.d.ts.map +1 -0
  25. package/dist/generated/PostgreSQLParserVisitor.js +4362 -0
  26. package/dist/generated/PostgreSQLParserVisitor.js.map +1 -0
  27. package/dist/index.d.ts +3 -0
  28. package/dist/index.d.ts.map +1 -0
  29. package/dist/index.js +3 -0
  30. package/dist/index.js.map +1 -0
  31. package/grammar/PostgreSQLLexer.g4 +1476 -0
  32. package/grammar/PostgreSQLParser.g4 +5469 -0
  33. package/package.json +64 -0
@@ -0,0 +1,640 @@
1
+ import * as antlr from "antlr4ng";
2
+ import PostgreSQLLexerBase from "./PostgreSQLLexerBase.ts";
3
+ export declare class PostgreSQLLexer extends PostgreSQLLexerBase {
4
+ static readonly Dollar = 1;
5
+ static readonly OPEN_PAREN = 2;
6
+ static readonly CLOSE_PAREN = 3;
7
+ static readonly OPEN_BRACKET = 4;
8
+ static readonly CLOSE_BRACKET = 5;
9
+ static readonly COMMA = 6;
10
+ static readonly SEMI = 7;
11
+ static readonly COLON = 8;
12
+ static readonly STAR = 9;
13
+ static readonly EQUAL = 10;
14
+ static readonly DOT = 11;
15
+ static readonly PLUS = 12;
16
+ static readonly MINUS = 13;
17
+ static readonly SLASH = 14;
18
+ static readonly CARET = 15;
19
+ static readonly LT = 16;
20
+ static readonly GT = 17;
21
+ static readonly LESS_LESS = 18;
22
+ static readonly GREATER_GREATER = 19;
23
+ static readonly COLON_EQUALS = 20;
24
+ static readonly LESS_EQUALS = 21;
25
+ static readonly EQUALS_GREATER = 22;
26
+ static readonly GREATER_EQUALS = 23;
27
+ static readonly DOT_DOT = 24;
28
+ static readonly NOT_EQUALS = 25;
29
+ static readonly TYPECAST = 26;
30
+ static readonly PERCENT = 27;
31
+ static readonly PARAM = 28;
32
+ static readonly Operator = 29;
33
+ static readonly JSON = 30;
34
+ static readonly JSON_ARRAY = 31;
35
+ static readonly JSON_ARRAYAGG = 32;
36
+ static readonly JSON_EXISTS = 33;
37
+ static readonly JSON_OBJECT = 34;
38
+ static readonly JSON_OBJECTAGG = 35;
39
+ static readonly JSON_QUERY = 36;
40
+ static readonly JSON_SCALAR = 37;
41
+ static readonly JSON_SERIALIZE = 38;
42
+ static readonly JSON_TABLE = 39;
43
+ static readonly JSON_VALUE = 40;
44
+ static readonly MERGE_ACTION = 41;
45
+ static readonly SYSTEM_USER = 42;
46
+ static readonly ABSENT = 43;
47
+ static readonly ASENSITIVE = 44;
48
+ static readonly ATOMIC = 45;
49
+ static readonly BREADTH = 46;
50
+ static readonly COMPRESSION = 47;
51
+ static readonly CONDITIONAL = 48;
52
+ static readonly DEPTH = 49;
53
+ static readonly EMPTY_P = 50;
54
+ static readonly FINALIZE = 51;
55
+ static readonly INDENT = 52;
56
+ static readonly KEEP = 53;
57
+ static readonly KEYS = 54;
58
+ static readonly NESTED = 55;
59
+ static readonly OMIT = 56;
60
+ static readonly PARAMETER = 57;
61
+ static readonly PATH = 58;
62
+ static readonly PLAN = 59;
63
+ static readonly QUOTES = 60;
64
+ static readonly SCALAR = 61;
65
+ static readonly SOURCE = 62;
66
+ static readonly STRING_P = 63;
67
+ static readonly TARGET = 64;
68
+ static readonly UNCONDITIONAL = 65;
69
+ static readonly PERIOD = 66;
70
+ static readonly FORMAT_LA = 67;
71
+ static readonly ALL = 68;
72
+ static readonly ANALYSE = 69;
73
+ static readonly ANALYZE = 70;
74
+ static readonly AND = 71;
75
+ static readonly ANY = 72;
76
+ static readonly ARRAY = 73;
77
+ static readonly AS = 74;
78
+ static readonly ASC = 75;
79
+ static readonly ASYMMETRIC = 76;
80
+ static readonly BOTH = 77;
81
+ static readonly CASE = 78;
82
+ static readonly CAST = 79;
83
+ static readonly CHECK = 80;
84
+ static readonly COLLATE = 81;
85
+ static readonly COLUMN = 82;
86
+ static readonly CONSTRAINT = 83;
87
+ static readonly CREATE = 84;
88
+ static readonly CURRENT_CATALOG = 85;
89
+ static readonly CURRENT_DATE = 86;
90
+ static readonly CURRENT_ROLE = 87;
91
+ static readonly CURRENT_TIME = 88;
92
+ static readonly CURRENT_TIMESTAMP = 89;
93
+ static readonly CURRENT_USER = 90;
94
+ static readonly DEFAULT = 91;
95
+ static readonly DEFERRABLE = 92;
96
+ static readonly DESC = 93;
97
+ static readonly DISTINCT = 94;
98
+ static readonly DO = 95;
99
+ static readonly ELSE = 96;
100
+ static readonly EXCEPT = 97;
101
+ static readonly FALSE_P = 98;
102
+ static readonly FETCH = 99;
103
+ static readonly FOR = 100;
104
+ static readonly FOREIGN = 101;
105
+ static readonly FROM = 102;
106
+ static readonly GRANT = 103;
107
+ static readonly GROUP_P = 104;
108
+ static readonly HAVING = 105;
109
+ static readonly IN_P = 106;
110
+ static readonly INITIALLY = 107;
111
+ static readonly INTERSECT = 108;
112
+ static readonly INTO = 109;
113
+ static readonly LATERAL_P = 110;
114
+ static readonly LEADING = 111;
115
+ static readonly LIMIT = 112;
116
+ static readonly LOCALTIME = 113;
117
+ static readonly LOCALTIMESTAMP = 114;
118
+ static readonly NOT = 115;
119
+ static readonly NULL_P = 116;
120
+ static readonly OFFSET = 117;
121
+ static readonly ON = 118;
122
+ static readonly ONLY = 119;
123
+ static readonly OR = 120;
124
+ static readonly ORDER = 121;
125
+ static readonly PLACING = 122;
126
+ static readonly PRIMARY = 123;
127
+ static readonly REFERENCES = 124;
128
+ static readonly RETURNING = 125;
129
+ static readonly SELECT = 126;
130
+ static readonly SESSION_USER = 127;
131
+ static readonly SOME = 128;
132
+ static readonly SYMMETRIC = 129;
133
+ static readonly TABLE = 130;
134
+ static readonly THEN = 131;
135
+ static readonly TO = 132;
136
+ static readonly TRAILING = 133;
137
+ static readonly TRUE_P = 134;
138
+ static readonly UNION = 135;
139
+ static readonly UNIQUE = 136;
140
+ static readonly USER = 137;
141
+ static readonly USING = 138;
142
+ static readonly VARIADIC = 139;
143
+ static readonly WHEN = 140;
144
+ static readonly WHERE = 141;
145
+ static readonly WINDOW = 142;
146
+ static readonly WITH = 143;
147
+ static readonly AUTHORIZATION = 144;
148
+ static readonly BINARY = 145;
149
+ static readonly COLLATION = 146;
150
+ static readonly CONCURRENTLY = 147;
151
+ static readonly CROSS = 148;
152
+ static readonly CURRENT_SCHEMA = 149;
153
+ static readonly FREEZE = 150;
154
+ static readonly FULL = 151;
155
+ static readonly ILIKE = 152;
156
+ static readonly INNER_P = 153;
157
+ static readonly IS = 154;
158
+ static readonly ISNULL = 155;
159
+ static readonly JOIN = 156;
160
+ static readonly LEFT = 157;
161
+ static readonly LIKE = 158;
162
+ static readonly NATURAL = 159;
163
+ static readonly NOTNULL = 160;
164
+ static readonly OUTER_P = 161;
165
+ static readonly OVER = 162;
166
+ static readonly OVERLAPS = 163;
167
+ static readonly RIGHT = 164;
168
+ static readonly SIMILAR = 165;
169
+ static readonly VERBOSE = 166;
170
+ static readonly ABORT_P = 167;
171
+ static readonly ABSOLUTE_P = 168;
172
+ static readonly ACCESS = 169;
173
+ static readonly ACTION = 170;
174
+ static readonly ADD_P = 171;
175
+ static readonly ADMIN = 172;
176
+ static readonly AFTER = 173;
177
+ static readonly AGGREGATE = 174;
178
+ static readonly ALSO = 175;
179
+ static readonly ALTER = 176;
180
+ static readonly ALWAYS = 177;
181
+ static readonly ASSERTION = 178;
182
+ static readonly ASSIGNMENT = 179;
183
+ static readonly AT = 180;
184
+ static readonly ATTRIBUTE = 181;
185
+ static readonly BACKWARD = 182;
186
+ static readonly BEFORE = 183;
187
+ static readonly BEGIN_P = 184;
188
+ static readonly BY = 185;
189
+ static readonly CACHE = 186;
190
+ static readonly CALLED = 187;
191
+ static readonly CASCADE = 188;
192
+ static readonly CASCADED = 189;
193
+ static readonly CATALOG = 190;
194
+ static readonly CHAIN = 191;
195
+ static readonly CHARACTERISTICS = 192;
196
+ static readonly CHECKPOINT = 193;
197
+ static readonly CLASS = 194;
198
+ static readonly CLOSE = 195;
199
+ static readonly CLUSTER = 196;
200
+ static readonly COMMENT = 197;
201
+ static readonly COMMENTS = 198;
202
+ static readonly COMMIT = 199;
203
+ static readonly COMMITTED = 200;
204
+ static readonly CONFIGURATION = 201;
205
+ static readonly CONNECTION = 202;
206
+ static readonly CONSTRAINTS = 203;
207
+ static readonly CONTENT_P = 204;
208
+ static readonly CONTINUE_P = 205;
209
+ static readonly CONVERSION_P = 206;
210
+ static readonly COPY = 207;
211
+ static readonly COST = 208;
212
+ static readonly CSV = 209;
213
+ static readonly CURSOR = 210;
214
+ static readonly CYCLE = 211;
215
+ static readonly DATA_P = 212;
216
+ static readonly DATABASE = 213;
217
+ static readonly DAY_P = 214;
218
+ static readonly DEALLOCATE = 215;
219
+ static readonly DECLARE = 216;
220
+ static readonly DEFAULTS = 217;
221
+ static readonly DEFERRED = 218;
222
+ static readonly DEFINER = 219;
223
+ static readonly DELETE_P = 220;
224
+ static readonly DELIMITER = 221;
225
+ static readonly DELIMITERS = 222;
226
+ static readonly DICTIONARY = 223;
227
+ static readonly DISABLE_P = 224;
228
+ static readonly DISCARD = 225;
229
+ static readonly DOCUMENT_P = 226;
230
+ static readonly DOMAIN_P = 227;
231
+ static readonly DOUBLE_P = 228;
232
+ static readonly DROP = 229;
233
+ static readonly EACH = 230;
234
+ static readonly ENABLE_P = 231;
235
+ static readonly ENCODING = 232;
236
+ static readonly ENCRYPTED = 233;
237
+ static readonly ENUM_P = 234;
238
+ static readonly ESCAPE = 235;
239
+ static readonly EVENT = 236;
240
+ static readonly EXCLUDE = 237;
241
+ static readonly EXCLUDING = 238;
242
+ static readonly EXCLUSIVE = 239;
243
+ static readonly EXECUTE = 240;
244
+ static readonly EXPLAIN = 241;
245
+ static readonly EXTENSION = 242;
246
+ static readonly EXTERNAL = 243;
247
+ static readonly FAMILY = 244;
248
+ static readonly FIRST_P = 245;
249
+ static readonly FOLLOWING = 246;
250
+ static readonly FORCE = 247;
251
+ static readonly FORWARD = 248;
252
+ static readonly FUNCTION = 249;
253
+ static readonly FUNCTIONS = 250;
254
+ static readonly GLOBAL = 251;
255
+ static readonly GRANTED = 252;
256
+ static readonly HANDLER = 253;
257
+ static readonly HEADER_P = 254;
258
+ static readonly HOLD = 255;
259
+ static readonly HOUR_P = 256;
260
+ static readonly IDENTITY_P = 257;
261
+ static readonly IF_P = 258;
262
+ static readonly IMMEDIATE = 259;
263
+ static readonly IMMUTABLE = 260;
264
+ static readonly IMPLICIT_P = 261;
265
+ static readonly INCLUDING = 262;
266
+ static readonly INCREMENT = 263;
267
+ static readonly INDEX = 264;
268
+ static readonly INDEXES = 265;
269
+ static readonly INHERIT = 266;
270
+ static readonly INHERITS = 267;
271
+ static readonly INLINE_P = 268;
272
+ static readonly INSENSITIVE = 269;
273
+ static readonly INSERT = 270;
274
+ static readonly INSTEAD = 271;
275
+ static readonly INVOKER = 272;
276
+ static readonly ISOLATION = 273;
277
+ static readonly KEY = 274;
278
+ static readonly LABEL = 275;
279
+ static readonly LANGUAGE = 276;
280
+ static readonly LARGE_P = 277;
281
+ static readonly LAST_P = 278;
282
+ static readonly LEAKPROOF = 279;
283
+ static readonly LEVEL = 280;
284
+ static readonly LISTEN = 281;
285
+ static readonly LOAD = 282;
286
+ static readonly LOCAL = 283;
287
+ static readonly LOCATION = 284;
288
+ static readonly LOCK_P = 285;
289
+ static readonly MAPPING = 286;
290
+ static readonly MATCH = 287;
291
+ static readonly MATCHED = 288;
292
+ static readonly MATERIALIZED = 289;
293
+ static readonly MAXVALUE = 290;
294
+ static readonly MERGE = 291;
295
+ static readonly MINUTE_P = 292;
296
+ static readonly MINVALUE = 293;
297
+ static readonly MODE = 294;
298
+ static readonly MONTH_P = 295;
299
+ static readonly MOVE = 296;
300
+ static readonly NAME_P = 297;
301
+ static readonly NAMES = 298;
302
+ static readonly NEXT = 299;
303
+ static readonly NO = 300;
304
+ static readonly NOTHING = 301;
305
+ static readonly NOTIFY = 302;
306
+ static readonly NOWAIT = 303;
307
+ static readonly NULLS_P = 304;
308
+ static readonly OBJECT_P = 305;
309
+ static readonly OF = 306;
310
+ static readonly OFF = 307;
311
+ static readonly OIDS = 308;
312
+ static readonly OPERATOR = 309;
313
+ static readonly OPTION = 310;
314
+ static readonly OPTIONS = 311;
315
+ static readonly OWNED = 312;
316
+ static readonly OWNER = 313;
317
+ static readonly PARSER = 314;
318
+ static readonly PARTIAL = 315;
319
+ static readonly PARTITION = 316;
320
+ static readonly PASSING = 317;
321
+ static readonly PASSWORD = 318;
322
+ static readonly PLANS = 319;
323
+ static readonly PRECEDING = 320;
324
+ static readonly PREPARE = 321;
325
+ static readonly PREPARED = 322;
326
+ static readonly PRESERVE = 323;
327
+ static readonly PRIOR = 324;
328
+ static readonly PRIVILEGES = 325;
329
+ static readonly PROCEDURAL = 326;
330
+ static readonly PROCEDURE = 327;
331
+ static readonly PROGRAM = 328;
332
+ static readonly QUOTE = 329;
333
+ static readonly RANGE = 330;
334
+ static readonly READ = 331;
335
+ static readonly REASSIGN = 332;
336
+ static readonly RECHECK = 333;
337
+ static readonly RECURSIVE = 334;
338
+ static readonly REF = 335;
339
+ static readonly REFRESH = 336;
340
+ static readonly REINDEX = 337;
341
+ static readonly RELATIVE_P = 338;
342
+ static readonly RELEASE = 339;
343
+ static readonly RENAME = 340;
344
+ static readonly REPEATABLE = 341;
345
+ static readonly REPLACE = 342;
346
+ static readonly REPLICA = 343;
347
+ static readonly RESET = 344;
348
+ static readonly RESTART = 345;
349
+ static readonly RESTRICT = 346;
350
+ static readonly RETURNS = 347;
351
+ static readonly REVOKE = 348;
352
+ static readonly ROLE = 349;
353
+ static readonly ROLLBACK = 350;
354
+ static readonly ROWS = 351;
355
+ static readonly RULE = 352;
356
+ static readonly SAVEPOINT = 353;
357
+ static readonly SCHEMA = 354;
358
+ static readonly SCROLL = 355;
359
+ static readonly SEARCH = 356;
360
+ static readonly SECOND_P = 357;
361
+ static readonly SECURITY = 358;
362
+ static readonly SEQUENCE = 359;
363
+ static readonly SEQUENCES = 360;
364
+ static readonly SERIALIZABLE = 361;
365
+ static readonly SERVER = 362;
366
+ static readonly SESSION = 363;
367
+ static readonly SET = 364;
368
+ static readonly SHARE = 365;
369
+ static readonly SHOW = 366;
370
+ static readonly SIMPLE = 367;
371
+ static readonly SNAPSHOT = 368;
372
+ static readonly STABLE = 369;
373
+ static readonly STANDALONE_P = 370;
374
+ static readonly START = 371;
375
+ static readonly STATEMENT = 372;
376
+ static readonly STATISTICS = 373;
377
+ static readonly STDIN = 374;
378
+ static readonly STDOUT = 375;
379
+ static readonly STORAGE = 376;
380
+ static readonly STRICT_P = 377;
381
+ static readonly STRIP_P = 378;
382
+ static readonly SYSID = 379;
383
+ static readonly SYSTEM_P = 380;
384
+ static readonly TABLES = 381;
385
+ static readonly TABLESPACE = 382;
386
+ static readonly TEMP = 383;
387
+ static readonly TEMPLATE = 384;
388
+ static readonly TEMPORARY = 385;
389
+ static readonly TEXT_P = 386;
390
+ static readonly TRANSACTION = 387;
391
+ static readonly TRIGGER = 388;
392
+ static readonly TRUNCATE = 389;
393
+ static readonly TRUSTED = 390;
394
+ static readonly TYPE_P = 391;
395
+ static readonly TYPES_P = 392;
396
+ static readonly UNBOUNDED = 393;
397
+ static readonly UNCOMMITTED = 394;
398
+ static readonly UNENCRYPTED = 395;
399
+ static readonly UNKNOWN = 396;
400
+ static readonly UNLISTEN = 397;
401
+ static readonly UNLOGGED = 398;
402
+ static readonly UNTIL = 399;
403
+ static readonly UPDATE = 400;
404
+ static readonly VACUUM = 401;
405
+ static readonly VALID = 402;
406
+ static readonly VALIDATE = 403;
407
+ static readonly VALIDATOR = 404;
408
+ static readonly VARYING = 405;
409
+ static readonly VERSION_P = 406;
410
+ static readonly VIEW = 407;
411
+ static readonly VOLATILE = 408;
412
+ static readonly WHITESPACE_P = 409;
413
+ static readonly WITHOUT = 410;
414
+ static readonly WORK = 411;
415
+ static readonly WRAPPER = 412;
416
+ static readonly WRITE = 413;
417
+ static readonly XML_P = 414;
418
+ static readonly YEAR_P = 415;
419
+ static readonly YES_P = 416;
420
+ static readonly ZONE = 417;
421
+ static readonly BETWEEN = 418;
422
+ static readonly BIGINT = 419;
423
+ static readonly BIT = 420;
424
+ static readonly BOOLEAN_P = 421;
425
+ static readonly CHAR_P = 422;
426
+ static readonly CHARACTER = 423;
427
+ static readonly COALESCE = 424;
428
+ static readonly DEC = 425;
429
+ static readonly DECIMAL_P = 426;
430
+ static readonly EXISTS = 427;
431
+ static readonly EXTRACT = 428;
432
+ static readonly FLOAT_P = 429;
433
+ static readonly GREATEST = 430;
434
+ static readonly INOUT = 431;
435
+ static readonly INT_P = 432;
436
+ static readonly INTEGER = 433;
437
+ static readonly INTERVAL = 434;
438
+ static readonly LEAST = 435;
439
+ static readonly NATIONAL = 436;
440
+ static readonly NCHAR = 437;
441
+ static readonly NONE = 438;
442
+ static readonly NULLIF = 439;
443
+ static readonly NUMERIC = 440;
444
+ static readonly OVERLAY = 441;
445
+ static readonly POSITION = 442;
446
+ static readonly PRECISION = 443;
447
+ static readonly REAL = 444;
448
+ static readonly ROW = 445;
449
+ static readonly SETOF = 446;
450
+ static readonly SMALLINT = 447;
451
+ static readonly SUBSTRING = 448;
452
+ static readonly TIME = 449;
453
+ static readonly TIMESTAMP = 450;
454
+ static readonly TREAT = 451;
455
+ static readonly TRIM = 452;
456
+ static readonly VALUES = 453;
457
+ static readonly VARCHAR = 454;
458
+ static readonly XMLATTRIBUTES = 455;
459
+ static readonly XMLCOMMENT = 456;
460
+ static readonly XMLAGG = 457;
461
+ static readonly XML_IS_WELL_FORMED = 458;
462
+ static readonly XML_IS_WELL_FORMED_DOCUMENT = 459;
463
+ static readonly XML_IS_WELL_FORMED_CONTENT = 460;
464
+ static readonly XPATH = 461;
465
+ static readonly XPATH_EXISTS = 462;
466
+ static readonly XMLCONCAT = 463;
467
+ static readonly XMLELEMENT = 464;
468
+ static readonly XMLEXISTS = 465;
469
+ static readonly XMLFOREST = 466;
470
+ static readonly XMLPARSE = 467;
471
+ static readonly XMLPI = 468;
472
+ static readonly XMLROOT = 469;
473
+ static readonly XMLSERIALIZE = 470;
474
+ static readonly CALL = 471;
475
+ static readonly CURRENT_P = 472;
476
+ static readonly ATTACH = 473;
477
+ static readonly DETACH = 474;
478
+ static readonly EXPRESSION = 475;
479
+ static readonly GENERATED = 476;
480
+ static readonly LOGGED = 477;
481
+ static readonly STORED = 478;
482
+ static readonly INCLUDE = 479;
483
+ static readonly ROUTINE = 480;
484
+ static readonly TRANSFORM = 481;
485
+ static readonly IMPORT_P = 482;
486
+ static readonly POLICY = 483;
487
+ static readonly METHOD = 484;
488
+ static readonly REFERENCING = 485;
489
+ static readonly NEW = 486;
490
+ static readonly OLD = 487;
491
+ static readonly VALUE_P = 488;
492
+ static readonly SUBSCRIPTION = 489;
493
+ static readonly PUBLICATION = 490;
494
+ static readonly OUT_P = 491;
495
+ static readonly END_P = 492;
496
+ static readonly ROUTINES = 493;
497
+ static readonly SCHEMAS = 494;
498
+ static readonly PROCEDURES = 495;
499
+ static readonly INPUT_P = 496;
500
+ static readonly SUPPORT = 497;
501
+ static readonly PARALLEL = 498;
502
+ static readonly SQL_P = 499;
503
+ static readonly DEPENDS = 500;
504
+ static readonly OVERRIDING = 501;
505
+ static readonly CONFLICT = 502;
506
+ static readonly SKIP_P = 503;
507
+ static readonly LOCKED = 504;
508
+ static readonly TIES = 505;
509
+ static readonly ROLLUP = 506;
510
+ static readonly CUBE = 507;
511
+ static readonly GROUPING = 508;
512
+ static readonly SETS = 509;
513
+ static readonly TABLESAMPLE = 510;
514
+ static readonly ORDINALITY = 511;
515
+ static readonly XMLTABLE = 512;
516
+ static readonly COLUMNS = 513;
517
+ static readonly XMLNAMESPACES = 514;
518
+ static readonly ROWTYPE = 515;
519
+ static readonly NORMALIZED = 516;
520
+ static readonly WITHIN = 517;
521
+ static readonly FILTER = 518;
522
+ static readonly GROUPS = 519;
523
+ static readonly OTHERS = 520;
524
+ static readonly NFC = 521;
525
+ static readonly NFD = 522;
526
+ static readonly NFKC = 523;
527
+ static readonly NFKD = 524;
528
+ static readonly UESCAPE = 525;
529
+ static readonly VIEWS = 526;
530
+ static readonly NORMALIZE = 527;
531
+ static readonly DUMP = 528;
532
+ static readonly ERROR = 529;
533
+ static readonly USE_VARIABLE = 530;
534
+ static readonly USE_COLUMN = 531;
535
+ static readonly CONSTANT = 532;
536
+ static readonly PERFORM = 533;
537
+ static readonly GET = 534;
538
+ static readonly DIAGNOSTICS = 535;
539
+ static readonly STACKED = 536;
540
+ static readonly ELSIF = 537;
541
+ static readonly WHILE = 538;
542
+ static readonly FOREACH = 539;
543
+ static readonly SLICE = 540;
544
+ static readonly EXIT = 541;
545
+ static readonly RETURN = 542;
546
+ static readonly RAISE = 543;
547
+ static readonly SQLSTATE = 544;
548
+ static readonly DEBUG = 545;
549
+ static readonly INFO = 546;
550
+ static readonly NOTICE = 547;
551
+ static readonly WARNING = 548;
552
+ static readonly EXCEPTION = 549;
553
+ static readonly ASSERT = 550;
554
+ static readonly LOOP = 551;
555
+ static readonly OPEN = 552;
556
+ static readonly FORMAT = 553;
557
+ static readonly Identifier = 554;
558
+ static readonly QuotedIdentifier = 555;
559
+ static readonly UnterminatedQuotedIdentifier = 556;
560
+ static readonly InvalidQuotedIdentifier = 557;
561
+ static readonly InvalidUnterminatedQuotedIdentifier = 558;
562
+ static readonly UnicodeQuotedIdentifier = 559;
563
+ static readonly UnterminatedUnicodeQuotedIdentifier = 560;
564
+ static readonly InvalidUnicodeQuotedIdentifier = 561;
565
+ static readonly InvalidUnterminatedUnicodeQuotedIdentifier = 562;
566
+ static readonly StringConstant = 563;
567
+ static readonly UnterminatedStringConstant = 564;
568
+ static readonly UnicodeEscapeStringConstant = 565;
569
+ static readonly UnterminatedUnicodeEscapeStringConstant = 566;
570
+ static readonly BeginDollarStringConstant = 567;
571
+ static readonly BinaryStringConstant = 568;
572
+ static readonly UnterminatedBinaryStringConstant = 569;
573
+ static readonly InvalidBinaryStringConstant = 570;
574
+ static readonly InvalidUnterminatedBinaryStringConstant = 571;
575
+ static readonly HexadecimalStringConstant = 572;
576
+ static readonly UnterminatedHexadecimalStringConstant = 573;
577
+ static readonly InvalidHexadecimalStringConstant = 574;
578
+ static readonly InvalidUnterminatedHexadecimalStringConstant = 575;
579
+ static readonly Integral = 576;
580
+ static readonly BinaryIntegral = 577;
581
+ static readonly OctalIntegral = 578;
582
+ static readonly HexadecimalIntegral = 579;
583
+ static readonly NumericFail = 580;
584
+ static readonly Numeric = 581;
585
+ static readonly PLSQLVARIABLENAME = 582;
586
+ static readonly PLSQLIDENTIFIER = 583;
587
+ static readonly Whitespace = 584;
588
+ static readonly Newline = 585;
589
+ static readonly LineComment = 586;
590
+ static readonly BlockComment = 587;
591
+ static readonly UnterminatedBlockComment = 588;
592
+ static readonly ErrorCharacter = 589;
593
+ static readonly EscapeStringConstant = 590;
594
+ static readonly UnterminatedEscapeStringConstant = 591;
595
+ static readonly InvalidEscapeStringConstant = 592;
596
+ static readonly InvalidUnterminatedEscapeStringConstant = 593;
597
+ static readonly AfterEscapeStringConstantMode_NotContinued = 594;
598
+ static readonly AfterEscapeStringConstantWithNewlineMode_NotContinued = 595;
599
+ static readonly DollarText = 596;
600
+ static readonly EndDollarStringConstant = 597;
601
+ static readonly MetaCommand = 598;
602
+ static readonly AfterEscapeStringConstantWithNewlineMode_Continued = 599;
603
+ static readonly EscapeStringConstantMode = 1;
604
+ static readonly AfterEscapeStringConstantMode = 2;
605
+ static readonly AfterEscapeStringConstantWithNewlineMode = 3;
606
+ static readonly DollarQuotedStringMode = 4;
607
+ static readonly META = 5;
608
+ static readonly channelNames: string[];
609
+ static readonly literalNames: (string | null)[];
610
+ static readonly symbolicNames: (string | null)[];
611
+ static readonly modeNames: string[];
612
+ static readonly ruleNames: string[];
613
+ constructor(input: antlr.CharStream);
614
+ get grammarFileName(): string;
615
+ get literalNames(): (string | null)[];
616
+ get symbolicNames(): (string | null)[];
617
+ get ruleNames(): string[];
618
+ get serializedATN(): number[];
619
+ get channelNames(): string[];
620
+ get modeNames(): string[];
621
+ action(localContext: antlr.ParserRuleContext | null, ruleIndex: number, actionIndex: number): void;
622
+ private Operator_action;
623
+ private BeginDollarStringConstant_action;
624
+ private NumericFail_action;
625
+ private UnterminatedBlockComment_action;
626
+ private EndDollarStringConstant_action;
627
+ sempred(localContext: antlr.ParserRuleContext | null, ruleIndex: number, predIndex: number): boolean;
628
+ private Operator_sempred;
629
+ private OperatorEndingWithPlusMinus_sempred;
630
+ private IdentifierStartChar_sempred;
631
+ private EndDollarStringConstant_sempred;
632
+ private MetaSemi_sempred;
633
+ static readonly _serializedATN: number[];
634
+ private static __ATN;
635
+ static get _ATN(): antlr.ATN;
636
+ private static readonly vocabulary;
637
+ get vocabulary(): antlr.Vocabulary;
638
+ private static readonly decisionsToDFA;
639
+ }
640
+ //# sourceMappingURL=PostgreSQLLexer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PostgreSQLLexer.d.ts","sourceRoot":"","sources":["../../src/generated/PostgreSQLLexer.ts"],"names":[],"mappings":"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"}