@malloydata/malloy-interfaces 0.0.408 → 0.0.410
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/reserved_words.js +19 -31
- package/package.json +1 -1
package/dist/reserved_words.js
CHANGED
|
@@ -7,33 +7,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
7
7
|
exports.RESERVED_WORDS = void 0;
|
|
8
8
|
// TODO this should come from Malloy directly, rather than being hard-coded here.
|
|
9
9
|
exports.RESERVED_WORDS = [
|
|
10
|
-
'accept',
|
|
11
|
-
'aggregate',
|
|
12
|
-
'declare',
|
|
13
|
-
'dimension',
|
|
14
|
-
'except',
|
|
15
|
-
'explore',
|
|
16
|
-
'group_by',
|
|
17
|
-
'having',
|
|
18
|
-
'index',
|
|
19
|
-
'join_cross',
|
|
20
|
-
'join_one',
|
|
21
|
-
'join_many',
|
|
22
|
-
'limit',
|
|
23
|
-
'measure',
|
|
24
|
-
'nest',
|
|
25
|
-
'order_by',
|
|
26
|
-
'primary_key',
|
|
27
|
-
'project',
|
|
28
|
-
'query',
|
|
29
|
-
'rename',
|
|
30
|
-
'sample',
|
|
31
|
-
'source',
|
|
32
|
-
'sql',
|
|
33
|
-
'turduck',
|
|
34
|
-
'top',
|
|
35
|
-
'where',
|
|
36
10
|
'all',
|
|
11
|
+
'and',
|
|
37
12
|
'as',
|
|
38
13
|
'asc',
|
|
39
14
|
'avg',
|
|
@@ -41,7 +16,7 @@ exports.RESERVED_WORDS = [
|
|
|
41
16
|
'by',
|
|
42
17
|
'case',
|
|
43
18
|
'cast',
|
|
44
|
-
'
|
|
19
|
+
'compose',
|
|
45
20
|
'count',
|
|
46
21
|
'date',
|
|
47
22
|
'day',
|
|
@@ -51,17 +26,25 @@ exports.RESERVED_WORDS = [
|
|
|
51
26
|
'else',
|
|
52
27
|
'end',
|
|
53
28
|
'exclude',
|
|
29
|
+
'export',
|
|
30
|
+
'extend',
|
|
54
31
|
'false',
|
|
32
|
+
'filter',
|
|
55
33
|
'for',
|
|
56
34
|
'from',
|
|
57
|
-
'
|
|
35
|
+
'full',
|
|
58
36
|
'has',
|
|
59
37
|
'hour',
|
|
60
38
|
'hours',
|
|
61
39
|
'import',
|
|
40
|
+
'in',
|
|
41
|
+
'include',
|
|
42
|
+
'inner',
|
|
43
|
+
'internal',
|
|
62
44
|
'is',
|
|
63
45
|
'json',
|
|
64
|
-
'
|
|
46
|
+
'left',
|
|
47
|
+
'like',
|
|
65
48
|
'max',
|
|
66
49
|
'min',
|
|
67
50
|
'minute',
|
|
@@ -75,25 +58,30 @@ exports.RESERVED_WORDS = [
|
|
|
75
58
|
'on',
|
|
76
59
|
'or',
|
|
77
60
|
'pick',
|
|
61
|
+
'private',
|
|
62
|
+
'public',
|
|
78
63
|
'quarter',
|
|
79
64
|
'quarters',
|
|
65
|
+
'right',
|
|
80
66
|
'second',
|
|
81
67
|
'seconds',
|
|
68
|
+
'source',
|
|
69
|
+
'sql',
|
|
82
70
|
'string',
|
|
83
71
|
'sum',
|
|
84
72
|
'table',
|
|
85
73
|
'then',
|
|
86
74
|
'this',
|
|
87
75
|
'timestamp',
|
|
76
|
+
'timestamptz',
|
|
88
77
|
'to',
|
|
89
78
|
'true',
|
|
90
|
-
'
|
|
79
|
+
'virtual',
|
|
91
80
|
'week',
|
|
92
81
|
'weeks',
|
|
93
82
|
'when',
|
|
94
83
|
'with',
|
|
95
84
|
'year',
|
|
96
85
|
'years',
|
|
97
|
-
'ungrouped',
|
|
98
86
|
];
|
|
99
87
|
//# sourceMappingURL=reserved_words.js.map
|