@malloydata/malloy 0.0.34-dev230523182411 → 0.0.34
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/dialect/dialect.d.ts +20 -5
- package/dist/dialect/dialect.js +40 -7
- package/dist/dialect/duckdb.d.ts +5 -5
- package/dist/dialect/duckdb.js +54 -120
- package/dist/dialect/postgres.d.ts +5 -5
- package/dist/dialect/postgres.js +50 -38
- package/dist/dialect/standardsql.d.ts +5 -5
- package/dist/dialect/standardsql.js +78 -42
- package/dist/lang/ast/elements/refined-source.js +8 -0
- package/dist/lang/ast/executors/reduce-executor.js +4 -0
- package/dist/lang/ast/expressions/expr-cast.js +1 -1
- package/dist/lang/ast/expressions/expr-granular-time.d.ts +2 -2
- package/dist/lang/ast/expressions/expr-granular-time.js +10 -19
- package/dist/lang/ast/expressions/expr-time-extract.js +31 -4
- package/dist/lang/ast/expressions/time-literal.d.ts +12 -6
- package/dist/lang/ast/expressions/time-literal.js +74 -67
- package/dist/lang/ast/field-space/dynamic-space.d.ts +2 -0
- package/dist/lang/ast/field-space/dynamic-space.js +6 -0
- package/dist/lang/ast/field-space/query-spaces.js +3 -0
- package/dist/lang/ast/index.d.ts +1 -0
- package/dist/lang/ast/index.js +1 -0
- package/dist/lang/ast/source-properties/timezone-statement.d.ts +6 -0
- package/dist/lang/ast/source-properties/timezone-statement.js +35 -0
- package/dist/lang/ast/sources/named-source.js +1 -1
- package/dist/lang/ast/sources/sql-source.js +4 -0
- package/dist/lang/ast/time-utils.d.ts +2 -1
- package/dist/lang/ast/time-utils.js +5 -1
- package/dist/lang/ast/types/expression-def.d.ts +2 -0
- package/dist/lang/ast/types/expression-def.js +48 -18
- package/dist/lang/ast/types/query-property.d.ts +2 -1
- package/dist/lang/ast/types/query-property.js +3 -1
- package/dist/lang/ast/types/source-property.d.ts +2 -1
- package/dist/lang/ast/types/source-property.js +3 -1
- package/dist/lang/lib/Malloy/MalloyLexer.d.ts +3 -3
- package/dist/lang/lib/Malloy/MalloyLexer.js +958 -972
- package/dist/lang/lib/Malloy/MalloyParser.d.ts +52 -33
- package/dist/lang/lib/Malloy/MalloyParser.js +1243 -1128
- package/dist/lang/lib/Malloy/MalloyParserListener.d.ts +24 -0
- package/dist/lang/lib/Malloy/MalloyParserVisitor.d.ts +15 -0
- package/dist/lang/malloy-to-ast.d.ts +2 -0
- package/dist/lang/malloy-to-ast.js +6 -0
- package/dist/lang/test/parse-expects.d.ts +1 -0
- package/dist/lang/test/parse-expects.js +11 -1
- package/dist/lang/test/parse.spec.js +29 -37
- package/dist/malloy.js +31 -23
- package/dist/model/malloy_query.d.ts +2 -0
- package/dist/model/malloy_query.js +42 -41
- package/dist/model/malloy_types.d.ts +3 -2
- package/package.json +1 -1
|
@@ -82,6 +82,9 @@ class DynamicSpace extends static_space_1.StaticSpace {
|
|
|
82
82
|
addFieldDef(fd) {
|
|
83
83
|
this.setEntry((0, field_utils_1.nameOf)(fd), this.defToSpaceField(fd));
|
|
84
84
|
}
|
|
85
|
+
setTimezone(tz) {
|
|
86
|
+
this.newTimezone = tz;
|
|
87
|
+
}
|
|
85
88
|
structDef() {
|
|
86
89
|
const parameters = this.fromStruct.parameters || {};
|
|
87
90
|
if (this.final === undefined) {
|
|
@@ -135,6 +138,9 @@ class DynamicSpace extends static_space_1.StaticSpace {
|
|
|
135
138
|
join.fixupJoinOn(this, missingOn);
|
|
136
139
|
}
|
|
137
140
|
}
|
|
141
|
+
if (this.newTimezone) {
|
|
142
|
+
this.final.queryTimezone = this.newTimezone;
|
|
143
|
+
}
|
|
138
144
|
this.isComplete();
|
|
139
145
|
return this.final;
|
|
140
146
|
}
|
|
@@ -218,6 +218,9 @@ class QuerySpace extends refined_space_1.RefinedSpace {
|
|
|
218
218
|
}
|
|
219
219
|
segment.extendSource = (0, field_utils_1.mergeFields)(segment.extendSource, newExtends);
|
|
220
220
|
}
|
|
221
|
+
if (this.newTimezone) {
|
|
222
|
+
segment.queryTimezone = this.newTimezone;
|
|
223
|
+
}
|
|
221
224
|
this.isComplete();
|
|
222
225
|
return segment;
|
|
223
226
|
}
|
package/dist/lang/ast/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './source-properties/field-list-edit';
|
|
|
7
7
|
export * from './source-properties/primary-key';
|
|
8
8
|
export * from './source-properties/renames';
|
|
9
9
|
export * from './source-properties/turtles';
|
|
10
|
+
export * from './source-properties/timezone-statement';
|
|
10
11
|
export * from './expressions/apply';
|
|
11
12
|
export * from './expressions/binary-numeric';
|
|
12
13
|
export * from './expressions/boolean';
|
package/dist/lang/ast/index.js
CHANGED
|
@@ -45,6 +45,7 @@ __exportStar(require("./source-properties/field-list-edit"), exports);
|
|
|
45
45
|
__exportStar(require("./source-properties/primary-key"), exports);
|
|
46
46
|
__exportStar(require("./source-properties/renames"), exports);
|
|
47
47
|
__exportStar(require("./source-properties/turtles"), exports);
|
|
48
|
+
__exportStar(require("./source-properties/timezone-statement"), exports);
|
|
48
49
|
__exportStar(require("./expressions/apply"), exports);
|
|
49
50
|
__exportStar(require("./expressions/binary-numeric"), exports);
|
|
50
51
|
__exportStar(require("./expressions/boolean"), exports);
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Copyright 2023 Google LLC
|
|
4
|
+
*
|
|
5
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
* a copy of this software and associated documentation files
|
|
7
|
+
* (the "Software"), to deal in the Software without restriction,
|
|
8
|
+
* including without limitation the rights to use, copy, modify, merge,
|
|
9
|
+
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
10
|
+
* and to permit persons to whom the Software is furnished to do so,
|
|
11
|
+
* subject to the following conditions:
|
|
12
|
+
*
|
|
13
|
+
* The above copyright notice and this permission notice shall be
|
|
14
|
+
* included in all copies or substantial portions of the Software.
|
|
15
|
+
*
|
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19
|
+
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
20
|
+
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
21
|
+
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
22
|
+
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
+
*/
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
exports.TimezoneStatement = void 0;
|
|
26
|
+
const malloy_element_1 = require("../types/malloy-element");
|
|
27
|
+
class TimezoneStatement extends malloy_element_1.MalloyElement {
|
|
28
|
+
constructor(tz) {
|
|
29
|
+
super();
|
|
30
|
+
this.tz = tz;
|
|
31
|
+
this.elementType = 'timezone';
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
exports.TimezoneStatement = TimezoneStatement;
|
|
35
|
+
//# sourceMappingURL=timezone-statement.js.map
|
|
@@ -123,7 +123,7 @@ class NamedSource extends source_1.Source {
|
|
|
123
123
|
const pVal = pExpr.constantValue();
|
|
124
124
|
let value = pVal.value;
|
|
125
125
|
if (pVal.dataType !== decl.type) {
|
|
126
|
-
value = (0, time_utils_1.castTo)(decl.type, pVal.value, true);
|
|
126
|
+
value = (0, time_utils_1.castTo)(decl.type, pVal.value, pVal.dataType, true);
|
|
127
127
|
}
|
|
128
128
|
decl.value = value;
|
|
129
129
|
}
|
|
@@ -49,6 +49,10 @@ class SQLSource extends named_source_1.NamedSource {
|
|
|
49
49
|
const { declaredSQLBlock, ...newEntry } = entry;
|
|
50
50
|
return newEntry;
|
|
51
51
|
}
|
|
52
|
+
else if (!(0, malloy_types_1.isSQLBlockStruct)(entry)) {
|
|
53
|
+
this.log(`Cannot use 'from_sql()' to explore '${this.refName}'`);
|
|
54
|
+
return;
|
|
55
|
+
}
|
|
52
56
|
this.log(`Cannot use 'from_sql()' to explore '${this.refName}'`);
|
|
53
57
|
}
|
|
54
58
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { AtomicFieldType, Expr, Fragment, TimeFieldType, TimestampUnit } from '../../model/malloy_types';
|
|
2
2
|
import { TimeResult } from './types/time-result';
|
|
3
|
+
import { FieldValueType } from './types/type-desc';
|
|
3
4
|
export declare function timeOffset(timeType: TimeFieldType, from: Expr, op: '+' | '-', n: Expr, timeframe: TimestampUnit): Expr;
|
|
4
|
-
export declare function castTo(castType: AtomicFieldType, from: Expr, safe?: boolean): Expr;
|
|
5
|
+
export declare function castTo(castType: AtomicFieldType, from: Expr, fromType: FieldValueType, safe?: boolean): Expr;
|
|
5
6
|
export declare function castTimestampToDate(from: Expr, safe?: boolean): Expr;
|
|
6
7
|
export declare function castDateToTimestamp(from: Expr, safe?: boolean): Expr;
|
|
7
8
|
export declare function resolution(timeframe: string): TimeFieldType;
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
*/
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
25
|
exports.dateOffset = exports.timestampOffset = exports.timeResult = exports.resolution = exports.castDateToTimestamp = exports.castTimestampToDate = exports.castTo = exports.timeOffset = void 0;
|
|
26
|
+
const malloy_types_1 = require("../../model/malloy_types");
|
|
26
27
|
const utils_1 = require("./expressions/utils");
|
|
27
28
|
function timeOffset(timeType, from, op, n, timeframe) {
|
|
28
29
|
return [
|
|
@@ -37,7 +38,7 @@ function timeOffset(timeType, from, op, n, timeframe) {
|
|
|
37
38
|
];
|
|
38
39
|
}
|
|
39
40
|
exports.timeOffset = timeOffset;
|
|
40
|
-
function castTo(castType, from, safe = false) {
|
|
41
|
+
function castTo(castType, from, fromType, safe = false) {
|
|
41
42
|
const cast = {
|
|
42
43
|
type: 'dialect',
|
|
43
44
|
function: 'cast',
|
|
@@ -45,6 +46,9 @@ function castTo(castType, from, safe = false) {
|
|
|
45
46
|
expr: from,
|
|
46
47
|
safe,
|
|
47
48
|
};
|
|
49
|
+
if ((0, malloy_types_1.isAtomicFieldType)(fromType)) {
|
|
50
|
+
cast.srcType = fromType;
|
|
51
|
+
}
|
|
48
52
|
return [cast];
|
|
49
53
|
}
|
|
50
54
|
exports.castTo = castTo;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { TimestampUnit } from '../../../model/malloy_types';
|
|
2
2
|
import { ExprValue } from './expr-value';
|
|
3
3
|
import { FieldSpace } from './field-space';
|
|
4
|
+
import { FieldValueType } from './type-desc';
|
|
4
5
|
import { MalloyElement } from './malloy-element';
|
|
5
6
|
/**
|
|
6
7
|
* Root node for any element in an expression. These essentially
|
|
@@ -55,6 +56,7 @@ export declare class ExprDuration extends ExpressionDef {
|
|
|
55
56
|
apply(fs: FieldSpace, op: string, left: ExpressionDef): ExprValue;
|
|
56
57
|
getExpression(_fs: FieldSpace): ExprValue;
|
|
57
58
|
}
|
|
59
|
+
export declare function getMorphicValue(mv: ExprValue, mt: FieldValueType): ExprValue | undefined;
|
|
58
60
|
/**
|
|
59
61
|
* All of the magic of malloy expressions eventually flows to here,
|
|
60
62
|
* where an operator is applied to two values. Depending on the
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23
23
|
*/
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.applyBinary = exports.ExprDuration = exports.ExpressionDef = void 0;
|
|
25
|
+
exports.applyBinary = exports.getMorphicValue = exports.ExprDuration = exports.ExpressionDef = void 0;
|
|
26
26
|
const malloy_types_1 = require("../../../model/malloy_types");
|
|
27
27
|
const ast_utils_1 = require("../ast-utils");
|
|
28
28
|
const utils_1 = require("../expressions/utils");
|
|
@@ -120,11 +120,17 @@ class ExprDuration extends ExpressionDef {
|
|
|
120
120
|
value: result,
|
|
121
121
|
}, resultGranularity);
|
|
122
122
|
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
123
|
+
if ((0, malloy_types_1.isDateUnit)(this.timeframe)) {
|
|
124
|
+
return (0, time_utils_1.timeResult)({
|
|
125
|
+
dataType: 'date',
|
|
126
|
+
expressionType: (0, malloy_types_1.maxExpressionType)(lhs.expressionType, num.expressionType),
|
|
127
|
+
value: (0, time_utils_1.timeOffset)('date', lhs.value, op, num.value, this.timeframe),
|
|
128
|
+
}, resultGranularity);
|
|
129
|
+
}
|
|
130
|
+
else {
|
|
131
|
+
this.log(`Cannot offset date by ${this.timeframe}`);
|
|
132
|
+
return (0, ast_utils_1.errorFor)('ofsset date error');
|
|
133
|
+
}
|
|
128
134
|
}
|
|
129
135
|
return super.apply(fs, op, left);
|
|
130
136
|
}
|
|
@@ -137,19 +143,43 @@ class ExprDuration extends ExpressionDef {
|
|
|
137
143
|
}
|
|
138
144
|
}
|
|
139
145
|
exports.ExprDuration = ExprDuration;
|
|
140
|
-
function
|
|
141
|
-
if (
|
|
146
|
+
function willMorphTo(ev, t) {
|
|
147
|
+
if (ev.dataType === t) {
|
|
148
|
+
return ev.value;
|
|
149
|
+
}
|
|
150
|
+
return ev.morphic && ev.morphic[t];
|
|
151
|
+
}
|
|
152
|
+
function getMorphicValue(mv, mt) {
|
|
153
|
+
if (mv.dataType === mt) {
|
|
154
|
+
return mv;
|
|
155
|
+
}
|
|
156
|
+
if (mv.morphic && mv.morphic[mt]) {
|
|
157
|
+
return {
|
|
158
|
+
...mv,
|
|
159
|
+
dataType: mt,
|
|
160
|
+
value: mv.morphic[mt],
|
|
161
|
+
};
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
exports.getMorphicValue = getMorphicValue;
|
|
165
|
+
function timeCompare(left, lhs, op, rhs) {
|
|
166
|
+
const leftIsTime = (0, malloy_types_1.isTimeFieldType)(lhs.dataType);
|
|
167
|
+
const rightIsTime = (0, malloy_types_1.isTimeFieldType)(rhs.dataType);
|
|
168
|
+
if (leftIsTime && rightIsTime) {
|
|
142
169
|
if (lhs.dataType !== rhs.dataType) {
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
if (
|
|
146
|
-
|
|
170
|
+
const lval = willMorphTo(lhs, 'timestamp');
|
|
171
|
+
const rval = willMorphTo(rhs, 'timestamp');
|
|
172
|
+
if (lval && rval) {
|
|
173
|
+
return (0, utils_1.compose)(lval, op, rval);
|
|
147
174
|
}
|
|
148
|
-
else {
|
|
149
|
-
rval = (0, time_utils_1.castTimestampToDate)(rval);
|
|
150
|
-
}
|
|
151
|
-
return (0, utils_1.compose)(lval, op, rval);
|
|
152
175
|
}
|
|
176
|
+
else {
|
|
177
|
+
return (0, utils_1.compose)(lhs.value, op, rhs.value);
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
if (leftIsTime || rightIsTime) {
|
|
181
|
+
left.log(`Cannot compare a ${lhs.dataType} to a ${rhs.dataType}`);
|
|
182
|
+
return ['false'];
|
|
153
183
|
}
|
|
154
184
|
return undefined;
|
|
155
185
|
}
|
|
@@ -209,7 +239,7 @@ function equality(fs, left, op, right) {
|
|
|
209
239
|
}
|
|
210
240
|
}
|
|
211
241
|
}
|
|
212
|
-
let value = timeCompare(lhs, op, rhs) || (0, utils_1.compose)(lhs.value, op, rhs.value);
|
|
242
|
+
let value = timeCompare(left, lhs, op, rhs) || (0, utils_1.compose)(lhs.value, op, rhs.value);
|
|
213
243
|
if (lhs.dataType !== 'unknown' && rhs.dataType !== 'unknown') {
|
|
214
244
|
switch (op) {
|
|
215
245
|
case '~':
|
|
@@ -254,7 +284,7 @@ function compare(fs, left, op, right) {
|
|
|
254
284
|
if (noCompare) {
|
|
255
285
|
return { ...noCompare, dataType: 'boolean' };
|
|
256
286
|
}
|
|
257
|
-
const value = timeCompare(lhs, op, rhs) || (0, utils_1.compose)(lhs.value, op, rhs.value);
|
|
287
|
+
const value = timeCompare(left, lhs, op, rhs) || (0, utils_1.compose)(lhs.value, op, rhs.value);
|
|
258
288
|
return {
|
|
259
289
|
dataType: 'boolean',
|
|
260
290
|
expressionType,
|
|
@@ -13,5 +13,6 @@ import { Ordering } from '../query-properties/ordering';
|
|
|
13
13
|
import { ProjectStatement } from '../query-properties/project-statement';
|
|
14
14
|
import { SampleProperty } from '../query-properties/sampling';
|
|
15
15
|
import { Top } from '../query-properties/top';
|
|
16
|
-
|
|
16
|
+
import { TimezoneStatement } from '../source-properties/timezone-statement';
|
|
17
|
+
export declare type QueryProperty = Ordering | Top | Limit | Filter | Index | SampleProperty | Joins | DeclareFields | ProjectStatement | NestReference | NestDefinition | NestReference | Nests | Aggregate | GroupBy | TimezoneStatement;
|
|
17
18
|
export declare function isQueryProperty(q: MalloyElement): q is QueryProperty;
|
|
@@ -36,6 +36,7 @@ const ordering_1 = require("../query-properties/ordering");
|
|
|
36
36
|
const project_statement_1 = require("../query-properties/project-statement");
|
|
37
37
|
const sampling_1 = require("../query-properties/sampling");
|
|
38
38
|
const top_1 = require("../query-properties/top");
|
|
39
|
+
const timezone_statement_1 = require("../source-properties/timezone-statement");
|
|
39
40
|
function isQueryProperty(q) {
|
|
40
41
|
return (q instanceof ordering_1.Ordering ||
|
|
41
42
|
q instanceof top_1.Top ||
|
|
@@ -49,7 +50,8 @@ function isQueryProperty(q) {
|
|
|
49
50
|
q instanceof aggregate_1.Aggregate ||
|
|
50
51
|
q instanceof nests_1.Nests ||
|
|
51
52
|
(0, nest_1.isNestedQuery)(q) ||
|
|
52
|
-
q instanceof group_by_1.GroupBy
|
|
53
|
+
q instanceof group_by_1.GroupBy ||
|
|
54
|
+
q instanceof timezone_statement_1.TimezoneStatement);
|
|
53
55
|
}
|
|
54
56
|
exports.isQueryProperty = isQueryProperty;
|
|
55
57
|
//# sourceMappingURL=query-property.js.map
|
|
@@ -6,5 +6,6 @@ import { Renames } from '../source-properties/renames';
|
|
|
6
6
|
import { PrimaryKey } from '../source-properties/primary-key';
|
|
7
7
|
import { Turtles } from '../source-properties/turtles';
|
|
8
8
|
import { MalloyElement } from './malloy-element';
|
|
9
|
-
|
|
9
|
+
import { TimezoneStatement } from '../source-properties/timezone-statement';
|
|
10
|
+
export declare type SourceProperty = Filter | Joins | DeclareFields | FieldListEdit | Renames | PrimaryKey | Turtles | TimezoneStatement;
|
|
10
11
|
export declare function isSourceProperty(p: MalloyElement): p is SourceProperty;
|
|
@@ -30,6 +30,7 @@ const field_list_edit_1 = require("../source-properties/field-list-edit");
|
|
|
30
30
|
const renames_1 = require("../source-properties/renames");
|
|
31
31
|
const primary_key_1 = require("../source-properties/primary-key");
|
|
32
32
|
const turtles_1 = require("../source-properties/turtles");
|
|
33
|
+
const timezone_statement_1 = require("../source-properties/timezone-statement");
|
|
33
34
|
function isSourceProperty(p) {
|
|
34
35
|
return (p instanceof filters_1.Filter ||
|
|
35
36
|
p instanceof joins_1.Joins ||
|
|
@@ -37,7 +38,8 @@ function isSourceProperty(p) {
|
|
|
37
38
|
p instanceof field_list_edit_1.FieldListEdit ||
|
|
38
39
|
p instanceof renames_1.Renames ||
|
|
39
40
|
p instanceof primary_key_1.PrimaryKey ||
|
|
40
|
-
p instanceof turtles_1.Turtles
|
|
41
|
+
p instanceof turtles_1.Turtles ||
|
|
42
|
+
p instanceof timezone_statement_1.TimezoneStatement);
|
|
41
43
|
}
|
|
42
44
|
exports.isSourceProperty = isSourceProperty;
|
|
43
45
|
//# sourceMappingURL=source-property.js.map
|
|
@@ -29,9 +29,9 @@ export declare class MalloyLexer extends Lexer {
|
|
|
29
29
|
static readonly SELECT = 24;
|
|
30
30
|
static readonly SOURCE = 25;
|
|
31
31
|
static readonly SQL = 26;
|
|
32
|
-
static readonly
|
|
33
|
-
static readonly
|
|
34
|
-
static readonly
|
|
32
|
+
static readonly TOP = 27;
|
|
33
|
+
static readonly WHERE = 28;
|
|
34
|
+
static readonly TIMEZONE = 29;
|
|
35
35
|
static readonly ALL = 30;
|
|
36
36
|
static readonly AND = 31;
|
|
37
37
|
static readonly AS = 32;
|