@cubejs-backend/schema-compiler 0.36.0 → 0.36.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/adapter/BaseDimension.js +6 -1
- package/dist/src/adapter/BaseDimension.js.map +1 -1
- package/dist/src/adapter/BaseFilter.js +4 -0
- package/dist/src/adapter/BaseFilter.js.map +1 -1
- package/dist/src/adapter/BaseGroupFilter.js +4 -0
- package/dist/src/adapter/BaseGroupFilter.js.map +1 -1
- package/dist/src/adapter/BaseMeasure.js +6 -1
- package/dist/src/adapter/BaseMeasure.js.map +1 -1
- package/dist/src/adapter/BaseQuery.d.ts +1 -1
- package/dist/src/adapter/BaseQuery.d.ts.map +1 -1
- package/dist/src/adapter/BaseQuery.js +23 -2
- package/dist/src/adapter/BaseQuery.js.map +1 -1
- package/dist/src/adapter/BaseSegment.js +6 -1
- package/dist/src/adapter/BaseSegment.js.map +1 -1
- package/dist/src/adapter/BaseTimeDimension.d.ts +1 -0
- package/dist/src/adapter/BaseTimeDimension.d.ts.map +1 -1
- package/dist/src/adapter/BaseTimeDimension.js +12 -5
- package/dist/src/adapter/BaseTimeDimension.js.map +1 -1
- package/dist/src/adapter/BigqueryQuery.d.ts.map +1 -1
- package/dist/src/adapter/BigqueryQuery.js +2 -0
- package/dist/src/adapter/BigqueryQuery.js.map +1 -1
- package/dist/src/adapter/ClickHouseQuery.d.ts.map +1 -1
- package/dist/src/adapter/ClickHouseQuery.js +1 -0
- package/dist/src/adapter/ClickHouseQuery.js.map +1 -1
- package/dist/src/adapter/Granularity.d.ts +1 -0
- package/dist/src/adapter/Granularity.d.ts.map +1 -1
- package/dist/src/adapter/Granularity.js +14 -6
- package/dist/src/adapter/Granularity.js.map +1 -1
- package/dist/src/adapter/MssqlQuery.d.ts.map +1 -1
- package/dist/src/adapter/MssqlQuery.js +1 -0
- package/dist/src/adapter/MssqlQuery.js.map +1 -1
- package/dist/src/adapter/MysqlQuery.d.ts.map +1 -1
- package/dist/src/adapter/MysqlQuery.js +1 -0
- package/dist/src/adapter/MysqlQuery.js.map +1 -1
- package/dist/src/adapter/ParamAllocator.js +1 -0
- package/dist/src/adapter/ParamAllocator.js.map +1 -1
- package/dist/src/adapter/PreAggregations.d.ts +1 -1
- package/dist/src/adapter/PreAggregations.d.ts.map +1 -1
- package/dist/src/adapter/PreAggregations.js +15 -6
- package/dist/src/adapter/PreAggregations.js.map +1 -1
- package/dist/src/adapter/PrestodbQuery.d.ts.map +1 -1
- package/dist/src/adapter/PrestodbQuery.js +1 -0
- package/dist/src/adapter/PrestodbQuery.js.map +1 -1
- package/dist/src/adapter/QueryFactory.js +1 -0
- package/dist/src/adapter/QueryFactory.js.map +1 -1
- package/dist/src/compiler/CompileError.js +2 -0
- package/dist/src/compiler/CompileError.js.map +1 -1
- package/dist/src/compiler/CompilerCache.js +1 -0
- package/dist/src/compiler/CompilerCache.js.map +1 -1
- package/dist/src/compiler/CubeEvaluator.d.ts +3 -3
- package/dist/src/compiler/CubeEvaluator.d.ts.map +1 -1
- package/dist/src/compiler/CubeEvaluator.js +4 -3
- package/dist/src/compiler/CubeEvaluator.js.map +1 -1
- package/dist/src/compiler/CubeSymbols.d.ts +8 -1
- package/dist/src/compiler/CubeSymbols.d.ts.map +1 -1
- package/dist/src/compiler/CubeSymbols.js +45 -10
- package/dist/src/compiler/CubeSymbols.js.map +1 -1
- package/dist/src/compiler/CubeToMetaTransformer.d.ts +4 -0
- package/dist/src/compiler/CubeToMetaTransformer.d.ts.map +1 -1
- package/dist/src/compiler/CubeToMetaTransformer.js +6 -0
- package/dist/src/compiler/CubeToMetaTransformer.js.map +1 -1
- package/dist/src/compiler/CubeValidator.d.ts.map +1 -1
- package/dist/src/compiler/CubeValidator.js +8 -3
- package/dist/src/compiler/CubeValidator.js.map +1 -1
- package/dist/src/compiler/ErrorReporter.js +6 -3
- package/dist/src/compiler/ErrorReporter.js.map +1 -1
- package/dist/src/compiler/UserError.js +1 -1
- package/dist/src/compiler/UserError.js.map +1 -1
- package/dist/src/compiler/YamlCompiler.js +5 -2
- package/dist/src/compiler/YamlCompiler.js.map +1 -1
- package/dist/src/compiler/converters/CubePreAggregationConverter.js +1 -0
- package/dist/src/compiler/converters/CubePreAggregationConverter.js.map +1 -1
- package/dist/src/compiler/converters/CubeSchemaConverter.js +4 -2
- package/dist/src/compiler/converters/CubeSchemaConverter.js.map +1 -1
- package/dist/src/compiler/transpilers/CubePropContextTranspiler.js +2 -0
- package/dist/src/compiler/transpilers/CubePropContextTranspiler.js.map +1 -1
- package/dist/src/extensions/Reflection.js +11 -14
- package/dist/src/extensions/Reflection.js.map +1 -1
- package/dist/src/extensions/RefreshKeys.js +6 -9
- package/dist/src/extensions/RefreshKeys.js.map +1 -1
- package/dist/src/extensions/extension.abstract.js +3 -0
- package/dist/src/extensions/extension.abstract.js.map +1 -1
- package/dist/src/parser/GenericSqlLexer.js +133 -132
- package/dist/src/parser/GenericSqlLexer.js.map +1 -1
- package/dist/src/parser/GenericSqlParser.js +130 -127
- package/dist/src/parser/GenericSqlParser.js.map +1 -1
- package/dist/src/parser/Python3Lexer.js +814 -813
- package/dist/src/parser/Python3Lexer.js.map +1 -1
- package/dist/src/parser/Python3Parser.js +874 -873
- package/dist/src/parser/Python3Parser.js.map +1 -1
- package/dist/src/parser/PythonParser.js +4 -1
- package/dist/src/parser/PythonParser.js.map +1 -1
- package/dist/src/parser/SqlParser.js +3 -1
- package/dist/src/parser/SqlParser.js.map +1 -1
- package/dist/src/scaffolding/ScaffoldingSchema.js +3 -1
- package/dist/src/scaffolding/ScaffoldingSchema.js.map +1 -1
- package/dist/src/scaffolding/ScaffoldingTemplate.js +3 -0
- package/dist/src/scaffolding/ScaffoldingTemplate.js.map +1 -1
- package/dist/src/scaffolding/descriptors/MemberReference.js +1 -0
- package/dist/src/scaffolding/descriptors/MemberReference.js.map +1 -1
- package/dist/src/scaffolding/descriptors/ValueWithComments.js +2 -0
- package/dist/src/scaffolding/descriptors/ValueWithComments.js.map +1 -1
- package/dist/src/scaffolding/formatters/BaseSchemaFormatter.js +4 -0
- package/dist/src/scaffolding/formatters/BaseSchemaFormatter.js.map +1 -1
- package/package.json +4 -4
|
@@ -8,20 +8,17 @@ const ramda_1 = __importDefault(require("ramda"));
|
|
|
8
8
|
const DynamicReference_1 = require("../compiler/DynamicReference");
|
|
9
9
|
const extension_abstract_1 = require("./extension.abstract");
|
|
10
10
|
class Reflection extends extension_abstract_1.AbstractExtension {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
return new DynamicReference_1.DynamicReference(references, fn);
|
|
23
|
-
};
|
|
24
|
-
}
|
|
11
|
+
dynRef = (...args) => {
|
|
12
|
+
if (args.length < 2) {
|
|
13
|
+
throw new Error('List of references and a function are expected in form: dynRef(\'ref\', (r) => (...))');
|
|
14
|
+
}
|
|
15
|
+
const references = ramda_1.default.dropLast(1, args);
|
|
16
|
+
const fn = args[args.length - 1];
|
|
17
|
+
if (typeof fn !== 'function') {
|
|
18
|
+
throw new Error('Last argument should be a function');
|
|
19
|
+
}
|
|
20
|
+
return new DynamicReference_1.DynamicReference(references, fn);
|
|
21
|
+
};
|
|
25
22
|
}
|
|
26
23
|
exports.Reflection = Reflection;
|
|
27
24
|
//# sourceMappingURL=Reflection.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Reflection.js","sourceRoot":"","sources":["../../../src/extensions/Reflection.ts"],"names":[],"mappings":";;;;;;AAAA,kDAAsB;AACtB,mEAAgE;AAChE,6DAAyD;AAEzD,MAAa,UAAW,SAAQ,sCAAiB;
|
|
1
|
+
{"version":3,"file":"Reflection.js","sourceRoot":"","sources":["../../../src/extensions/Reflection.ts"],"names":[],"mappings":";;;;;;AAAA,kDAAsB;AACtB,mEAAgE;AAChE,6DAAyD;AAEzD,MAAa,UAAW,SAAQ,sCAAiB;IACxC,MAAM,GAAG,CAAC,GAAG,IAAI,EAAE,EAAE;QAC1B,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,EAAE;YACnB,MAAM,IAAI,KAAK,CAAC,uFAAuF,CAAC,CAAC;SAC1G;QAED,MAAM,UAAU,GAAG,eAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;QACvC,MAAM,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;QAEjC,IAAI,OAAO,EAAE,KAAK,UAAU,EAAE;YAC5B,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;SACvD;QAED,OAAO,IAAI,mCAAgB,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;IAC9C,CAAC,CAAC;CACH;AAfD,gCAeC"}
|
|
@@ -3,15 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.RefreshKeys = void 0;
|
|
4
4
|
const extension_abstract_1 = require("./extension.abstract");
|
|
5
5
|
class RefreshKeys extends extension_abstract_1.AbstractExtension {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}])}`
|
|
13
|
-
});
|
|
14
|
-
}
|
|
6
|
+
immutablePartitionedRollupKey = (scalarValue) => ({
|
|
7
|
+
sql: (FILTER_PARAMS) => `SELECT ${this.compiler.contextQuery().caseWhenStatement([{
|
|
8
|
+
sql: FILTER_PARAMS[this.compiler.contextQuery().timeDimensions[0].path()[0]][this.compiler.contextQuery().timeDimensions[0].path()[1]].filter((from, to) => `${this.compiler.contextQuery().nowTimestampSql()} < ${this.compiler.contextQuery().timeStampCast(to)}`),
|
|
9
|
+
label: scalarValue
|
|
10
|
+
}])}`
|
|
11
|
+
});
|
|
15
12
|
}
|
|
16
13
|
exports.RefreshKeys = RefreshKeys;
|
|
17
14
|
//# sourceMappingURL=RefreshKeys.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RefreshKeys.js","sourceRoot":"","sources":["../../../src/extensions/RefreshKeys.ts"],"names":[],"mappings":";;;AAAA,6DAAyD;AAEzD,MAAa,WAAY,SAAQ,sCAAiB;
|
|
1
|
+
{"version":3,"file":"RefreshKeys.js","sourceRoot":"","sources":["../../../src/extensions/RefreshKeys.ts"],"names":[],"mappings":";;;AAAA,6DAAyD;AAEzD,MAAa,WAAY,SAAQ,sCAAiB;IACzC,6BAA6B,GAAG,CAAC,WAAW,EAAE,EAAE,CAAC,CAAC;QACvD,GAAG,EAAE,CAAC,aAAa,EAAE,EAAE,CAAC,UAAU,IAAI,CAAC,QAAQ,CAAC,YAAY,EAAE,CAAC,iBAAiB,CAAC,CAAC;gBAChF,GAAG,EAAE,aAAa,CAChB,IAAI,CAAC,QAAQ,CAAC,YAAY,EAAE,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,CACzD,CACC,IAAI,CAAC,QAAQ,CAAC,YAAY,EAAE,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,CACzD,CAAC,MAAM,CACN,CAAC,IAAI,EAAE,EAAE,EAAE,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,YAAY,EAAE,CAAC,eAAe,EAAE,MAAM,IAAI,CAAC,QAAQ,CAAC,YAAY,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC,EAAE,CACtH;gBACD,KAAK,EAAE,WAAW;aACnB,CAAC,CAAC,EAAE;KACN,CAAC,CAAC;CACJ;AAbD,kCAaC"}
|
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.AbstractExtension = void 0;
|
|
4
4
|
class AbstractExtension {
|
|
5
|
+
cubeFactory;
|
|
6
|
+
compiler;
|
|
7
|
+
cubes;
|
|
5
8
|
constructor(cubeFactory, compiler, cubes) {
|
|
6
9
|
this.cubeFactory = cubeFactory;
|
|
7
10
|
this.compiler = compiler;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extension.abstract.js","sourceRoot":"","sources":["../../../src/extensions/extension.abstract.ts"],"names":[],"mappings":";;;AAEA,MAAsB,iBAAiB;
|
|
1
|
+
{"version":3,"file":"extension.abstract.js","sourceRoot":"","sources":["../../../src/extensions/extension.abstract.ts"],"names":[],"mappings":";;;AAEA,MAAsB,iBAAiB;IAEhB;IACA;IACA;IAHrB,YACqB,WAAgB,EAChB,QAA4B,EAC5B,KAAY;QAFZ,gBAAW,GAAX,WAAW,CAAK;QAChB,aAAQ,GAAR,QAAQ,CAAoB;QAC5B,UAAK,GAAL,KAAK,CAAO;IAEjC,CAAC;IAES,iBAAiB,CAAC,IAAY,EAAE,IAAS;QACjD,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;IACrD,CAAC;CACF;AAXD,8CAWC"}
|
|
@@ -31,6 +31,59 @@ const LexerATNSimulator_1 = require("antlr4ts/atn/LexerATNSimulator");
|
|
|
31
31
|
const VocabularyImpl_1 = require("antlr4ts/VocabularyImpl");
|
|
32
32
|
const Utils = __importStar(require("antlr4ts/misc/Utils"));
|
|
33
33
|
class GenericSqlLexer extends Lexer_1.Lexer {
|
|
34
|
+
static T__0 = 1;
|
|
35
|
+
static T__1 = 2;
|
|
36
|
+
static T__2 = 3;
|
|
37
|
+
static T__3 = 4;
|
|
38
|
+
static SELECT = 5;
|
|
39
|
+
static ASTERISK = 6;
|
|
40
|
+
static FROM = 7;
|
|
41
|
+
static WHERE = 8;
|
|
42
|
+
static AND = 9;
|
|
43
|
+
static OR = 10;
|
|
44
|
+
static NOT = 11;
|
|
45
|
+
static AS = 12;
|
|
46
|
+
static LT = 13;
|
|
47
|
+
static LTE = 14;
|
|
48
|
+
static GT = 15;
|
|
49
|
+
static GTE = 16;
|
|
50
|
+
static EQUALS = 17;
|
|
51
|
+
static NOT_EQUALS = 18;
|
|
52
|
+
static IS = 19;
|
|
53
|
+
static NULL = 20;
|
|
54
|
+
static CAST = 21;
|
|
55
|
+
static INDEXED_PARAM = 22;
|
|
56
|
+
static ID = 23;
|
|
57
|
+
static DIGIT = 24;
|
|
58
|
+
static QUOTED_ID = 25;
|
|
59
|
+
static STRING = 26;
|
|
60
|
+
static WHITESPACE = 27;
|
|
61
|
+
// tslint:disable:no-trailing-whitespace
|
|
62
|
+
static channelNames = [
|
|
63
|
+
"DEFAULT_TOKEN_CHANNEL", "HIDDEN",
|
|
64
|
+
];
|
|
65
|
+
// tslint:disable:no-trailing-whitespace
|
|
66
|
+
static modeNames = [
|
|
67
|
+
"DEFAULT_MODE",
|
|
68
|
+
];
|
|
69
|
+
static ruleNames = [
|
|
70
|
+
"T__0", "T__1", "T__2", "T__3", "SELECT", "ASTERISK", "FROM", "WHERE",
|
|
71
|
+
"AND", "OR", "NOT", "AS", "LT", "LTE", "GT", "GTE", "EQUALS", "NOT_EQUALS",
|
|
72
|
+
"IS", "NULL", "CAST", "INDEXED_PARAM", "ID", "DIGIT", "QUOTED_ID", "STRING",
|
|
73
|
+
"WHITESPACE",
|
|
74
|
+
];
|
|
75
|
+
static _LITERAL_NAMES = [
|
|
76
|
+
undefined, "'('", "')'", "','", "'.'", "'SELECT'", "'*'", "'FROM'", "'WHERE'",
|
|
77
|
+
"'AND'", "'OR'", "'NOT'", "'AS'", "'<'", "'<='", "'>'", "'>='", "'='",
|
|
78
|
+
undefined, "'IS'", "'NULL'", "'CAST'",
|
|
79
|
+
];
|
|
80
|
+
static _SYMBOLIC_NAMES = [
|
|
81
|
+
undefined, undefined, undefined, undefined, undefined, "SELECT", "ASTERISK",
|
|
82
|
+
"FROM", "WHERE", "AND", "OR", "NOT", "AS", "LT", "LTE", "GT", "GTE", "EQUALS",
|
|
83
|
+
"NOT_EQUALS", "IS", "NULL", "CAST", "INDEXED_PARAM", "ID", "DIGIT", "QUOTED_ID",
|
|
84
|
+
"STRING", "WHITESPACE",
|
|
85
|
+
];
|
|
86
|
+
static VOCABULARY = new VocabularyImpl_1.VocabularyImpl(GenericSqlLexer._LITERAL_NAMES, GenericSqlLexer._SYMBOLIC_NAMES, []);
|
|
34
87
|
// @Override
|
|
35
88
|
// @NotNull
|
|
36
89
|
get vocabulary() {
|
|
@@ -51,6 +104,86 @@ class GenericSqlLexer extends Lexer_1.Lexer {
|
|
|
51
104
|
get channelNames() { return GenericSqlLexer.channelNames; }
|
|
52
105
|
// @Override
|
|
53
106
|
get modeNames() { return GenericSqlLexer.modeNames; }
|
|
107
|
+
static _serializedATN = "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x02\x1D\xB4\b\x01" +
|
|
108
|
+
"\x04\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06" +
|
|
109
|
+
"\x04\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04\r" +
|
|
110
|
+
"\t\r\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t" +
|
|
111
|
+
"\x12\x04\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17\t" +
|
|
112
|
+
"\x17\x04\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C\t" +
|
|
113
|
+
"\x1C\x03\x02\x03\x02\x03\x03\x03\x03\x03\x04\x03\x04\x03\x05\x03\x05\x03" +
|
|
114
|
+
"\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x07\x03\x07\x03" +
|
|
115
|
+
"\b\x03\b\x03\b\x03\b\x03\b\x03\t\x03\t\x03\t\x03\t\x03\t\x03\t\x03\n\x03" +
|
|
116
|
+
"\n\x03\n\x03\n\x03\v\x03\v\x03\v\x03\f\x03\f\x03\f\x03\f\x03\r\x03\r\x03" +
|
|
117
|
+
"\r\x03\x0E\x03\x0E\x03\x0F\x03\x0F\x03\x0F\x03\x10\x03\x10\x03\x11\x03" +
|
|
118
|
+
"\x11\x03\x11\x03\x12\x03\x12\x03\x13\x03\x13\x03\x13\x03\x13\x05\x13t" +
|
|
119
|
+
"\n\x13\x03\x14\x03\x14\x03\x14\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15" +
|
|
120
|
+
"\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x17\x03\x17\x06\x17\x85\n" +
|
|
121
|
+
"\x17\r\x17\x0E\x17\x86\x03\x17\x03\x17\x03\x18\x03\x18\x07\x18\x8D\n\x18" +
|
|
122
|
+
"\f\x18\x0E\x18\x90\v\x18\x03\x19\x03\x19\x03\x1A\x03\x1A\x07\x1A\x96\n" +
|
|
123
|
+
"\x1A\f\x1A\x0E\x1A\x99\v\x1A\x03\x1A\x03\x1A\x03\x1A\x07\x1A\x9E\n\x1A" +
|
|
124
|
+
"\f\x1A\x0E\x1A\xA1\v\x1A\x03\x1A\x05\x1A\xA4\n\x1A\x03\x1B\x03\x1B\x03" +
|
|
125
|
+
"\x1B\x03\x1B\x07\x1B\xAA\n\x1B\f\x1B\x0E\x1B\xAD\v\x1B\x03\x1B\x03\x1B" +
|
|
126
|
+
"\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x02\x02\x02\x1D\x03\x02\x03\x05\x02\x04" +
|
|
127
|
+
"\x07\x02\x05\t\x02\x06\v\x02\x07\r\x02\b\x0F\x02\t\x11\x02\n\x13\x02\v" +
|
|
128
|
+
"\x15\x02\f\x17\x02\r\x19\x02\x0E\x1B\x02\x0F\x1D\x02\x10\x1F\x02\x11!" +
|
|
129
|
+
"\x02\x12#\x02\x13%\x02\x14\'\x02\x15)\x02\x16+\x02\x17-\x02\x18/\x02\x19" +
|
|
130
|
+
"1\x02\x1A3\x02\x1B5\x02\x1C7\x02\x1D\x03\x02\t\x03\x022;\x04\x02B\\aa" +
|
|
131
|
+
"\x05\x022;B\\aa\x03\x02$$\x03\x02bb\x03\x02))\x05\x02\v\f\x0F\x0F\"\"" +
|
|
132
|
+
"\x02\xBB\x02\x03\x03\x02\x02\x02\x02\x05\x03\x02\x02\x02\x02\x07\x03\x02" +
|
|
133
|
+
"\x02\x02\x02\t\x03\x02\x02\x02\x02\v\x03\x02\x02\x02\x02\r\x03\x02\x02" +
|
|
134
|
+
"\x02\x02\x0F\x03\x02\x02\x02\x02\x11\x03\x02\x02\x02\x02\x13\x03\x02\x02" +
|
|
135
|
+
"\x02\x02\x15\x03\x02\x02\x02\x02\x17\x03\x02\x02\x02\x02\x19\x03\x02\x02" +
|
|
136
|
+
"\x02\x02\x1B\x03\x02\x02\x02\x02\x1D\x03\x02\x02\x02\x02\x1F\x03\x02\x02" +
|
|
137
|
+
"\x02\x02!\x03\x02\x02\x02\x02#\x03\x02\x02\x02\x02%\x03\x02\x02\x02\x02" +
|
|
138
|
+
"\'\x03\x02\x02\x02\x02)\x03\x02\x02\x02\x02+\x03\x02\x02\x02\x02-\x03" +
|
|
139
|
+
"\x02\x02\x02\x02/\x03\x02\x02\x02\x021\x03\x02\x02\x02\x023\x03\x02\x02" +
|
|
140
|
+
"\x02\x025\x03\x02\x02\x02\x027\x03\x02\x02\x02\x039\x03\x02\x02\x02\x05" +
|
|
141
|
+
";\x03\x02\x02\x02\x07=\x03\x02\x02\x02\t?\x03\x02\x02\x02\vA\x03\x02\x02" +
|
|
142
|
+
"\x02\rH\x03\x02\x02\x02\x0FJ\x03\x02\x02\x02\x11O\x03\x02\x02\x02\x13" +
|
|
143
|
+
"U\x03\x02\x02\x02\x15Y\x03\x02\x02\x02\x17\\\x03\x02\x02\x02\x19`\x03" +
|
|
144
|
+
"\x02\x02\x02\x1Bc\x03\x02\x02\x02\x1De\x03\x02\x02\x02\x1Fh\x03\x02\x02" +
|
|
145
|
+
"\x02!j\x03\x02\x02\x02#m\x03\x02\x02\x02%s\x03\x02\x02\x02\'u\x03\x02" +
|
|
146
|
+
"\x02\x02)x\x03\x02\x02\x02+}\x03\x02\x02\x02-\x82\x03\x02\x02\x02/\x8A" +
|
|
147
|
+
"\x03\x02\x02\x021\x91\x03\x02\x02\x023\xA3\x03\x02\x02\x025\xA5\x03\x02" +
|
|
148
|
+
"\x02\x027\xB0\x03\x02\x02\x029:\x07*\x02\x02:\x04\x03\x02\x02\x02;<\x07" +
|
|
149
|
+
"+\x02\x02<\x06\x03\x02\x02\x02=>\x07.\x02\x02>\b\x03\x02\x02\x02?@\x07" +
|
|
150
|
+
"0\x02\x02@\n\x03\x02\x02\x02AB\x07U\x02\x02BC\x07G\x02\x02CD\x07N\x02" +
|
|
151
|
+
"\x02DE\x07G\x02\x02EF\x07E\x02\x02FG\x07V\x02\x02G\f\x03\x02\x02\x02H" +
|
|
152
|
+
"I\x07,\x02\x02I\x0E\x03\x02\x02\x02JK\x07H\x02\x02KL\x07T\x02\x02LM\x07" +
|
|
153
|
+
"Q\x02\x02MN\x07O\x02\x02N\x10\x03\x02\x02\x02OP\x07Y\x02\x02PQ\x07J\x02" +
|
|
154
|
+
"\x02QR\x07G\x02\x02RS\x07T\x02\x02ST\x07G\x02\x02T\x12\x03\x02\x02\x02" +
|
|
155
|
+
"UV\x07C\x02\x02VW\x07P\x02\x02WX\x07F\x02\x02X\x14\x03\x02\x02\x02YZ\x07" +
|
|
156
|
+
"Q\x02\x02Z[\x07T\x02\x02[\x16\x03\x02\x02\x02\\]\x07P\x02\x02]^\x07Q\x02" +
|
|
157
|
+
"\x02^_\x07V\x02\x02_\x18\x03\x02\x02\x02`a\x07C\x02\x02ab\x07U\x02\x02" +
|
|
158
|
+
"b\x1A\x03\x02\x02\x02cd\x07>\x02\x02d\x1C\x03\x02\x02\x02ef\x07>\x02\x02" +
|
|
159
|
+
"fg\x07?\x02\x02g\x1E\x03\x02\x02\x02hi\x07@\x02\x02i \x03\x02\x02\x02" +
|
|
160
|
+
"jk\x07@\x02\x02kl\x07?\x02\x02l\"\x03\x02\x02\x02mn\x07?\x02\x02n$\x03" +
|
|
161
|
+
"\x02\x02\x02op\x07>\x02\x02pt\x07@\x02\x02qr\x07#\x02\x02rt\x07?\x02\x02" +
|
|
162
|
+
"so\x03\x02\x02\x02sq\x03\x02\x02\x02t&\x03\x02\x02\x02uv\x07K\x02\x02" +
|
|
163
|
+
"vw\x07U\x02\x02w(\x03\x02\x02\x02xy\x07P\x02\x02yz\x07W\x02\x02z{\x07" +
|
|
164
|
+
"N\x02\x02{|\x07N\x02\x02|*\x03\x02\x02\x02}~\x07E\x02\x02~\x7F\x07C\x02" +
|
|
165
|
+
"\x02\x7F\x80\x07U\x02\x02\x80\x81\x07V\x02\x02\x81,\x03\x02\x02\x02\x82" +
|
|
166
|
+
"\x84\x07&\x02\x02\x83\x85\t\x02\x02\x02\x84\x83\x03\x02\x02\x02\x85\x86" +
|
|
167
|
+
"\x03\x02\x02\x02\x86\x84\x03\x02\x02\x02\x86\x87\x03\x02\x02\x02\x87\x88" +
|
|
168
|
+
"\x03\x02\x02\x02\x88\x89\x07&\x02\x02\x89.\x03\x02\x02\x02\x8A\x8E\t\x03" +
|
|
169
|
+
"\x02\x02\x8B\x8D\t\x04\x02\x02\x8C\x8B\x03\x02\x02\x02\x8D\x90\x03\x02" +
|
|
170
|
+
"\x02\x02\x8E\x8C\x03\x02\x02\x02\x8E\x8F\x03\x02\x02\x02\x8F0\x03\x02" +
|
|
171
|
+
"\x02\x02\x90\x8E\x03\x02\x02\x02\x91\x92\t\x02\x02\x02\x922\x03\x02\x02" +
|
|
172
|
+
"\x02\x93\x97\x07$\x02\x02\x94\x96\n\x05\x02\x02\x95\x94\x03\x02\x02\x02" +
|
|
173
|
+
"\x96\x99\x03\x02\x02\x02\x97\x95\x03\x02\x02\x02\x97\x98\x03\x02\x02\x02" +
|
|
174
|
+
"\x98\x9A\x03\x02\x02\x02\x99\x97\x03\x02\x02\x02\x9A\xA4\x07$\x02\x02" +
|
|
175
|
+
"\x9B\x9F\x07b\x02\x02\x9C\x9E\n\x06\x02\x02\x9D\x9C\x03\x02\x02\x02\x9E" +
|
|
176
|
+
"\xA1\x03\x02\x02\x02\x9F\x9D\x03\x02\x02\x02\x9F\xA0\x03\x02\x02\x02\xA0" +
|
|
177
|
+
"\xA2\x03\x02\x02\x02\xA1\x9F\x03\x02\x02\x02\xA2\xA4\x07b\x02\x02\xA3" +
|
|
178
|
+
"\x93\x03\x02\x02\x02\xA3\x9B\x03\x02\x02\x02\xA44\x03\x02\x02\x02\xA5" +
|
|
179
|
+
"\xAB\x07)\x02\x02\xA6\xAA\n\x07\x02\x02\xA7\xA8\x07)\x02\x02\xA8\xAA\x07" +
|
|
180
|
+
")\x02\x02\xA9\xA6\x03\x02\x02\x02\xA9\xA7\x03\x02\x02\x02\xAA\xAD\x03" +
|
|
181
|
+
"\x02\x02\x02\xAB\xA9\x03\x02\x02\x02\xAB\xAC\x03\x02\x02\x02\xAC\xAE\x03" +
|
|
182
|
+
"\x02\x02\x02\xAD\xAB\x03\x02\x02\x02\xAE\xAF\x07)\x02\x02\xAF6\x03\x02" +
|
|
183
|
+
"\x02\x02\xB0\xB1\t\b\x02\x02\xB1\xB2\x03\x02\x02\x02\xB2\xB3\b\x1C\x02" +
|
|
184
|
+
"\x02\xB38\x03\x02\x02\x02\v\x02s\x86\x8E\x97\x9F\xA3\xA9\xAB\x03\x02\x03" +
|
|
185
|
+
"\x02";
|
|
186
|
+
static __ATN;
|
|
54
187
|
static get _ATN() {
|
|
55
188
|
if (!GenericSqlLexer.__ATN) {
|
|
56
189
|
GenericSqlLexer.__ATN = new ATNDeserializer_1.ATNDeserializer().deserialize(Utils.toCharArray(GenericSqlLexer._serializedATN));
|
|
@@ -59,136 +192,4 @@ class GenericSqlLexer extends Lexer_1.Lexer {
|
|
|
59
192
|
}
|
|
60
193
|
}
|
|
61
194
|
exports.GenericSqlLexer = GenericSqlLexer;
|
|
62
|
-
GenericSqlLexer.T__0 = 1;
|
|
63
|
-
GenericSqlLexer.T__1 = 2;
|
|
64
|
-
GenericSqlLexer.T__2 = 3;
|
|
65
|
-
GenericSqlLexer.T__3 = 4;
|
|
66
|
-
GenericSqlLexer.SELECT = 5;
|
|
67
|
-
GenericSqlLexer.ASTERISK = 6;
|
|
68
|
-
GenericSqlLexer.FROM = 7;
|
|
69
|
-
GenericSqlLexer.WHERE = 8;
|
|
70
|
-
GenericSqlLexer.AND = 9;
|
|
71
|
-
GenericSqlLexer.OR = 10;
|
|
72
|
-
GenericSqlLexer.NOT = 11;
|
|
73
|
-
GenericSqlLexer.AS = 12;
|
|
74
|
-
GenericSqlLexer.LT = 13;
|
|
75
|
-
GenericSqlLexer.LTE = 14;
|
|
76
|
-
GenericSqlLexer.GT = 15;
|
|
77
|
-
GenericSqlLexer.GTE = 16;
|
|
78
|
-
GenericSqlLexer.EQUALS = 17;
|
|
79
|
-
GenericSqlLexer.NOT_EQUALS = 18;
|
|
80
|
-
GenericSqlLexer.IS = 19;
|
|
81
|
-
GenericSqlLexer.NULL = 20;
|
|
82
|
-
GenericSqlLexer.CAST = 21;
|
|
83
|
-
GenericSqlLexer.INDEXED_PARAM = 22;
|
|
84
|
-
GenericSqlLexer.ID = 23;
|
|
85
|
-
GenericSqlLexer.DIGIT = 24;
|
|
86
|
-
GenericSqlLexer.QUOTED_ID = 25;
|
|
87
|
-
GenericSqlLexer.STRING = 26;
|
|
88
|
-
GenericSqlLexer.WHITESPACE = 27;
|
|
89
|
-
// tslint:disable:no-trailing-whitespace
|
|
90
|
-
GenericSqlLexer.channelNames = [
|
|
91
|
-
"DEFAULT_TOKEN_CHANNEL", "HIDDEN",
|
|
92
|
-
];
|
|
93
|
-
// tslint:disable:no-trailing-whitespace
|
|
94
|
-
GenericSqlLexer.modeNames = [
|
|
95
|
-
"DEFAULT_MODE",
|
|
96
|
-
];
|
|
97
|
-
GenericSqlLexer.ruleNames = [
|
|
98
|
-
"T__0", "T__1", "T__2", "T__3", "SELECT", "ASTERISK", "FROM", "WHERE",
|
|
99
|
-
"AND", "OR", "NOT", "AS", "LT", "LTE", "GT", "GTE", "EQUALS", "NOT_EQUALS",
|
|
100
|
-
"IS", "NULL", "CAST", "INDEXED_PARAM", "ID", "DIGIT", "QUOTED_ID", "STRING",
|
|
101
|
-
"WHITESPACE",
|
|
102
|
-
];
|
|
103
|
-
GenericSqlLexer._LITERAL_NAMES = [
|
|
104
|
-
undefined, "'('", "')'", "','", "'.'", "'SELECT'", "'*'", "'FROM'", "'WHERE'",
|
|
105
|
-
"'AND'", "'OR'", "'NOT'", "'AS'", "'<'", "'<='", "'>'", "'>='", "'='",
|
|
106
|
-
undefined, "'IS'", "'NULL'", "'CAST'",
|
|
107
|
-
];
|
|
108
|
-
GenericSqlLexer._SYMBOLIC_NAMES = [
|
|
109
|
-
undefined, undefined, undefined, undefined, undefined, "SELECT", "ASTERISK",
|
|
110
|
-
"FROM", "WHERE", "AND", "OR", "NOT", "AS", "LT", "LTE", "GT", "GTE", "EQUALS",
|
|
111
|
-
"NOT_EQUALS", "IS", "NULL", "CAST", "INDEXED_PARAM", "ID", "DIGIT", "QUOTED_ID",
|
|
112
|
-
"STRING", "WHITESPACE",
|
|
113
|
-
];
|
|
114
|
-
GenericSqlLexer.VOCABULARY = new VocabularyImpl_1.VocabularyImpl(GenericSqlLexer._LITERAL_NAMES, GenericSqlLexer._SYMBOLIC_NAMES, []);
|
|
115
|
-
GenericSqlLexer._serializedATN = "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x02\x1D\xB4\b\x01" +
|
|
116
|
-
"\x04\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06" +
|
|
117
|
-
"\x04\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04\r" +
|
|
118
|
-
"\t\r\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t" +
|
|
119
|
-
"\x12\x04\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17\t" +
|
|
120
|
-
"\x17\x04\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C\t" +
|
|
121
|
-
"\x1C\x03\x02\x03\x02\x03\x03\x03\x03\x03\x04\x03\x04\x03\x05\x03\x05\x03" +
|
|
122
|
-
"\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x07\x03\x07\x03" +
|
|
123
|
-
"\b\x03\b\x03\b\x03\b\x03\b\x03\t\x03\t\x03\t\x03\t\x03\t\x03\t\x03\n\x03" +
|
|
124
|
-
"\n\x03\n\x03\n\x03\v\x03\v\x03\v\x03\f\x03\f\x03\f\x03\f\x03\r\x03\r\x03" +
|
|
125
|
-
"\r\x03\x0E\x03\x0E\x03\x0F\x03\x0F\x03\x0F\x03\x10\x03\x10\x03\x11\x03" +
|
|
126
|
-
"\x11\x03\x11\x03\x12\x03\x12\x03\x13\x03\x13\x03\x13\x03\x13\x05\x13t" +
|
|
127
|
-
"\n\x13\x03\x14\x03\x14\x03\x14\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15" +
|
|
128
|
-
"\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x17\x03\x17\x06\x17\x85\n" +
|
|
129
|
-
"\x17\r\x17\x0E\x17\x86\x03\x17\x03\x17\x03\x18\x03\x18\x07\x18\x8D\n\x18" +
|
|
130
|
-
"\f\x18\x0E\x18\x90\v\x18\x03\x19\x03\x19\x03\x1A\x03\x1A\x07\x1A\x96\n" +
|
|
131
|
-
"\x1A\f\x1A\x0E\x1A\x99\v\x1A\x03\x1A\x03\x1A\x03\x1A\x07\x1A\x9E\n\x1A" +
|
|
132
|
-
"\f\x1A\x0E\x1A\xA1\v\x1A\x03\x1A\x05\x1A\xA4\n\x1A\x03\x1B\x03\x1B\x03" +
|
|
133
|
-
"\x1B\x03\x1B\x07\x1B\xAA\n\x1B\f\x1B\x0E\x1B\xAD\v\x1B\x03\x1B\x03\x1B" +
|
|
134
|
-
"\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x02\x02\x02\x1D\x03\x02\x03\x05\x02\x04" +
|
|
135
|
-
"\x07\x02\x05\t\x02\x06\v\x02\x07\r\x02\b\x0F\x02\t\x11\x02\n\x13\x02\v" +
|
|
136
|
-
"\x15\x02\f\x17\x02\r\x19\x02\x0E\x1B\x02\x0F\x1D\x02\x10\x1F\x02\x11!" +
|
|
137
|
-
"\x02\x12#\x02\x13%\x02\x14\'\x02\x15)\x02\x16+\x02\x17-\x02\x18/\x02\x19" +
|
|
138
|
-
"1\x02\x1A3\x02\x1B5\x02\x1C7\x02\x1D\x03\x02\t\x03\x022;\x04\x02B\\aa" +
|
|
139
|
-
"\x05\x022;B\\aa\x03\x02$$\x03\x02bb\x03\x02))\x05\x02\v\f\x0F\x0F\"\"" +
|
|
140
|
-
"\x02\xBB\x02\x03\x03\x02\x02\x02\x02\x05\x03\x02\x02\x02\x02\x07\x03\x02" +
|
|
141
|
-
"\x02\x02\x02\t\x03\x02\x02\x02\x02\v\x03\x02\x02\x02\x02\r\x03\x02\x02" +
|
|
142
|
-
"\x02\x02\x0F\x03\x02\x02\x02\x02\x11\x03\x02\x02\x02\x02\x13\x03\x02\x02" +
|
|
143
|
-
"\x02\x02\x15\x03\x02\x02\x02\x02\x17\x03\x02\x02\x02\x02\x19\x03\x02\x02" +
|
|
144
|
-
"\x02\x02\x1B\x03\x02\x02\x02\x02\x1D\x03\x02\x02\x02\x02\x1F\x03\x02\x02" +
|
|
145
|
-
"\x02\x02!\x03\x02\x02\x02\x02#\x03\x02\x02\x02\x02%\x03\x02\x02\x02\x02" +
|
|
146
|
-
"\'\x03\x02\x02\x02\x02)\x03\x02\x02\x02\x02+\x03\x02\x02\x02\x02-\x03" +
|
|
147
|
-
"\x02\x02\x02\x02/\x03\x02\x02\x02\x021\x03\x02\x02\x02\x023\x03\x02\x02" +
|
|
148
|
-
"\x02\x025\x03\x02\x02\x02\x027\x03\x02\x02\x02\x039\x03\x02\x02\x02\x05" +
|
|
149
|
-
";\x03\x02\x02\x02\x07=\x03\x02\x02\x02\t?\x03\x02\x02\x02\vA\x03\x02\x02" +
|
|
150
|
-
"\x02\rH\x03\x02\x02\x02\x0FJ\x03\x02\x02\x02\x11O\x03\x02\x02\x02\x13" +
|
|
151
|
-
"U\x03\x02\x02\x02\x15Y\x03\x02\x02\x02\x17\\\x03\x02\x02\x02\x19`\x03" +
|
|
152
|
-
"\x02\x02\x02\x1Bc\x03\x02\x02\x02\x1De\x03\x02\x02\x02\x1Fh\x03\x02\x02" +
|
|
153
|
-
"\x02!j\x03\x02\x02\x02#m\x03\x02\x02\x02%s\x03\x02\x02\x02\'u\x03\x02" +
|
|
154
|
-
"\x02\x02)x\x03\x02\x02\x02+}\x03\x02\x02\x02-\x82\x03\x02\x02\x02/\x8A" +
|
|
155
|
-
"\x03\x02\x02\x021\x91\x03\x02\x02\x023\xA3\x03\x02\x02\x025\xA5\x03\x02" +
|
|
156
|
-
"\x02\x027\xB0\x03\x02\x02\x029:\x07*\x02\x02:\x04\x03\x02\x02\x02;<\x07" +
|
|
157
|
-
"+\x02\x02<\x06\x03\x02\x02\x02=>\x07.\x02\x02>\b\x03\x02\x02\x02?@\x07" +
|
|
158
|
-
"0\x02\x02@\n\x03\x02\x02\x02AB\x07U\x02\x02BC\x07G\x02\x02CD\x07N\x02" +
|
|
159
|
-
"\x02DE\x07G\x02\x02EF\x07E\x02\x02FG\x07V\x02\x02G\f\x03\x02\x02\x02H" +
|
|
160
|
-
"I\x07,\x02\x02I\x0E\x03\x02\x02\x02JK\x07H\x02\x02KL\x07T\x02\x02LM\x07" +
|
|
161
|
-
"Q\x02\x02MN\x07O\x02\x02N\x10\x03\x02\x02\x02OP\x07Y\x02\x02PQ\x07J\x02" +
|
|
162
|
-
"\x02QR\x07G\x02\x02RS\x07T\x02\x02ST\x07G\x02\x02T\x12\x03\x02\x02\x02" +
|
|
163
|
-
"UV\x07C\x02\x02VW\x07P\x02\x02WX\x07F\x02\x02X\x14\x03\x02\x02\x02YZ\x07" +
|
|
164
|
-
"Q\x02\x02Z[\x07T\x02\x02[\x16\x03\x02\x02\x02\\]\x07P\x02\x02]^\x07Q\x02" +
|
|
165
|
-
"\x02^_\x07V\x02\x02_\x18\x03\x02\x02\x02`a\x07C\x02\x02ab\x07U\x02\x02" +
|
|
166
|
-
"b\x1A\x03\x02\x02\x02cd\x07>\x02\x02d\x1C\x03\x02\x02\x02ef\x07>\x02\x02" +
|
|
167
|
-
"fg\x07?\x02\x02g\x1E\x03\x02\x02\x02hi\x07@\x02\x02i \x03\x02\x02\x02" +
|
|
168
|
-
"jk\x07@\x02\x02kl\x07?\x02\x02l\"\x03\x02\x02\x02mn\x07?\x02\x02n$\x03" +
|
|
169
|
-
"\x02\x02\x02op\x07>\x02\x02pt\x07@\x02\x02qr\x07#\x02\x02rt\x07?\x02\x02" +
|
|
170
|
-
"so\x03\x02\x02\x02sq\x03\x02\x02\x02t&\x03\x02\x02\x02uv\x07K\x02\x02" +
|
|
171
|
-
"vw\x07U\x02\x02w(\x03\x02\x02\x02xy\x07P\x02\x02yz\x07W\x02\x02z{\x07" +
|
|
172
|
-
"N\x02\x02{|\x07N\x02\x02|*\x03\x02\x02\x02}~\x07E\x02\x02~\x7F\x07C\x02" +
|
|
173
|
-
"\x02\x7F\x80\x07U\x02\x02\x80\x81\x07V\x02\x02\x81,\x03\x02\x02\x02\x82" +
|
|
174
|
-
"\x84\x07&\x02\x02\x83\x85\t\x02\x02\x02\x84\x83\x03\x02\x02\x02\x85\x86" +
|
|
175
|
-
"\x03\x02\x02\x02\x86\x84\x03\x02\x02\x02\x86\x87\x03\x02\x02\x02\x87\x88" +
|
|
176
|
-
"\x03\x02\x02\x02\x88\x89\x07&\x02\x02\x89.\x03\x02\x02\x02\x8A\x8E\t\x03" +
|
|
177
|
-
"\x02\x02\x8B\x8D\t\x04\x02\x02\x8C\x8B\x03\x02\x02\x02\x8D\x90\x03\x02" +
|
|
178
|
-
"\x02\x02\x8E\x8C\x03\x02\x02\x02\x8E\x8F\x03\x02\x02\x02\x8F0\x03\x02" +
|
|
179
|
-
"\x02\x02\x90\x8E\x03\x02\x02\x02\x91\x92\t\x02\x02\x02\x922\x03\x02\x02" +
|
|
180
|
-
"\x02\x93\x97\x07$\x02\x02\x94\x96\n\x05\x02\x02\x95\x94\x03\x02\x02\x02" +
|
|
181
|
-
"\x96\x99\x03\x02\x02\x02\x97\x95\x03\x02\x02\x02\x97\x98\x03\x02\x02\x02" +
|
|
182
|
-
"\x98\x9A\x03\x02\x02\x02\x99\x97\x03\x02\x02\x02\x9A\xA4\x07$\x02\x02" +
|
|
183
|
-
"\x9B\x9F\x07b\x02\x02\x9C\x9E\n\x06\x02\x02\x9D\x9C\x03\x02\x02\x02\x9E" +
|
|
184
|
-
"\xA1\x03\x02\x02\x02\x9F\x9D\x03\x02\x02\x02\x9F\xA0\x03\x02\x02\x02\xA0" +
|
|
185
|
-
"\xA2\x03\x02\x02\x02\xA1\x9F\x03\x02\x02\x02\xA2\xA4\x07b\x02\x02\xA3" +
|
|
186
|
-
"\x93\x03\x02\x02\x02\xA3\x9B\x03\x02\x02\x02\xA44\x03\x02\x02\x02\xA5" +
|
|
187
|
-
"\xAB\x07)\x02\x02\xA6\xAA\n\x07\x02\x02\xA7\xA8\x07)\x02\x02\xA8\xAA\x07" +
|
|
188
|
-
")\x02\x02\xA9\xA6\x03\x02\x02\x02\xA9\xA7\x03\x02\x02\x02\xAA\xAD\x03" +
|
|
189
|
-
"\x02\x02\x02\xAB\xA9\x03\x02\x02\x02\xAB\xAC\x03\x02\x02\x02\xAC\xAE\x03" +
|
|
190
|
-
"\x02\x02\x02\xAD\xAB\x03\x02\x02\x02\xAE\xAF\x07)\x02\x02\xAF6\x03\x02" +
|
|
191
|
-
"\x02\x02\xB0\xB1\t\b\x02\x02\xB1\xB2\x03\x02\x02\x02\xB2\xB3\b\x1C\x02" +
|
|
192
|
-
"\x02\xB38\x03\x02\x02\x02\v\x02s\x86\x8E\x97\x9F\xA3\xA9\xAB\x03\x02\x03" +
|
|
193
|
-
"\x02";
|
|
194
195
|
//# sourceMappingURL=GenericSqlLexer.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GenericSqlLexer.js","sourceRoot":"","sources":["../../../src/parser/GenericSqlLexer.ts"],"names":[],"mappings":";AAAA,kEAAkE;;;;;;;;;;;;;;;;;;;;;;;;;;AAIlE,kEAA+D;AAE/D,0CAAuC;AACvC,sEAAmE;AAKnE,4DAAyD;AAEzD,2DAA6C;AAG7C,MAAa,eAAgB,SAAQ,aAAK;
|
|
1
|
+
{"version":3,"file":"GenericSqlLexer.js","sourceRoot":"","sources":["../../../src/parser/GenericSqlLexer.ts"],"names":[],"mappings":"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"}
|