@questdb/sql-parser 0.1.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.
- package/CHANGELOG.md +4 -0
- package/LICENSE +190 -0
- package/README.md +228 -0
- package/dist/autocomplete/content-assist.d.ts +52 -0
- package/dist/autocomplete/index.d.ts +5 -0
- package/dist/autocomplete/provider.d.ts +20 -0
- package/dist/autocomplete/suggestion-builder.d.ts +16 -0
- package/dist/autocomplete/token-classification.d.ts +45 -0
- package/dist/autocomplete/types.d.ts +78 -0
- package/dist/grammar/constants.d.ts +1 -0
- package/dist/grammar/dataTypes.d.ts +1 -0
- package/dist/grammar/functions.d.ts +1 -0
- package/dist/grammar/index.cjs +709 -0
- package/dist/grammar/index.d.ts +5 -0
- package/dist/grammar/index.js +678 -0
- package/dist/grammar/keywords.d.ts +1 -0
- package/dist/grammar/operators.d.ts +1 -0
- package/dist/index.cjs +10363 -0
- package/dist/index.d.ts +34 -0
- package/dist/index.js +10302 -0
- package/dist/parser/ast.d.ts +794 -0
- package/dist/parser/lexer.d.ts +53 -0
- package/dist/parser/parser.d.ts +170 -0
- package/dist/parser/toSql.d.ts +2 -0
- package/dist/parser/tokens.d.ts +311 -0
- package/dist/parser/visitor.d.ts +191 -0
- package/package.json +88 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Lexer, TokenType } from "chevrotain";
|
|
2
|
+
import { IdentifierKeyword, Abort, Account, Accounts, Add, Alias, Align, All, Alter, And, Any, As, Asc, Asof, Assume, Attach, Atomic, Backup, Base, Batch, Between, Binary, Boolean, By, Bypass, Byte, Cache, Calendar, Cancel, Capacity, Cascade, Case, Cast, Char, Checkpoint, Column, Columns, Compile, Complete, CompressionCodec, CompressionLevel, CommitLag, Convert, Copy, Create, Cross, Cumulative, Current, Database, DataPageSize, Datestyle, Date, Day, Days, Decimal, Declare, Dedup, Default, DefaultTransactionReadOnly, Deferred, Delay, Delete, Delimiter, Desc, Detach, Details, Disable, Distinct, Double, Drop, Else, Enable, End, Error, Every, Except, Exclude, Exclusive, Exists, Exit, Explain, External, False, Fill, First, Float, Following, For, Foreign, Format, From, Full, Geohash, Grant, Group, Groups, Header, Hour, Hours, Http, If, Ignore, Ilike, Immediate, In, Include, Index, Inner, Insert, Incremental, Int, Integer, Intersect, Interval, Into, Ipv4, Is, Isolation, Jwk, Join, Keep, Key, Keys, Latest, Left, Length, Level, Like, Limit, Linear, List, Lock, Long, Long128, Long256, Lt, Manual, Maps, Materialized, MaxIdentifierLength, MaxUncommittedRows, Microsecond, Microseconds, Millennium, Millisecond, Milliseconds, Minute, Minutes, Month, Months, NaN, Nanosecond, Nanoseconds, No, Nocache, None, Not, Null, Nulls, O3MaxLag, Observation, Offset, On, Only, Option, Or, Order, Others, Outer, Over, Overridable, Owned, Param, Parameters, Parquet, ParquetVersion, PartitionBy, Partition, Partitions, Password, Period, Permissions, Pivot, Prepare, Preceding, Prev, Prevailing, Primary, Public, Query, Range, References, Refresh, Release, Reindex, Remove, Rename, Repair, Replace, Rest, Respect, Resume, Revoke, Right, Row, RowGroupSize, Rows, Sample, SearchPath, Second, Seconds, Select, ServerVersion, ServerVersionNum, Service, Set, Short, Show, Skip, SkipColumn, SkipRow, Snapshot, Splice, Squash, StandardConformingStrings, Start, StatisticsEnabled, String, Suspend, Symbol, System, Table, Tables, Then, Time, Timestamp, TimestampNs, To, Token, Tolerance, Transaction, TransactionIsolation, Transient, True, Truncate, Ttl, Txn, Type, Unbounded, Union, Unlock, Unpivot, Update, Upsert, User, Users, Uuid, Vacuum, Values, Varchar, Verification, View, Volume, Wal, Week, Weeks, When, Where, Window, With, Within, Writer, Year, Years, Zone, RawArrayEncoding, Uncompressed, Snappy, Gzip, Lz4, Zstd, Lz4Raw, Brotli, Lzo } from "./tokens";
|
|
3
|
+
export { IdentifierKeyword };
|
|
4
|
+
export { Abort, Account, Accounts, Add, Alias, Align, All, Alter, And, Any, As, Asc, Asof, Assume, Attach, Atomic, Backup, Base, Batch, Between, Binary, Boolean, By, Bypass, Byte, Cache, Calendar, Cancel, Capacity, Cascade, Case, Cast, Char, Checkpoint, Column, Columns, Compile, Complete, CompressionCodec, CompressionLevel, CommitLag, Convert, Copy, Create, Cross, Cumulative, Current, Database, DataPageSize, Datestyle, Date, Day, Days, Decimal, Declare, Dedup, Default, DefaultTransactionReadOnly, Deferred, Delay, Delete, Delimiter, Desc, Detach, Details, Disable, Distinct, Double, Drop, Else, Enable, End, Error, Every, Except, Exclude, Exclusive, Exists, Exit, Explain, External, False, Fill, First, Float, Following, For, Foreign, Format, From, Full, Geohash, Grant, Group, Groups, Header, Hour, Hours, Http, If, Ignore, Ilike, Immediate, In, Include, Index, Inner, Insert, Incremental, Int, Integer, Intersect, Interval, Into, Ipv4, Is, Isolation, Jwk, Join, Keep, Key, Keys, Latest, Left, Length, Level, Like, Limit, Linear, List, Lock, Long, Long128, Long256, Lt, Manual, Maps, Materialized, MaxIdentifierLength, MaxUncommittedRows, Microsecond, Microseconds, Millennium, Millisecond, Milliseconds, Minute, Minutes, Month, Months, NaN, Nanosecond, Nanoseconds, No, Nocache, None, Not, Null, Nulls, O3MaxLag, Observation, Offset, On, Only, Option, Or, Order, Others, Outer, Over, Overridable, Owned, Param, Parameters, Parquet, ParquetVersion, PartitionBy, Partition, Partitions, Password, Period, Permissions, Pivot, Prepare, Preceding, Prev, Prevailing, Primary, Public, Query, Range, References, Refresh, Release, Reindex, Remove, Rename, Repair, Replace, Rest, Respect, Resume, Revoke, Right, Row, RowGroupSize, Rows, Sample, SearchPath, Second, Seconds, Select, ServerVersion, ServerVersionNum, Service, Set, Short, Show, Skip, SkipColumn, SkipRow, Snapshot, Splice, Squash, StandardConformingStrings, Start, StatisticsEnabled, String, Suspend, Symbol, System, Table, Tables, Then, Time, Timestamp, TimestampNs, To, Token, Tolerance, Transaction, TransactionIsolation, Transient, True, Truncate, Ttl, Txn, Type, Unbounded, Union, Unlock, Unpivot, Update, Upsert, User, Users, Uuid, Vacuum, Values, Varchar, Verification, View, Volume, Wal, Week, Weeks, When, Where, Window, With, Within, Writer, Year, Years, Zone, RawArrayEncoding, Uncompressed, Snappy, Gzip, Lz4, Zstd, Lz4Raw, Brotli, Lzo, };
|
|
5
|
+
export declare const Star: TokenType;
|
|
6
|
+
export declare const Comma: TokenType;
|
|
7
|
+
export declare const Semicolon: TokenType;
|
|
8
|
+
export declare const LParen: TokenType;
|
|
9
|
+
export declare const RParen: TokenType;
|
|
10
|
+
export declare const LBracket: TokenType;
|
|
11
|
+
export declare const RBracket: TokenType;
|
|
12
|
+
export declare const Colon: TokenType;
|
|
13
|
+
export declare const ColonEquals: TokenType;
|
|
14
|
+
export declare const IPv4ContainedByOrEqual: TokenType;
|
|
15
|
+
export declare const IPv4ContainedBy: TokenType;
|
|
16
|
+
export declare const IPv4ContainsOrEqual: TokenType;
|
|
17
|
+
export declare const IPv4Contains: TokenType;
|
|
18
|
+
export declare const NotEquals: TokenType;
|
|
19
|
+
export declare const LessThanOrEqual: TokenType;
|
|
20
|
+
export declare const GreaterThanOrEqual: TokenType;
|
|
21
|
+
export declare const LessThan: TokenType;
|
|
22
|
+
export declare const GreaterThan: TokenType;
|
|
23
|
+
export declare const Equals: TokenType;
|
|
24
|
+
export declare const Plus: TokenType;
|
|
25
|
+
export declare const Minus: TokenType;
|
|
26
|
+
export declare const Divide: TokenType;
|
|
27
|
+
export declare const Modulo: TokenType;
|
|
28
|
+
export declare const Concat: TokenType;
|
|
29
|
+
export declare const BitAnd: TokenType;
|
|
30
|
+
export declare const BitXor: TokenType;
|
|
31
|
+
export declare const BitOr: TokenType;
|
|
32
|
+
export declare const RegexMatch: TokenType;
|
|
33
|
+
export declare const RegexNotMatch: TokenType;
|
|
34
|
+
export declare const RegexNotEquals: TokenType;
|
|
35
|
+
export declare const DoubleColon: TokenType;
|
|
36
|
+
export declare const VariableReference: TokenType;
|
|
37
|
+
export declare const AtSign: TokenType;
|
|
38
|
+
export declare const GeohashBinaryLiteral: TokenType;
|
|
39
|
+
export declare const GeohashLiteral: TokenType;
|
|
40
|
+
export declare const LongLiteral: TokenType;
|
|
41
|
+
export declare const DecimalLiteral: TokenType;
|
|
42
|
+
export declare const DurationLiteral: TokenType;
|
|
43
|
+
export declare const NumberLiteral: TokenType;
|
|
44
|
+
export declare const Dot: TokenType;
|
|
45
|
+
export declare const StringLiteral: TokenType;
|
|
46
|
+
export declare const QuotedIdentifier: TokenType;
|
|
47
|
+
export declare const Identifier: TokenType;
|
|
48
|
+
export declare const WhiteSpace: TokenType;
|
|
49
|
+
export declare const LineComment: TokenType;
|
|
50
|
+
export declare const BlockComment: TokenType;
|
|
51
|
+
export declare const allTokens: TokenType[];
|
|
52
|
+
export declare const QuestDBLexer: Lexer;
|
|
53
|
+
export declare function tokenize(input: string): import("chevrotain").ILexingResult;
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
import { CstParser, type TokenType } from "chevrotain";
|
|
2
|
+
declare class QuestDBParser extends CstParser {
|
|
3
|
+
constructor(config?: {
|
|
4
|
+
skipValidations?: boolean;
|
|
5
|
+
});
|
|
6
|
+
private _semicolonBoundedRecovery;
|
|
7
|
+
private _statementStartIdx;
|
|
8
|
+
findReSyncTokenType(): TokenType;
|
|
9
|
+
raiseNoAltException(occurrence: number, errMsgTypes: string): void;
|
|
10
|
+
raiseEarlyExitException(occurrence: number, prodType: number, userDefinedErrMsg: string): void;
|
|
11
|
+
private isTimeUnit;
|
|
12
|
+
statements: import("chevrotain").ParserMethod<[], import("chevrotain").CstNode>;
|
|
13
|
+
statement: import("chevrotain").ParserMethod<[], import("chevrotain").CstNode>;
|
|
14
|
+
private withStatement;
|
|
15
|
+
private selectStatement;
|
|
16
|
+
private withClause;
|
|
17
|
+
private cteDefinition;
|
|
18
|
+
private simpleSelect;
|
|
19
|
+
private setOperation;
|
|
20
|
+
private selectList;
|
|
21
|
+
private selectItem;
|
|
22
|
+
private qualifiedStar;
|
|
23
|
+
private fromClause;
|
|
24
|
+
private implicitSelectBody;
|
|
25
|
+
private implicitSelectStatement;
|
|
26
|
+
private tableRef;
|
|
27
|
+
private tableFunctionCall;
|
|
28
|
+
private tableFunctionName;
|
|
29
|
+
private joinClause;
|
|
30
|
+
private windowJoinBound;
|
|
31
|
+
private durationExpression;
|
|
32
|
+
private whereClause;
|
|
33
|
+
private sampleByClause;
|
|
34
|
+
private latestOnClause;
|
|
35
|
+
private fillClause;
|
|
36
|
+
private fillValue;
|
|
37
|
+
private alignToClause;
|
|
38
|
+
private fromToClause;
|
|
39
|
+
private groupByClause;
|
|
40
|
+
private orderByClause;
|
|
41
|
+
private orderByItem;
|
|
42
|
+
private limitClause;
|
|
43
|
+
private insertStatement;
|
|
44
|
+
private valuesClause;
|
|
45
|
+
private valuesList;
|
|
46
|
+
private updateStatement;
|
|
47
|
+
private setClause;
|
|
48
|
+
private declareClause;
|
|
49
|
+
private declareAssignment;
|
|
50
|
+
private createStatement;
|
|
51
|
+
private createViewBody;
|
|
52
|
+
private createTableBody;
|
|
53
|
+
private batchClause;
|
|
54
|
+
private dedupClause;
|
|
55
|
+
private createUserStatement;
|
|
56
|
+
private createGroupStatement;
|
|
57
|
+
private createServiceAccountStatement;
|
|
58
|
+
private createMaterializedViewBody;
|
|
59
|
+
private materializedViewRefresh;
|
|
60
|
+
private materializedViewPeriod;
|
|
61
|
+
private materializedViewPartition;
|
|
62
|
+
private columnDefinition;
|
|
63
|
+
private castDefinition;
|
|
64
|
+
private indexDefinition;
|
|
65
|
+
private tableParamName;
|
|
66
|
+
private tableParam;
|
|
67
|
+
private partitionPeriod;
|
|
68
|
+
private timeUnit;
|
|
69
|
+
private alterStatement;
|
|
70
|
+
private alterGroupStatement;
|
|
71
|
+
private alterViewStatement;
|
|
72
|
+
private alterUserStatement;
|
|
73
|
+
private alterServiceAccountStatement;
|
|
74
|
+
private alterUserAction;
|
|
75
|
+
private alterTableStatement;
|
|
76
|
+
private alterTableAction;
|
|
77
|
+
private convertPartitionTarget;
|
|
78
|
+
private alterMaterializedViewStatement;
|
|
79
|
+
private alterMaterializedViewAction;
|
|
80
|
+
private dropStatement;
|
|
81
|
+
private dropViewStatement;
|
|
82
|
+
private dropTableStatement;
|
|
83
|
+
private dropMaterializedViewStatement;
|
|
84
|
+
private dropUserStatement;
|
|
85
|
+
private dropGroupStatement;
|
|
86
|
+
private dropServiceAccountStatement;
|
|
87
|
+
private truncateTableStatement;
|
|
88
|
+
private renameTableStatement;
|
|
89
|
+
private addUserStatement;
|
|
90
|
+
private removeUserStatement;
|
|
91
|
+
private assumeServiceAccountStatement;
|
|
92
|
+
private exitServiceAccountStatement;
|
|
93
|
+
private cancelQueryStatement;
|
|
94
|
+
private showStatement;
|
|
95
|
+
private explainStatement;
|
|
96
|
+
private copyStatement;
|
|
97
|
+
private copyCancel;
|
|
98
|
+
private copyFrom;
|
|
99
|
+
private copyTo;
|
|
100
|
+
private copyOptions;
|
|
101
|
+
private copyOption;
|
|
102
|
+
private checkpointStatement;
|
|
103
|
+
private snapshotStatement;
|
|
104
|
+
private backupStatement;
|
|
105
|
+
private compileViewStatement;
|
|
106
|
+
private grantStatement;
|
|
107
|
+
private revokeStatement;
|
|
108
|
+
private permissionList;
|
|
109
|
+
private permissionToken;
|
|
110
|
+
private grantTableTarget;
|
|
111
|
+
private grantAssumeServiceAccountStatement;
|
|
112
|
+
private revokeAssumeServiceAccountStatement;
|
|
113
|
+
private vacuumTableStatement;
|
|
114
|
+
private resumeWalStatement;
|
|
115
|
+
private setTypeStatement;
|
|
116
|
+
private reindexTableStatement;
|
|
117
|
+
private refreshMaterializedViewStatement;
|
|
118
|
+
private pivotStatement;
|
|
119
|
+
private pivotBody;
|
|
120
|
+
private pivotAggregation;
|
|
121
|
+
private pivotForClause;
|
|
122
|
+
private pivotInValue;
|
|
123
|
+
private expression;
|
|
124
|
+
private orExpression;
|
|
125
|
+
private andExpression;
|
|
126
|
+
private notExpression;
|
|
127
|
+
private equalityExpression;
|
|
128
|
+
private relationalExpression;
|
|
129
|
+
private setExpression;
|
|
130
|
+
private bitOrExpression;
|
|
131
|
+
private bitXorExpression;
|
|
132
|
+
private bitAndExpression;
|
|
133
|
+
private concatExpression;
|
|
134
|
+
private ipv4ContainmentExpression;
|
|
135
|
+
private additiveExpression;
|
|
136
|
+
private multiplicativeExpression;
|
|
137
|
+
private unaryExpression;
|
|
138
|
+
private typeCastExpression;
|
|
139
|
+
private arraySubscript;
|
|
140
|
+
private primaryExpression;
|
|
141
|
+
private arrayLiteral;
|
|
142
|
+
private arrayBracketBody;
|
|
143
|
+
private arrayElement;
|
|
144
|
+
private castExpression;
|
|
145
|
+
private dataType;
|
|
146
|
+
private caseExpression;
|
|
147
|
+
private functionName;
|
|
148
|
+
private functionCall;
|
|
149
|
+
private identifierExpression;
|
|
150
|
+
private overClause;
|
|
151
|
+
private windowPartitionByClause;
|
|
152
|
+
private windowFrameClause;
|
|
153
|
+
private windowFrameBound;
|
|
154
|
+
private literal;
|
|
155
|
+
private booleanLiteral;
|
|
156
|
+
private stringOrIdentifier;
|
|
157
|
+
private stringOrQualifiedName;
|
|
158
|
+
private intervalValue;
|
|
159
|
+
private timeZoneValue;
|
|
160
|
+
private columnRef;
|
|
161
|
+
private qualifiedName;
|
|
162
|
+
private identifier;
|
|
163
|
+
}
|
|
164
|
+
export declare const parser: QuestDBParser;
|
|
165
|
+
export declare function parse(input: string): {
|
|
166
|
+
cst: import("chevrotain").CstNode;
|
|
167
|
+
lexErrors: import("chevrotain").ILexingError[];
|
|
168
|
+
parseErrors: import("chevrotain").IRecognitionException[];
|
|
169
|
+
};
|
|
170
|
+
export {};
|
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
import { TokenType } from "chevrotain";
|
|
2
|
+
export declare const IdentifierKeyword: TokenType;
|
|
3
|
+
/**
|
|
4
|
+
* Map from token name → original SQL keyword string (uppercased).
|
|
5
|
+
* Built during token generation so autocomplete doesn't need to
|
|
6
|
+
* reverse-engineer keyword text from regex patterns.
|
|
7
|
+
* e.g., "Select" → "SELECT", "DataPageSize" → "DATA_PAGE_SIZE"
|
|
8
|
+
*/
|
|
9
|
+
export declare const TOKEN_NAME_TO_KEYWORD: Map<string, string>;
|
|
10
|
+
export declare const IDENTIFIER_KEYWORD_NAMES: Set<string>;
|
|
11
|
+
/**
|
|
12
|
+
* All keyword tokens as a Map (name → token)
|
|
13
|
+
* Use this for dynamic access or iteration
|
|
14
|
+
*/
|
|
15
|
+
export declare const keywordTokens: Map<string, TokenType>;
|
|
16
|
+
/**
|
|
17
|
+
* All keyword tokens as an array (for Lexer construction)
|
|
18
|
+
* Order doesn't matter for keywords since they use word boundaries
|
|
19
|
+
*/
|
|
20
|
+
export declare const keywordTokenArray: TokenType[];
|
|
21
|
+
export declare const Abort: TokenType;
|
|
22
|
+
export declare const Account: TokenType;
|
|
23
|
+
export declare const Accounts: TokenType;
|
|
24
|
+
export declare const Add: TokenType;
|
|
25
|
+
export declare const Alias: TokenType;
|
|
26
|
+
export declare const Align: TokenType;
|
|
27
|
+
export declare const All: TokenType;
|
|
28
|
+
export declare const Alter: TokenType;
|
|
29
|
+
export declare const And: TokenType;
|
|
30
|
+
export declare const Any: TokenType;
|
|
31
|
+
export declare const As: TokenType;
|
|
32
|
+
export declare const Asof: TokenType;
|
|
33
|
+
export declare const Assume: TokenType;
|
|
34
|
+
export declare const Attach: TokenType;
|
|
35
|
+
export declare const Atomic: TokenType;
|
|
36
|
+
export declare const Backup: TokenType;
|
|
37
|
+
export declare const Base: TokenType;
|
|
38
|
+
export declare const Batch: TokenType;
|
|
39
|
+
export declare const Between: TokenType;
|
|
40
|
+
export declare const By: TokenType;
|
|
41
|
+
export declare const Bypass: TokenType;
|
|
42
|
+
export declare const Cache: TokenType;
|
|
43
|
+
export declare const Calendar: TokenType;
|
|
44
|
+
export declare const Cancel: TokenType;
|
|
45
|
+
export declare const Capacity: TokenType;
|
|
46
|
+
export declare const Cascade: TokenType;
|
|
47
|
+
export declare const Case: TokenType;
|
|
48
|
+
export declare const Cast: TokenType;
|
|
49
|
+
export declare const Checkpoint: TokenType;
|
|
50
|
+
export declare const Column: TokenType;
|
|
51
|
+
export declare const Columns: TokenType;
|
|
52
|
+
export declare const Compile: TokenType;
|
|
53
|
+
export declare const Complete: TokenType;
|
|
54
|
+
export declare const CompressionCodec: TokenType;
|
|
55
|
+
export declare const CompressionLevel: TokenType;
|
|
56
|
+
export declare const CommitLag: TokenType;
|
|
57
|
+
export declare const Convert: TokenType;
|
|
58
|
+
export declare const Copy: TokenType;
|
|
59
|
+
export declare const Create: TokenType;
|
|
60
|
+
export declare const Cross: TokenType;
|
|
61
|
+
export declare const Cumulative: TokenType;
|
|
62
|
+
export declare const Current: TokenType;
|
|
63
|
+
export declare const DataPageSize: TokenType;
|
|
64
|
+
export declare const Database: TokenType;
|
|
65
|
+
export declare const Datestyle: TokenType;
|
|
66
|
+
export declare const Declare: TokenType;
|
|
67
|
+
export declare const Dedup: TokenType;
|
|
68
|
+
export declare const Default: TokenType;
|
|
69
|
+
export declare const DefaultTransactionReadOnly: TokenType;
|
|
70
|
+
export declare const Deferred: TokenType;
|
|
71
|
+
export declare const Delay: TokenType;
|
|
72
|
+
export declare const Delete: TokenType;
|
|
73
|
+
export declare const Delimiter: TokenType;
|
|
74
|
+
export declare const Detach: TokenType;
|
|
75
|
+
export declare const Details: TokenType;
|
|
76
|
+
export declare const Disable: TokenType;
|
|
77
|
+
export declare const Distinct: TokenType;
|
|
78
|
+
export declare const Drop: TokenType;
|
|
79
|
+
export declare const Else: TokenType;
|
|
80
|
+
export declare const Enable: TokenType;
|
|
81
|
+
export declare const End: TokenType;
|
|
82
|
+
export declare const Error: TokenType;
|
|
83
|
+
export declare const Every: TokenType;
|
|
84
|
+
export declare const Except: TokenType;
|
|
85
|
+
export declare const Exclude: TokenType;
|
|
86
|
+
export declare const Exclusive: TokenType;
|
|
87
|
+
export declare const Exists: TokenType;
|
|
88
|
+
export declare const Exit: TokenType;
|
|
89
|
+
export declare const Explain: TokenType;
|
|
90
|
+
export declare const External: TokenType;
|
|
91
|
+
export declare const Fill: TokenType;
|
|
92
|
+
export declare const First: TokenType;
|
|
93
|
+
export declare const Following: TokenType;
|
|
94
|
+
export declare const For: TokenType;
|
|
95
|
+
export declare const Foreign: TokenType;
|
|
96
|
+
export declare const Format: TokenType;
|
|
97
|
+
export declare const From: TokenType;
|
|
98
|
+
export declare const Full: TokenType;
|
|
99
|
+
export declare const Grant: TokenType;
|
|
100
|
+
export declare const Group: TokenType;
|
|
101
|
+
export declare const Groups: TokenType;
|
|
102
|
+
export declare const Header: TokenType;
|
|
103
|
+
export declare const Http: TokenType;
|
|
104
|
+
export declare const If: TokenType;
|
|
105
|
+
export declare const Ignore: TokenType;
|
|
106
|
+
export declare const Ilike: TokenType;
|
|
107
|
+
export declare const Immediate: TokenType;
|
|
108
|
+
export declare const In: TokenType;
|
|
109
|
+
export declare const Include: TokenType;
|
|
110
|
+
export declare const Index: TokenType;
|
|
111
|
+
export declare const Inner: TokenType;
|
|
112
|
+
export declare const Insert: TokenType;
|
|
113
|
+
export declare const Incremental: TokenType;
|
|
114
|
+
export declare const Intersect: TokenType;
|
|
115
|
+
export declare const Into: TokenType;
|
|
116
|
+
export declare const Is: TokenType;
|
|
117
|
+
export declare const Isolation: TokenType;
|
|
118
|
+
export declare const Jwk: TokenType;
|
|
119
|
+
export declare const Join: TokenType;
|
|
120
|
+
export declare const Keep: TokenType;
|
|
121
|
+
export declare const Key: TokenType;
|
|
122
|
+
export declare const Keys: TokenType;
|
|
123
|
+
export declare const Latest: TokenType;
|
|
124
|
+
export declare const Left: TokenType;
|
|
125
|
+
export declare const Length: TokenType;
|
|
126
|
+
export declare const Level: TokenType;
|
|
127
|
+
export declare const Like: TokenType;
|
|
128
|
+
export declare const Limit: TokenType;
|
|
129
|
+
export declare const List: TokenType;
|
|
130
|
+
export declare const Lock: TokenType;
|
|
131
|
+
export declare const Lt: TokenType;
|
|
132
|
+
export declare const Maps: TokenType;
|
|
133
|
+
export declare const Materialized: TokenType;
|
|
134
|
+
export declare const Manual: TokenType;
|
|
135
|
+
export declare const MaxIdentifierLength: TokenType;
|
|
136
|
+
export declare const MaxUncommittedRows: TokenType;
|
|
137
|
+
export declare const No: TokenType;
|
|
138
|
+
export declare const Nocache: TokenType;
|
|
139
|
+
export declare const Not: TokenType;
|
|
140
|
+
export declare const Nulls: TokenType;
|
|
141
|
+
export declare const O3MaxLag: TokenType;
|
|
142
|
+
export declare const Observation: TokenType;
|
|
143
|
+
export declare const Offset: TokenType;
|
|
144
|
+
export declare const On: TokenType;
|
|
145
|
+
export declare const Only: TokenType;
|
|
146
|
+
export declare const Option: TokenType;
|
|
147
|
+
export declare const Or: TokenType;
|
|
148
|
+
export declare const Order: TokenType;
|
|
149
|
+
export declare const Others: TokenType;
|
|
150
|
+
export declare const Outer: TokenType;
|
|
151
|
+
export declare const Over: TokenType;
|
|
152
|
+
export declare const Overridable: TokenType;
|
|
153
|
+
export declare const Owned: TokenType;
|
|
154
|
+
export declare const Param: TokenType;
|
|
155
|
+
export declare const Parameters: TokenType;
|
|
156
|
+
export declare const Parquet: TokenType;
|
|
157
|
+
export declare const ParquetVersion: TokenType;
|
|
158
|
+
export declare const PartitionBy: TokenType;
|
|
159
|
+
export declare const Partition: TokenType;
|
|
160
|
+
export declare const Partitions: TokenType;
|
|
161
|
+
export declare const Password: TokenType;
|
|
162
|
+
export declare const Period: TokenType;
|
|
163
|
+
export declare const Permissions: TokenType;
|
|
164
|
+
export declare const Pivot: TokenType;
|
|
165
|
+
export declare const Prepare: TokenType;
|
|
166
|
+
export declare const Preceding: TokenType;
|
|
167
|
+
export declare const Prevailing: TokenType;
|
|
168
|
+
export declare const Primary: TokenType;
|
|
169
|
+
export declare const Public: TokenType;
|
|
170
|
+
export declare const Query: TokenType;
|
|
171
|
+
export declare const Range: TokenType;
|
|
172
|
+
export declare const References: TokenType;
|
|
173
|
+
export declare const Refresh: TokenType;
|
|
174
|
+
export declare const Release: TokenType;
|
|
175
|
+
export declare const Reindex: TokenType;
|
|
176
|
+
export declare const Remove: TokenType;
|
|
177
|
+
export declare const Rename: TokenType;
|
|
178
|
+
export declare const Repair: TokenType;
|
|
179
|
+
export declare const Replace: TokenType;
|
|
180
|
+
export declare const Rest: TokenType;
|
|
181
|
+
export declare const Respect: TokenType;
|
|
182
|
+
export declare const Resume: TokenType;
|
|
183
|
+
export declare const Revoke: TokenType;
|
|
184
|
+
export declare const Right: TokenType;
|
|
185
|
+
export declare const Row: TokenType;
|
|
186
|
+
export declare const RowGroupSize: TokenType;
|
|
187
|
+
export declare const Rows: TokenType;
|
|
188
|
+
export declare const Sample: TokenType;
|
|
189
|
+
export declare const SearchPath: TokenType;
|
|
190
|
+
export declare const ServerVersion: TokenType;
|
|
191
|
+
export declare const ServerVersionNum: TokenType;
|
|
192
|
+
export declare const Select: TokenType;
|
|
193
|
+
export declare const Service: TokenType;
|
|
194
|
+
export declare const Set: TokenType;
|
|
195
|
+
export declare const Show: TokenType;
|
|
196
|
+
export declare const Skip: TokenType;
|
|
197
|
+
export declare const SkipColumn: TokenType;
|
|
198
|
+
export declare const SkipRow: TokenType;
|
|
199
|
+
export declare const Snapshot: TokenType;
|
|
200
|
+
export declare const Splice: TokenType;
|
|
201
|
+
export declare const Squash: TokenType;
|
|
202
|
+
export declare const StandardConformingStrings: TokenType;
|
|
203
|
+
export declare const Start: TokenType;
|
|
204
|
+
export declare const StatisticsEnabled: TokenType;
|
|
205
|
+
export declare const Suspend: TokenType;
|
|
206
|
+
export declare const System: TokenType;
|
|
207
|
+
export declare const Table: TokenType;
|
|
208
|
+
export declare const Tables: TokenType;
|
|
209
|
+
export declare const Then: TokenType;
|
|
210
|
+
export declare const Time: TokenType;
|
|
211
|
+
export declare const To: TokenType;
|
|
212
|
+
export declare const Token: TokenType;
|
|
213
|
+
export declare const Tolerance: TokenType;
|
|
214
|
+
export declare const Transaction: TokenType;
|
|
215
|
+
export declare const TransactionIsolation: TokenType;
|
|
216
|
+
export declare const Transient: TokenType;
|
|
217
|
+
export declare const Truncate: TokenType;
|
|
218
|
+
export declare const Ttl: TokenType;
|
|
219
|
+
export declare const Txn: TokenType;
|
|
220
|
+
export declare const Type: TokenType;
|
|
221
|
+
export declare const Unbounded: TokenType;
|
|
222
|
+
export declare const Union: TokenType;
|
|
223
|
+
export declare const Unlock: TokenType;
|
|
224
|
+
export declare const Unpivot: TokenType;
|
|
225
|
+
export declare const Update: TokenType;
|
|
226
|
+
export declare const Upsert: TokenType;
|
|
227
|
+
export declare const User: TokenType;
|
|
228
|
+
export declare const Users: TokenType;
|
|
229
|
+
export declare const Vacuum: TokenType;
|
|
230
|
+
export declare const Values: TokenType;
|
|
231
|
+
export declare const Verification: TokenType;
|
|
232
|
+
export declare const View: TokenType;
|
|
233
|
+
export declare const Volume: TokenType;
|
|
234
|
+
export declare const Wal: TokenType;
|
|
235
|
+
export declare const When: TokenType;
|
|
236
|
+
export declare const Where: TokenType;
|
|
237
|
+
export declare const Window: TokenType;
|
|
238
|
+
export declare const With: TokenType;
|
|
239
|
+
export declare const Within: TokenType;
|
|
240
|
+
export declare const Writer: TokenType;
|
|
241
|
+
export declare const Zone: TokenType;
|
|
242
|
+
export declare const RawArrayEncoding: TokenType;
|
|
243
|
+
export declare const Uncompressed: TokenType;
|
|
244
|
+
export declare const Snappy: TokenType;
|
|
245
|
+
export declare const Gzip: TokenType;
|
|
246
|
+
export declare const Lz4: TokenType;
|
|
247
|
+
export declare const Zstd: TokenType;
|
|
248
|
+
export declare const Lz4Raw: TokenType;
|
|
249
|
+
export declare const Brotli: TokenType;
|
|
250
|
+
export declare const Lzo: TokenType;
|
|
251
|
+
export declare const Binary: TokenType;
|
|
252
|
+
export declare const Boolean: TokenType;
|
|
253
|
+
export declare const Byte: TokenType;
|
|
254
|
+
export declare const Char: TokenType;
|
|
255
|
+
export declare const Date: TokenType;
|
|
256
|
+
export declare const Decimal: TokenType;
|
|
257
|
+
export declare const Double: TokenType;
|
|
258
|
+
export declare const Float: TokenType;
|
|
259
|
+
export declare const Geohash: TokenType;
|
|
260
|
+
export declare const Int: TokenType;
|
|
261
|
+
export declare const Integer: TokenType;
|
|
262
|
+
export declare const Interval: TokenType;
|
|
263
|
+
export declare const Ipv4: TokenType;
|
|
264
|
+
export declare const Long: TokenType;
|
|
265
|
+
export declare const Long128: TokenType;
|
|
266
|
+
export declare const Long256: TokenType;
|
|
267
|
+
export declare const Short: TokenType;
|
|
268
|
+
export declare const String: TokenType;
|
|
269
|
+
export declare const Symbol: TokenType;
|
|
270
|
+
export declare const Timestamp: TokenType;
|
|
271
|
+
export declare const TimestampNs: TokenType;
|
|
272
|
+
export declare const Uuid: TokenType;
|
|
273
|
+
export declare const Varchar: TokenType;
|
|
274
|
+
export declare const True: TokenType;
|
|
275
|
+
export declare const False: TokenType;
|
|
276
|
+
export declare const Null: TokenType;
|
|
277
|
+
export declare const NaN: TokenType;
|
|
278
|
+
export declare const None: TokenType;
|
|
279
|
+
export declare const Prev: TokenType;
|
|
280
|
+
export declare const Linear: TokenType;
|
|
281
|
+
export declare const Asc: TokenType;
|
|
282
|
+
export declare const Desc: TokenType;
|
|
283
|
+
export declare const Hour: TokenType;
|
|
284
|
+
export declare const Hours: TokenType;
|
|
285
|
+
export declare const Day: TokenType;
|
|
286
|
+
export declare const Days: TokenType;
|
|
287
|
+
export declare const Week: TokenType;
|
|
288
|
+
export declare const Weeks: TokenType;
|
|
289
|
+
export declare const Month: TokenType;
|
|
290
|
+
export declare const Months: TokenType;
|
|
291
|
+
export declare const Year: TokenType;
|
|
292
|
+
export declare const Years: TokenType;
|
|
293
|
+
export declare const Minute: TokenType;
|
|
294
|
+
export declare const Minutes: TokenType;
|
|
295
|
+
export declare const Second: TokenType;
|
|
296
|
+
export declare const Seconds: TokenType;
|
|
297
|
+
export declare const Millisecond: TokenType;
|
|
298
|
+
export declare const Milliseconds: TokenType;
|
|
299
|
+
export declare const Microsecond: TokenType;
|
|
300
|
+
export declare const Microseconds: TokenType;
|
|
301
|
+
export declare const Nanosecond: TokenType;
|
|
302
|
+
export declare const Nanoseconds: TokenType;
|
|
303
|
+
export declare const Century: TokenType;
|
|
304
|
+
export declare const Decade: TokenType;
|
|
305
|
+
export declare const Millennium: TokenType;
|
|
306
|
+
export declare const Quarter: TokenType;
|
|
307
|
+
export declare const Dow: TokenType;
|
|
308
|
+
export declare const Doy: TokenType;
|
|
309
|
+
export declare const Epoch: TokenType;
|
|
310
|
+
export declare const Isodow: TokenType;
|
|
311
|
+
export declare const Isoyear: TokenType;
|