@pgsql/transform 17.6.2 → 17.7.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/13/enum-to-int.d.ts +7 -0
- package/13/enum-to-int.js +2165 -0
- package/13/enum-to-str.d.ts +7 -0
- package/13/enum-to-str.js +2165 -0
- package/13/enums.d.ts +15 -22
- package/13/runtime-schema.d.ts +17 -0
- package/13/runtime-schema.js +8419 -0
- package/13/types.d.ts +1079 -1304
- package/14/enum-to-int.d.ts +7 -0
- package/14/enum-to-int.js +2205 -0
- package/14/enum-to-str.d.ts +7 -0
- package/14/enum-to-str.js +2205 -0
- package/14/enums.d.ts +62 -0
- package/14/enums.js +2 -0
- package/14/runtime-schema.d.ts +17 -0
- package/14/runtime-schema.js +8695 -0
- package/14/types.d.ts +2164 -0
- package/14/types.js +2 -0
- package/15/enum-to-int.d.ts +7 -0
- package/15/enum-to-int.js +2255 -0
- package/15/enum-to-str.d.ts +7 -0
- package/15/enum-to-str.js +2255 -0
- package/15/enums.d.ts +64 -0
- package/15/enums.js +2 -0
- package/15/runtime-schema.d.ts +17 -0
- package/15/runtime-schema.js +8955 -0
- package/15/types.d.ts +2222 -0
- package/15/types.js +2 -0
- package/16/enum-to-int.d.ts +7 -0
- package/16/enum-to-int.js +2344 -0
- package/16/enum-to-str.d.ts +7 -0
- package/16/enum-to-str.js +2344 -0
- package/16/enums.d.ts +69 -0
- package/16/enums.js +2 -0
- package/16/runtime-schema.d.ts +17 -0
- package/16/runtime-schema.js +9339 -0
- package/16/types.d.ts +2328 -0
- package/16/types.js +2 -0
- package/17/enum-to-int.d.ts +7 -0
- package/17/enum-to-int.js +2501 -0
- package/17/enum-to-str.d.ts +7 -0
- package/17/enum-to-str.js +2501 -0
- package/17/enums.d.ts +1 -1
- package/17/runtime-schema.d.ts +17 -0
- package/17/runtime-schema.js +10010 -0
- package/17/types.d.ts +1 -1
- package/esm/13/enum-to-int.js +2161 -0
- package/esm/13/enum-to-str.js +2161 -0
- package/esm/13/runtime-schema.js +8416 -0
- package/esm/14/enum-to-int.js +2201 -0
- package/esm/14/enum-to-str.js +2201 -0
- package/esm/14/enums.js +1 -0
- package/esm/14/runtime-schema.js +8692 -0
- package/esm/14/types.js +1 -0
- package/esm/15/enum-to-int.js +2251 -0
- package/esm/15/enum-to-str.js +2251 -0
- package/esm/15/enums.js +1 -0
- package/esm/15/runtime-schema.js +8952 -0
- package/esm/15/types.js +1 -0
- package/esm/16/enum-to-int.js +2340 -0
- package/esm/16/enum-to-str.js +2340 -0
- package/esm/16/enums.js +1 -0
- package/esm/16/runtime-schema.js +9336 -0
- package/esm/16/types.js +1 -0
- package/esm/17/enum-to-int.js +2497 -0
- package/esm/17/enum-to-str.js +2497 -0
- package/esm/17/runtime-schema.js +10007 -0
- package/esm/index.js +15 -1309
- package/esm/multi-version-transformer.js +60 -0
- package/esm/transformers/context.js +1 -0
- package/esm/transformers/v13-to-v14.js +2745 -0
- package/esm/transformers/v14-to-v15.js +1215 -0
- package/esm/transformers/v15-to-v16.js +2876 -0
- package/esm/transformers/v16-to-v17.js +1483 -0
- package/esm/transformers-direct/index.js +8 -0
- package/esm/transformers-direct/v13-to-v17/index.js +74 -0
- package/esm/transformers-direct/v14-to-v17/index.js +63 -0
- package/esm/transformers-direct/v15-to-v17/index.js +53 -0
- package/esm/transformers-direct/v16-to-v17/index.js +40 -0
- package/index.d.ts +18 -5
- package/index.js +29 -1311
- package/multi-version-transformer.d.ts +9 -0
- package/multi-version-transformer.js +64 -0
- package/package.json +8 -4
- package/transformers/context.d.ts +4 -0
- package/transformers/context.js +2 -0
- package/transformers/v13-to-v14.d.ts +252 -0
- package/transformers/v13-to-v14.js +2749 -0
- package/transformers/v14-to-v15.d.ts +615 -0
- package/transformers/v14-to-v15.js +1219 -0
- package/transformers/v15-to-v16.d.ts +626 -0
- package/transformers/v15-to-v16.js +2880 -0
- package/transformers/v16-to-v17.d.ts +637 -0
- package/transformers/v16-to-v17.js +1487 -0
- package/transformers-direct/index.d.ts +8 -0
- package/transformers-direct/index.js +15 -0
- package/transformers-direct/v13-to-v17/index.d.ts +27 -0
- package/transformers-direct/v13-to-v17/index.js +78 -0
- package/transformers-direct/v14-to-v17/index.d.ts +26 -0
- package/transformers-direct/v14-to-v17/index.js +67 -0
- package/transformers-direct/v15-to-v17/index.d.ts +25 -0
- package/transformers-direct/v15-to-v17/index.js +57 -0
- package/transformers-direct/v16-to-v17/index.d.ts +24 -0
- package/transformers-direct/v16-to-v17/index.js +44 -0
|
@@ -0,0 +1,615 @@
|
|
|
1
|
+
import * as PG14 from '../14/types';
|
|
2
|
+
import * as PG15 from '../15/types';
|
|
3
|
+
import { TransformerContext } from './context';
|
|
4
|
+
/**
|
|
5
|
+
* V14 to V15 AST Transformer
|
|
6
|
+
* Transforms PostgreSQL v14 AST nodes to v15 format
|
|
7
|
+
*/
|
|
8
|
+
export declare class V14ToV15Transformer {
|
|
9
|
+
transform(node: PG14.Node, context?: TransformerContext): any;
|
|
10
|
+
visit(node: PG14.Node, context?: TransformerContext): any;
|
|
11
|
+
getNodeType(node: PG14.Node): any;
|
|
12
|
+
getNodeData(node: PG14.Node): any;
|
|
13
|
+
private transformGenericNode;
|
|
14
|
+
ParseResult(node: PG14.ParseResult, context: TransformerContext): PG15.ParseResult;
|
|
15
|
+
RawStmt(node: PG14.RawStmt, context: TransformerContext): {
|
|
16
|
+
RawStmt: PG15.RawStmt;
|
|
17
|
+
};
|
|
18
|
+
SelectStmt(node: PG14.SelectStmt, context: TransformerContext): {
|
|
19
|
+
SelectStmt: PG15.SelectStmt;
|
|
20
|
+
};
|
|
21
|
+
A_Expr(node: PG14.A_Expr, context: TransformerContext): {
|
|
22
|
+
A_Expr: PG15.A_Expr;
|
|
23
|
+
};
|
|
24
|
+
InsertStmt(node: PG14.InsertStmt, context: TransformerContext): {
|
|
25
|
+
InsertStmt: PG15.InsertStmt;
|
|
26
|
+
};
|
|
27
|
+
UpdateStmt(node: PG14.UpdateStmt, context: TransformerContext): {
|
|
28
|
+
UpdateStmt: PG15.UpdateStmt;
|
|
29
|
+
};
|
|
30
|
+
DeleteStmt(node: PG14.DeleteStmt, context: TransformerContext): {
|
|
31
|
+
DeleteStmt: PG15.DeleteStmt;
|
|
32
|
+
};
|
|
33
|
+
WithClause(node: PG14.WithClause, context: TransformerContext): {
|
|
34
|
+
WithClause: PG15.WithClause;
|
|
35
|
+
};
|
|
36
|
+
ResTarget(node: PG14.ResTarget, context: TransformerContext): {
|
|
37
|
+
ResTarget: PG15.ResTarget;
|
|
38
|
+
};
|
|
39
|
+
BoolExpr(node: PG14.BoolExpr, context: TransformerContext): {
|
|
40
|
+
BoolExpr: PG15.BoolExpr;
|
|
41
|
+
};
|
|
42
|
+
FuncCall(node: PG14.FuncCall, context: TransformerContext): {
|
|
43
|
+
FuncCall: PG15.FuncCall;
|
|
44
|
+
};
|
|
45
|
+
FuncExpr(node: PG14.FuncExpr, context: TransformerContext): {
|
|
46
|
+
FuncExpr: PG15.FuncExpr;
|
|
47
|
+
};
|
|
48
|
+
A_Const(node: PG14.A_Const, context: TransformerContext): {
|
|
49
|
+
A_Const: PG15.A_Const;
|
|
50
|
+
};
|
|
51
|
+
ColumnRef(node: PG14.ColumnRef, context: TransformerContext): {
|
|
52
|
+
ColumnRef: PG15.ColumnRef;
|
|
53
|
+
};
|
|
54
|
+
TypeName(node: PG14.TypeName, context: TransformerContext): {
|
|
55
|
+
TypeName: PG15.TypeName;
|
|
56
|
+
};
|
|
57
|
+
Alias(node: PG14.Alias, context: TransformerContext): {
|
|
58
|
+
Alias: PG15.Alias;
|
|
59
|
+
};
|
|
60
|
+
RangeVar(node: PG14.RangeVar, context: TransformerContext): {
|
|
61
|
+
RangeVar: PG15.RangeVar;
|
|
62
|
+
};
|
|
63
|
+
A_ArrayExpr(node: PG14.A_ArrayExpr, context: TransformerContext): {
|
|
64
|
+
A_ArrayExpr: PG15.A_ArrayExpr;
|
|
65
|
+
};
|
|
66
|
+
A_Indices(node: PG14.A_Indices, context: TransformerContext): {
|
|
67
|
+
A_Indices: PG15.A_Indices;
|
|
68
|
+
};
|
|
69
|
+
A_Indirection(node: PG14.A_Indirection, context: TransformerContext): {
|
|
70
|
+
A_Indirection: PG15.A_Indirection;
|
|
71
|
+
};
|
|
72
|
+
A_Star(node: PG14.A_Star, context: TransformerContext): {
|
|
73
|
+
A_Star: PG15.A_Star;
|
|
74
|
+
};
|
|
75
|
+
CaseExpr(node: PG14.CaseExpr, context: TransformerContext): {
|
|
76
|
+
CaseExpr: PG15.CaseExpr;
|
|
77
|
+
};
|
|
78
|
+
CoalesceExpr(node: PG14.CoalesceExpr, context: TransformerContext): {
|
|
79
|
+
CoalesceExpr: PG15.CoalesceExpr;
|
|
80
|
+
};
|
|
81
|
+
TypeCast(node: PG14.TypeCast, context: TransformerContext): {
|
|
82
|
+
TypeCast: PG15.TypeCast;
|
|
83
|
+
} | {
|
|
84
|
+
A_Const: PG15.A_Const;
|
|
85
|
+
};
|
|
86
|
+
CollateClause(node: PG14.CollateClause, context: TransformerContext): {
|
|
87
|
+
CollateClause: PG15.CollateClause;
|
|
88
|
+
};
|
|
89
|
+
BooleanTest(node: PG14.BooleanTest, context: TransformerContext): {
|
|
90
|
+
BooleanTest: PG15.BooleanTest;
|
|
91
|
+
};
|
|
92
|
+
NullTest(node: PG14.NullTest, context: TransformerContext): {
|
|
93
|
+
NullTest: PG15.NullTest;
|
|
94
|
+
};
|
|
95
|
+
String(node: PG14.String, context: TransformerContext): {
|
|
96
|
+
String: PG15.String;
|
|
97
|
+
};
|
|
98
|
+
Integer(node: PG14.Integer, context: TransformerContext): {
|
|
99
|
+
Integer: PG15.Integer;
|
|
100
|
+
} | {
|
|
101
|
+
Boolean: PG15.Boolean;
|
|
102
|
+
};
|
|
103
|
+
Float(node: PG14.Float, context: TransformerContext): {
|
|
104
|
+
Float: PG15.Float;
|
|
105
|
+
};
|
|
106
|
+
BitString(node: PG14.BitString, context: TransformerContext): {
|
|
107
|
+
BitString: PG15.BitString;
|
|
108
|
+
};
|
|
109
|
+
Null(node: PG14.Node, context: TransformerContext): any;
|
|
110
|
+
List(node: PG14.List, context: TransformerContext): {
|
|
111
|
+
List: PG15.List;
|
|
112
|
+
};
|
|
113
|
+
CreateStmt(node: PG14.CreateStmt, context: TransformerContext): {
|
|
114
|
+
CreateStmt: PG15.CreateStmt;
|
|
115
|
+
};
|
|
116
|
+
ColumnDef(node: PG14.ColumnDef, context: TransformerContext): {
|
|
117
|
+
ColumnDef: PG15.ColumnDef;
|
|
118
|
+
};
|
|
119
|
+
Constraint(node: PG14.Constraint, context: TransformerContext): {
|
|
120
|
+
Constraint: PG15.Constraint;
|
|
121
|
+
};
|
|
122
|
+
SubLink(node: PG14.SubLink, context: TransformerContext): {
|
|
123
|
+
SubLink: PG15.SubLink;
|
|
124
|
+
};
|
|
125
|
+
CaseWhen(node: PG14.CaseWhen, context: TransformerContext): {
|
|
126
|
+
CaseWhen: PG15.CaseWhen;
|
|
127
|
+
};
|
|
128
|
+
WindowDef(node: PG14.WindowDef, context: TransformerContext): {
|
|
129
|
+
WindowDef: PG15.WindowDef;
|
|
130
|
+
};
|
|
131
|
+
SortBy(node: PG14.SortBy, context: TransformerContext): {
|
|
132
|
+
SortBy: PG15.SortBy;
|
|
133
|
+
};
|
|
134
|
+
GroupingSet(node: PG14.GroupingSet, context: TransformerContext): {
|
|
135
|
+
GroupingSet: PG15.GroupingSet;
|
|
136
|
+
};
|
|
137
|
+
CommonTableExpr(node: PG14.CommonTableExpr, context: TransformerContext): {
|
|
138
|
+
CommonTableExpr: PG15.CommonTableExpr;
|
|
139
|
+
};
|
|
140
|
+
ParamRef(node: PG14.ParamRef, context: TransformerContext): {
|
|
141
|
+
ParamRef: PG15.ParamRef;
|
|
142
|
+
};
|
|
143
|
+
LockingClause(node: any, context: TransformerContext): {
|
|
144
|
+
LockingClause: PG15.LockingClause;
|
|
145
|
+
};
|
|
146
|
+
MinMaxExpr(node: PG14.MinMaxExpr, context: TransformerContext): {
|
|
147
|
+
MinMaxExpr: PG15.MinMaxExpr;
|
|
148
|
+
};
|
|
149
|
+
RowExpr(node: PG14.RowExpr, context: TransformerContext): {
|
|
150
|
+
RowExpr: PG15.RowExpr;
|
|
151
|
+
};
|
|
152
|
+
OpExpr(node: PG14.OpExpr, context: TransformerContext): {
|
|
153
|
+
OpExpr: PG15.OpExpr;
|
|
154
|
+
};
|
|
155
|
+
DistinctExpr(node: PG14.DistinctExpr, context: TransformerContext): {
|
|
156
|
+
DistinctExpr: PG15.DistinctExpr;
|
|
157
|
+
};
|
|
158
|
+
NullIfExpr(node: PG14.NullIfExpr, context: TransformerContext): {
|
|
159
|
+
NullIfExpr: PG15.NullIfExpr;
|
|
160
|
+
};
|
|
161
|
+
ScalarArrayOpExpr(node: PG14.ScalarArrayOpExpr, context: TransformerContext): {
|
|
162
|
+
ScalarArrayOpExpr: PG15.ScalarArrayOpExpr;
|
|
163
|
+
};
|
|
164
|
+
Aggref(node: PG14.Aggref, context: TransformerContext): {
|
|
165
|
+
Aggref: PG15.Aggref;
|
|
166
|
+
};
|
|
167
|
+
WindowFunc(node: PG14.WindowFunc, context: TransformerContext): {
|
|
168
|
+
WindowFunc: PG15.WindowFunc;
|
|
169
|
+
};
|
|
170
|
+
FieldSelect(node: PG14.FieldSelect, context: TransformerContext): {
|
|
171
|
+
FieldSelect: PG15.FieldSelect;
|
|
172
|
+
};
|
|
173
|
+
RelabelType(node: PG14.RelabelType, context: TransformerContext): {
|
|
174
|
+
RelabelType: PG15.RelabelType;
|
|
175
|
+
};
|
|
176
|
+
CoerceViaIO(node: PG14.CoerceViaIO, context: TransformerContext): {
|
|
177
|
+
CoerceViaIO: PG15.CoerceViaIO;
|
|
178
|
+
};
|
|
179
|
+
ArrayCoerceExpr(node: PG14.ArrayCoerceExpr, context: TransformerContext): {
|
|
180
|
+
ArrayCoerceExpr: PG15.ArrayCoerceExpr;
|
|
181
|
+
};
|
|
182
|
+
ConvertRowtypeExpr(node: PG14.ConvertRowtypeExpr, context: TransformerContext): {
|
|
183
|
+
ConvertRowtypeExpr: PG15.ConvertRowtypeExpr;
|
|
184
|
+
};
|
|
185
|
+
NamedArgExpr(node: PG14.NamedArgExpr, context: TransformerContext): {
|
|
186
|
+
NamedArgExpr: PG15.NamedArgExpr;
|
|
187
|
+
};
|
|
188
|
+
ViewStmt(node: PG14.ViewStmt, context: TransformerContext): {
|
|
189
|
+
ViewStmt: PG15.ViewStmt;
|
|
190
|
+
};
|
|
191
|
+
IndexStmt(node: PG14.IndexStmt, context: TransformerContext): {
|
|
192
|
+
IndexStmt: PG15.IndexStmt;
|
|
193
|
+
};
|
|
194
|
+
IndexElem(node: PG14.IndexElem, context: TransformerContext): {
|
|
195
|
+
IndexElem: PG15.IndexElem;
|
|
196
|
+
};
|
|
197
|
+
PartitionElem(node: PG14.PartitionElem, context: TransformerContext): {
|
|
198
|
+
PartitionElem: PG15.PartitionElem;
|
|
199
|
+
};
|
|
200
|
+
PartitionCmd(node: PG14.PartitionCmd, context: TransformerContext): {
|
|
201
|
+
PartitionCmd: PG15.PartitionCmd;
|
|
202
|
+
};
|
|
203
|
+
JoinExpr(node: PG14.JoinExpr, context: TransformerContext): {
|
|
204
|
+
JoinExpr: PG15.JoinExpr;
|
|
205
|
+
};
|
|
206
|
+
FromExpr(node: PG14.FromExpr, context: TransformerContext): {
|
|
207
|
+
FromExpr: PG15.FromExpr;
|
|
208
|
+
};
|
|
209
|
+
TransactionStmt(node: PG14.TransactionStmt, context: TransformerContext): {
|
|
210
|
+
TransactionStmt: PG15.TransactionStmt;
|
|
211
|
+
};
|
|
212
|
+
VariableSetStmt(node: PG14.VariableSetStmt, context: TransformerContext): {
|
|
213
|
+
VariableSetStmt: PG15.VariableSetStmt;
|
|
214
|
+
};
|
|
215
|
+
VariableShowStmt(node: PG14.VariableShowStmt, context: TransformerContext): {
|
|
216
|
+
VariableShowStmt: PG15.VariableShowStmt;
|
|
217
|
+
};
|
|
218
|
+
CreateSchemaStmt(node: PG14.CreateSchemaStmt, context: TransformerContext): {
|
|
219
|
+
CreateSchemaStmt: PG15.CreateSchemaStmt;
|
|
220
|
+
};
|
|
221
|
+
RoleSpec(node: PG14.RoleSpec, context: TransformerContext): {
|
|
222
|
+
RoleSpec: PG15.RoleSpec;
|
|
223
|
+
};
|
|
224
|
+
DropStmt(node: PG14.DropStmt, context: TransformerContext): {
|
|
225
|
+
DropStmt: PG15.DropStmt;
|
|
226
|
+
};
|
|
227
|
+
TruncateStmt(node: PG14.TruncateStmt, context: TransformerContext): {
|
|
228
|
+
TruncateStmt: PG15.TruncateStmt;
|
|
229
|
+
};
|
|
230
|
+
ReturnStmt(node: PG14.ReturnStmt, context: TransformerContext): {
|
|
231
|
+
ReturnStmt: PG15.ReturnStmt;
|
|
232
|
+
};
|
|
233
|
+
PLAssignStmt(node: PG14.PLAssignStmt, context: TransformerContext): {
|
|
234
|
+
PLAssignStmt: PG15.PLAssignStmt;
|
|
235
|
+
};
|
|
236
|
+
CopyStmt(node: PG14.CopyStmt, context: TransformerContext): {
|
|
237
|
+
CopyStmt: PG15.CopyStmt;
|
|
238
|
+
};
|
|
239
|
+
AlterTableStmt(node: PG14.AlterTableStmt, context: TransformerContext): {
|
|
240
|
+
AlterTableStmt: PG15.AlterTableStmt;
|
|
241
|
+
};
|
|
242
|
+
AlterTableCmd(node: PG14.AlterTableCmd, context: TransformerContext): {
|
|
243
|
+
AlterTableCmd: PG15.AlterTableCmd;
|
|
244
|
+
};
|
|
245
|
+
CreateFunctionStmt(node: PG14.CreateFunctionStmt, context: TransformerContext): {
|
|
246
|
+
CreateFunctionStmt: PG15.CreateFunctionStmt;
|
|
247
|
+
};
|
|
248
|
+
FunctionParameter(node: PG14.FunctionParameter, context: TransformerContext): {
|
|
249
|
+
FunctionParameter: PG15.FunctionParameter;
|
|
250
|
+
};
|
|
251
|
+
CompositeTypeStmt(node: PG14.CompositeTypeStmt, context: TransformerContext): {
|
|
252
|
+
CompositeTypeStmt: PG15.CompositeTypeStmt;
|
|
253
|
+
};
|
|
254
|
+
CreateEnumStmt(node: PG14.CreateEnumStmt, context: TransformerContext): {
|
|
255
|
+
CreateEnumStmt: PG15.CreateEnumStmt;
|
|
256
|
+
};
|
|
257
|
+
CreateDomainStmt(node: PG14.CreateDomainStmt, context: TransformerContext): {
|
|
258
|
+
CreateDomainStmt: PG15.CreateDomainStmt;
|
|
259
|
+
};
|
|
260
|
+
CreateRoleStmt(node: PG14.CreateRoleStmt, context: TransformerContext): {
|
|
261
|
+
CreateRoleStmt: PG15.CreateRoleStmt;
|
|
262
|
+
};
|
|
263
|
+
DefElem(node: PG14.DefElem, context: TransformerContext): {
|
|
264
|
+
DefElem: PG15.DefElem;
|
|
265
|
+
};
|
|
266
|
+
CreateTableSpaceStmt(node: PG14.CreateTableSpaceStmt, context: TransformerContext): {
|
|
267
|
+
CreateTableSpaceStmt: PG15.CreateTableSpaceStmt;
|
|
268
|
+
};
|
|
269
|
+
DropTableSpaceStmt(node: PG14.DropTableSpaceStmt, context: TransformerContext): {
|
|
270
|
+
DropTableSpaceStmt: PG15.DropTableSpaceStmt;
|
|
271
|
+
};
|
|
272
|
+
AlterTableSpaceOptionsStmt(node: PG14.AlterTableSpaceOptionsStmt, context: TransformerContext): {
|
|
273
|
+
AlterTableSpaceOptionsStmt: PG15.AlterTableSpaceOptionsStmt;
|
|
274
|
+
};
|
|
275
|
+
CreateExtensionStmt(node: PG14.CreateExtensionStmt, context: TransformerContext): {
|
|
276
|
+
CreateExtensionStmt: PG15.CreateExtensionStmt;
|
|
277
|
+
};
|
|
278
|
+
AlterExtensionStmt(node: PG14.AlterExtensionStmt, context: TransformerContext): {
|
|
279
|
+
AlterExtensionStmt: PG15.AlterExtensionStmt;
|
|
280
|
+
};
|
|
281
|
+
CreateFdwStmt(node: PG14.CreateFdwStmt, context: TransformerContext): {
|
|
282
|
+
CreateFdwStmt: PG15.CreateFdwStmt;
|
|
283
|
+
};
|
|
284
|
+
SetOperationStmt(node: PG14.SetOperationStmt, context: TransformerContext): {
|
|
285
|
+
SetOperationStmt: PG15.SetOperationStmt;
|
|
286
|
+
};
|
|
287
|
+
ReplicaIdentityStmt(node: PG14.ReplicaIdentityStmt, context: TransformerContext): {
|
|
288
|
+
ReplicaIdentityStmt: PG15.ReplicaIdentityStmt;
|
|
289
|
+
};
|
|
290
|
+
AlterCollationStmt(node: PG14.AlterCollationStmt, context: TransformerContext): {
|
|
291
|
+
AlterCollationStmt: PG15.AlterCollationStmt;
|
|
292
|
+
};
|
|
293
|
+
AlterDomainStmt(node: PG14.AlterDomainStmt, context: TransformerContext): {
|
|
294
|
+
AlterDomainStmt: PG15.AlterDomainStmt;
|
|
295
|
+
};
|
|
296
|
+
PrepareStmt(node: PG14.PrepareStmt, context: TransformerContext): {
|
|
297
|
+
PrepareStmt: PG15.PrepareStmt;
|
|
298
|
+
};
|
|
299
|
+
ExecuteStmt(node: PG14.ExecuteStmt, context: TransformerContext): {
|
|
300
|
+
ExecuteStmt: PG15.ExecuteStmt;
|
|
301
|
+
};
|
|
302
|
+
DeallocateStmt(node: PG14.DeallocateStmt, context: TransformerContext): {
|
|
303
|
+
DeallocateStmt: PG15.DeallocateStmt;
|
|
304
|
+
};
|
|
305
|
+
NotifyStmt(node: PG14.NotifyStmt, context: TransformerContext): {
|
|
306
|
+
NotifyStmt: PG15.NotifyStmt;
|
|
307
|
+
};
|
|
308
|
+
ListenStmt(node: PG14.ListenStmt, context: TransformerContext): {
|
|
309
|
+
ListenStmt: PG15.ListenStmt;
|
|
310
|
+
};
|
|
311
|
+
UnlistenStmt(node: PG14.UnlistenStmt, context: TransformerContext): {
|
|
312
|
+
UnlistenStmt: PG15.UnlistenStmt;
|
|
313
|
+
};
|
|
314
|
+
CheckPointStmt(node: PG14.CheckPointStmt, context: TransformerContext): {
|
|
315
|
+
CheckPointStmt: PG15.CheckPointStmt;
|
|
316
|
+
};
|
|
317
|
+
LoadStmt(node: PG14.LoadStmt, context: TransformerContext): {
|
|
318
|
+
LoadStmt: PG15.LoadStmt;
|
|
319
|
+
};
|
|
320
|
+
DiscardStmt(node: PG14.DiscardStmt, context: TransformerContext): {
|
|
321
|
+
DiscardStmt: PG15.DiscardStmt;
|
|
322
|
+
};
|
|
323
|
+
CommentStmt(node: PG14.CommentStmt, context: TransformerContext): {
|
|
324
|
+
CommentStmt: PG15.CommentStmt;
|
|
325
|
+
};
|
|
326
|
+
LockStmt(node: PG14.LockStmt, context: TransformerContext): {
|
|
327
|
+
LockStmt: PG15.LockStmt;
|
|
328
|
+
};
|
|
329
|
+
CreatePolicyStmt(node: PG14.CreatePolicyStmt, context: TransformerContext): {
|
|
330
|
+
CreatePolicyStmt: PG15.CreatePolicyStmt;
|
|
331
|
+
};
|
|
332
|
+
AlterPolicyStmt(node: PG14.AlterPolicyStmt, context: TransformerContext): {
|
|
333
|
+
AlterPolicyStmt: PG15.AlterPolicyStmt;
|
|
334
|
+
};
|
|
335
|
+
CreateUserMappingStmt(node: PG14.CreateUserMappingStmt, context: TransformerContext): {
|
|
336
|
+
CreateUserMappingStmt: PG15.CreateUserMappingStmt;
|
|
337
|
+
};
|
|
338
|
+
CreateStatsStmt(node: PG14.CreateStatsStmt, context: TransformerContext): {
|
|
339
|
+
CreateStatsStmt: PG15.CreateStatsStmt;
|
|
340
|
+
};
|
|
341
|
+
StatsElem(node: PG14.StatsElem, context: TransformerContext): {
|
|
342
|
+
StatsElem: PG15.StatsElem;
|
|
343
|
+
};
|
|
344
|
+
CreatePublicationStmt(node: PG14.CreatePublicationStmt, context: TransformerContext): {
|
|
345
|
+
CreatePublicationStmt: PG15.CreatePublicationStmt;
|
|
346
|
+
};
|
|
347
|
+
CreateSubscriptionStmt(node: PG14.CreateSubscriptionStmt, context: TransformerContext): {
|
|
348
|
+
CreateSubscriptionStmt: PG15.CreateSubscriptionStmt;
|
|
349
|
+
};
|
|
350
|
+
AlterPublicationStmt(node: PG14.AlterPublicationStmt, context: TransformerContext): {
|
|
351
|
+
AlterPublicationStmt: PG15.AlterPublicationStmt;
|
|
352
|
+
};
|
|
353
|
+
AlterSubscriptionStmt(node: PG14.AlterSubscriptionStmt, context: TransformerContext): {
|
|
354
|
+
AlterSubscriptionStmt: PG15.AlterSubscriptionStmt;
|
|
355
|
+
};
|
|
356
|
+
DropSubscriptionStmt(node: PG14.DropSubscriptionStmt, context: TransformerContext): {
|
|
357
|
+
DropSubscriptionStmt: PG15.DropSubscriptionStmt;
|
|
358
|
+
};
|
|
359
|
+
DoStmt(node: PG14.DoStmt, context: TransformerContext): {
|
|
360
|
+
DoStmt: PG15.DoStmt;
|
|
361
|
+
};
|
|
362
|
+
InlineCodeBlock(node: PG14.InlineCodeBlock, context: TransformerContext): {
|
|
363
|
+
InlineCodeBlock: PG15.InlineCodeBlock;
|
|
364
|
+
};
|
|
365
|
+
CallContext(node: PG14.CallContext, context: TransformerContext): {
|
|
366
|
+
CallContext: PG15.CallContext;
|
|
367
|
+
};
|
|
368
|
+
ConstraintsSetStmt(node: PG14.ConstraintsSetStmt, context: TransformerContext): {
|
|
369
|
+
ConstraintsSetStmt: PG15.ConstraintsSetStmt;
|
|
370
|
+
};
|
|
371
|
+
AlterSystemStmt(node: PG14.AlterSystemStmt, context: TransformerContext): {
|
|
372
|
+
AlterSystemStmt: PG15.AlterSystemStmt;
|
|
373
|
+
};
|
|
374
|
+
VacuumRelation(node: PG14.VacuumRelation, context: TransformerContext): {
|
|
375
|
+
VacuumRelation: PG15.VacuumRelation;
|
|
376
|
+
};
|
|
377
|
+
DropOwnedStmt(node: PG14.DropOwnedStmt, context: TransformerContext): {
|
|
378
|
+
DropOwnedStmt: PG15.DropOwnedStmt;
|
|
379
|
+
};
|
|
380
|
+
ReassignOwnedStmt(node: PG14.ReassignOwnedStmt, context: TransformerContext): {
|
|
381
|
+
ReassignOwnedStmt: PG15.ReassignOwnedStmt;
|
|
382
|
+
};
|
|
383
|
+
AlterTSDictionaryStmt(node: PG14.AlterTSDictionaryStmt, context: TransformerContext): {
|
|
384
|
+
AlterTSDictionaryStmt: PG15.AlterTSDictionaryStmt;
|
|
385
|
+
};
|
|
386
|
+
AlterTSConfigurationStmt(node: PG14.AlterTSConfigurationStmt, context: TransformerContext): {
|
|
387
|
+
AlterTSConfigurationStmt: PG15.AlterTSConfigurationStmt;
|
|
388
|
+
};
|
|
389
|
+
ClosePortalStmt(node: PG14.ClosePortalStmt, context: TransformerContext): {
|
|
390
|
+
ClosePortalStmt: PG15.ClosePortalStmt;
|
|
391
|
+
};
|
|
392
|
+
FetchStmt(node: PG14.FetchStmt, context: TransformerContext): {
|
|
393
|
+
FetchStmt: PG15.FetchStmt;
|
|
394
|
+
};
|
|
395
|
+
AlterStatsStmt(node: PG14.AlterStatsStmt, context: TransformerContext): {
|
|
396
|
+
AlterStatsStmt: PG15.AlterStatsStmt;
|
|
397
|
+
};
|
|
398
|
+
ObjectWithArgs(node: PG14.ObjectWithArgs, context: TransformerContext): {
|
|
399
|
+
ObjectWithArgs: PG15.ObjectWithArgs;
|
|
400
|
+
};
|
|
401
|
+
AlterOperatorStmt(node: PG14.AlterOperatorStmt, context: TransformerContext): {
|
|
402
|
+
AlterOperatorStmt: PG15.AlterOperatorStmt;
|
|
403
|
+
};
|
|
404
|
+
AlterFdwStmt(node: PG14.AlterFdwStmt, context: TransformerContext): {
|
|
405
|
+
AlterFdwStmt: PG15.AlterFdwStmt;
|
|
406
|
+
};
|
|
407
|
+
CreateForeignServerStmt(node: PG14.CreateForeignServerStmt, context: TransformerContext): {
|
|
408
|
+
CreateForeignServerStmt: PG15.CreateForeignServerStmt;
|
|
409
|
+
};
|
|
410
|
+
AlterForeignServerStmt(node: PG14.AlterForeignServerStmt, context: TransformerContext): {
|
|
411
|
+
AlterForeignServerStmt: PG15.AlterForeignServerStmt;
|
|
412
|
+
};
|
|
413
|
+
AlterUserMappingStmt(node: PG14.AlterUserMappingStmt, context: TransformerContext): {
|
|
414
|
+
AlterUserMappingStmt: PG15.AlterUserMappingStmt;
|
|
415
|
+
};
|
|
416
|
+
DropUserMappingStmt(node: PG14.DropUserMappingStmt, context: TransformerContext): {
|
|
417
|
+
DropUserMappingStmt: PG15.DropUserMappingStmt;
|
|
418
|
+
};
|
|
419
|
+
ImportForeignSchemaStmt(node: PG14.ImportForeignSchemaStmt, context: TransformerContext): {
|
|
420
|
+
ImportForeignSchemaStmt: PG15.ImportForeignSchemaStmt;
|
|
421
|
+
};
|
|
422
|
+
ClusterStmt(node: PG14.ClusterStmt, context: TransformerContext): {
|
|
423
|
+
ClusterStmt: PG15.ClusterStmt;
|
|
424
|
+
};
|
|
425
|
+
VacuumStmt(node: PG14.VacuumStmt, context: TransformerContext): {
|
|
426
|
+
VacuumStmt: PG15.VacuumStmt;
|
|
427
|
+
};
|
|
428
|
+
ExplainStmt(node: PG14.ExplainStmt, context: TransformerContext): {
|
|
429
|
+
ExplainStmt: PG15.ExplainStmt;
|
|
430
|
+
};
|
|
431
|
+
ReindexStmt(node: PG14.ReindexStmt, context: TransformerContext): {
|
|
432
|
+
ReindexStmt: PG15.ReindexStmt;
|
|
433
|
+
};
|
|
434
|
+
CallStmt(node: PG14.CallStmt, context: TransformerContext): {
|
|
435
|
+
CallStmt: PG15.CallStmt;
|
|
436
|
+
};
|
|
437
|
+
CreatedbStmt(node: PG14.CreatedbStmt, context: TransformerContext): {
|
|
438
|
+
CreatedbStmt: PG15.CreatedbStmt;
|
|
439
|
+
};
|
|
440
|
+
DropdbStmt(node: PG14.DropdbStmt, context: TransformerContext): {
|
|
441
|
+
DropdbStmt: PG15.DropdbStmt;
|
|
442
|
+
};
|
|
443
|
+
RenameStmt(node: PG14.RenameStmt, context: TransformerContext): {
|
|
444
|
+
RenameStmt: PG15.RenameStmt;
|
|
445
|
+
};
|
|
446
|
+
AlterOwnerStmt(node: PG14.AlterOwnerStmt, context: TransformerContext): {
|
|
447
|
+
AlterOwnerStmt: PG15.AlterOwnerStmt;
|
|
448
|
+
};
|
|
449
|
+
GrantStmt(node: PG14.GrantStmt, context: TransformerContext): {
|
|
450
|
+
GrantStmt: PG15.GrantStmt;
|
|
451
|
+
};
|
|
452
|
+
GrantRoleStmt(node: PG14.GrantRoleStmt, context: TransformerContext): {
|
|
453
|
+
GrantRoleStmt: PG15.GrantRoleStmt;
|
|
454
|
+
};
|
|
455
|
+
SecLabelStmt(node: PG14.SecLabelStmt, context: TransformerContext): {
|
|
456
|
+
SecLabelStmt: PG15.SecLabelStmt;
|
|
457
|
+
};
|
|
458
|
+
AlterDefaultPrivilegesStmt(node: PG14.AlterDefaultPrivilegesStmt, context: TransformerContext): {
|
|
459
|
+
AlterDefaultPrivilegesStmt: PG15.AlterDefaultPrivilegesStmt;
|
|
460
|
+
};
|
|
461
|
+
CreateConversionStmt(node: PG14.CreateConversionStmt, context: TransformerContext): {
|
|
462
|
+
CreateConversionStmt: PG15.CreateConversionStmt;
|
|
463
|
+
};
|
|
464
|
+
CreateCastStmt(node: PG14.CreateCastStmt, context: TransformerContext): {
|
|
465
|
+
CreateCastStmt: PG15.CreateCastStmt;
|
|
466
|
+
};
|
|
467
|
+
CreatePLangStmt(node: PG14.CreatePLangStmt, context: TransformerContext): {
|
|
468
|
+
CreatePLangStmt: PG15.CreatePLangStmt;
|
|
469
|
+
};
|
|
470
|
+
CreateTransformStmt(node: PG14.CreateTransformStmt, context: TransformerContext): {
|
|
471
|
+
CreateTransformStmt: PG15.CreateTransformStmt;
|
|
472
|
+
};
|
|
473
|
+
CreateTrigStmt(node: PG14.CreateTrigStmt, context: TransformerContext): {
|
|
474
|
+
CreateTrigStmt: PG15.CreateTrigStmt;
|
|
475
|
+
};
|
|
476
|
+
TriggerTransition(node: PG14.TriggerTransition, context: TransformerContext): {
|
|
477
|
+
TriggerTransition: PG15.TriggerTransition;
|
|
478
|
+
};
|
|
479
|
+
CreateEventTrigStmt(node: PG14.CreateEventTrigStmt, context: TransformerContext): {
|
|
480
|
+
CreateEventTrigStmt: PG15.CreateEventTrigStmt;
|
|
481
|
+
};
|
|
482
|
+
AlterEventTrigStmt(node: PG14.AlterEventTrigStmt, context: TransformerContext): {
|
|
483
|
+
AlterEventTrigStmt: PG15.AlterEventTrigStmt;
|
|
484
|
+
};
|
|
485
|
+
CreateOpClassStmt(node: PG14.CreateOpClassStmt, context: TransformerContext): {
|
|
486
|
+
CreateOpClassStmt: PG15.CreateOpClassStmt;
|
|
487
|
+
};
|
|
488
|
+
CreateOpFamilyStmt(node: PG14.CreateOpFamilyStmt, context: TransformerContext): {
|
|
489
|
+
CreateOpFamilyStmt: PG15.CreateOpFamilyStmt;
|
|
490
|
+
};
|
|
491
|
+
AlterOpFamilyStmt(node: PG14.AlterOpFamilyStmt, context: TransformerContext): {
|
|
492
|
+
AlterOpFamilyStmt: PG15.AlterOpFamilyStmt;
|
|
493
|
+
};
|
|
494
|
+
AlterTableMoveAllStmt(node: PG14.AlterTableMoveAllStmt, context: TransformerContext): {
|
|
495
|
+
AlterTableMoveAllStmt: PG15.AlterTableMoveAllStmt;
|
|
496
|
+
};
|
|
497
|
+
CreateSeqStmt(node: PG14.CreateSeqStmt, context: TransformerContext): {
|
|
498
|
+
CreateSeqStmt: PG15.CreateSeqStmt;
|
|
499
|
+
};
|
|
500
|
+
AlterSeqStmt(node: PG14.AlterSeqStmt, context: TransformerContext): {
|
|
501
|
+
AlterSeqStmt: PG15.AlterSeqStmt;
|
|
502
|
+
};
|
|
503
|
+
CreateRangeStmt(node: PG14.CreateRangeStmt, context: TransformerContext): {
|
|
504
|
+
CreateRangeStmt: PG15.CreateRangeStmt;
|
|
505
|
+
};
|
|
506
|
+
AlterEnumStmt(node: PG14.AlterEnumStmt, context: TransformerContext): {
|
|
507
|
+
AlterEnumStmt: PG15.AlterEnumStmt;
|
|
508
|
+
};
|
|
509
|
+
AlterTypeStmt(node: PG14.AlterTypeStmt, context: TransformerContext): {
|
|
510
|
+
AlterTypeStmt: PG15.AlterTypeStmt;
|
|
511
|
+
};
|
|
512
|
+
AlterRoleStmt(node: PG14.AlterRoleStmt, context: TransformerContext): {
|
|
513
|
+
AlterRoleStmt: PG15.AlterRoleStmt;
|
|
514
|
+
};
|
|
515
|
+
DropRoleStmt(node: PG14.DropRoleStmt, context: TransformerContext): {
|
|
516
|
+
DropRoleStmt: PG15.DropRoleStmt;
|
|
517
|
+
};
|
|
518
|
+
CreateTableAsStmt(node: PG14.CreateTableAsStmt, context: TransformerContext): {
|
|
519
|
+
CreateTableAsStmt: PG15.CreateTableAsStmt;
|
|
520
|
+
};
|
|
521
|
+
RefreshMatViewStmt(node: PG14.RefreshMatViewStmt, context: TransformerContext): {
|
|
522
|
+
RefreshMatViewStmt: PG15.RefreshMatViewStmt;
|
|
523
|
+
};
|
|
524
|
+
AccessPriv(node: PG14.AccessPriv, context: TransformerContext): {
|
|
525
|
+
AccessPriv: PG15.AccessPriv;
|
|
526
|
+
};
|
|
527
|
+
DefineStmt(node: PG14.DefineStmt, context: TransformerContext): {
|
|
528
|
+
DefineStmt: PG15.DefineStmt;
|
|
529
|
+
};
|
|
530
|
+
AlterDatabaseStmt(node: PG14.AlterDatabaseStmt, context: TransformerContext): {
|
|
531
|
+
AlterDatabaseStmt: PG15.AlterDatabaseStmt;
|
|
532
|
+
};
|
|
533
|
+
AlterDatabaseSetStmt(node: PG14.AlterDatabaseSetStmt, context: TransformerContext): {
|
|
534
|
+
AlterDatabaseSetStmt: PG15.AlterDatabaseSetStmt;
|
|
535
|
+
};
|
|
536
|
+
DeclareCursorStmt(node: PG14.DeclareCursorStmt, context: TransformerContext): {
|
|
537
|
+
DeclareCursorStmt: PG15.DeclareCursorStmt;
|
|
538
|
+
};
|
|
539
|
+
CreateAmStmt(node: PG14.CreateAmStmt, context: TransformerContext): {
|
|
540
|
+
CreateAmStmt: PG15.CreateAmStmt;
|
|
541
|
+
};
|
|
542
|
+
IntoClause(node: PG14.IntoClause, context: TransformerContext): {
|
|
543
|
+
IntoClause: PG15.IntoClause;
|
|
544
|
+
};
|
|
545
|
+
OnConflictExpr(node: PG14.OnConflictExpr, context: TransformerContext): {
|
|
546
|
+
OnConflictExpr: PG15.OnConflictExpr;
|
|
547
|
+
};
|
|
548
|
+
ScanToken(node: PG14.ScanToken, context: TransformerContext): {
|
|
549
|
+
ScanToken: PG15.ScanToken;
|
|
550
|
+
};
|
|
551
|
+
CreateOpClassItem(node: PG14.CreateOpClassItem, context: TransformerContext): {
|
|
552
|
+
CreateOpClassItem: PG15.CreateOpClassItem;
|
|
553
|
+
};
|
|
554
|
+
Var(node: PG14.Var, context: TransformerContext): {
|
|
555
|
+
Var: PG15.Var;
|
|
556
|
+
};
|
|
557
|
+
TableFunc(node: PG14.TableFunc, context: TransformerContext): {
|
|
558
|
+
TableFunc: PG15.TableFunc;
|
|
559
|
+
};
|
|
560
|
+
RangeTableFunc(node: PG14.RangeTableFunc, context: TransformerContext): {
|
|
561
|
+
RangeTableFunc: PG15.RangeTableFunc;
|
|
562
|
+
};
|
|
563
|
+
RangeTableFuncCol(node: PG14.RangeTableFuncCol, context: TransformerContext): {
|
|
564
|
+
RangeTableFuncCol: PG15.RangeTableFuncCol;
|
|
565
|
+
};
|
|
566
|
+
RangeFunction(node: PG14.RangeFunction, context: TransformerContext): {
|
|
567
|
+
RangeFunction: PG15.RangeFunction;
|
|
568
|
+
};
|
|
569
|
+
XmlExpr(node: PG14.XmlExpr, context: TransformerContext): {
|
|
570
|
+
XmlExpr: PG15.XmlExpr;
|
|
571
|
+
};
|
|
572
|
+
RangeTableSample(node: PG14.RangeTableSample, context: TransformerContext): {
|
|
573
|
+
RangeTableSample: PG15.RangeTableSample;
|
|
574
|
+
};
|
|
575
|
+
XmlSerialize(node: PG14.XmlSerialize, context: TransformerContext): {
|
|
576
|
+
XmlSerialize: PG15.XmlSerialize;
|
|
577
|
+
};
|
|
578
|
+
RuleStmt(node: PG14.RuleStmt, context: TransformerContext): {
|
|
579
|
+
RuleStmt: PG15.RuleStmt;
|
|
580
|
+
};
|
|
581
|
+
RangeSubselect(node: PG14.RangeSubselect, context: TransformerContext): {
|
|
582
|
+
RangeSubselect: PG15.RangeSubselect;
|
|
583
|
+
};
|
|
584
|
+
SQLValueFunction(node: PG14.SQLValueFunction, context: TransformerContext): {
|
|
585
|
+
SQLValueFunction: PG15.SQLValueFunction;
|
|
586
|
+
};
|
|
587
|
+
GroupingFunc(node: PG14.GroupingFunc, context: TransformerContext): {
|
|
588
|
+
GroupingFunc: PG15.GroupingFunc;
|
|
589
|
+
};
|
|
590
|
+
MultiAssignRef(node: PG14.MultiAssignRef, context: TransformerContext): {
|
|
591
|
+
MultiAssignRef: PG15.MultiAssignRef;
|
|
592
|
+
};
|
|
593
|
+
SetToDefault(node: PG14.SetToDefault, context: TransformerContext): {
|
|
594
|
+
SetToDefault: PG15.SetToDefault;
|
|
595
|
+
};
|
|
596
|
+
CurrentOfExpr(node: PG14.CurrentOfExpr, context: TransformerContext): {
|
|
597
|
+
CurrentOfExpr: PG15.CurrentOfExpr;
|
|
598
|
+
};
|
|
599
|
+
TableLikeClause(node: PG14.TableLikeClause, context: TransformerContext): {
|
|
600
|
+
TableLikeClause: PG15.TableLikeClause;
|
|
601
|
+
};
|
|
602
|
+
AlterFunctionStmt(node: PG14.AlterFunctionStmt, context: TransformerContext): {
|
|
603
|
+
AlterFunctionStmt: PG15.AlterFunctionStmt;
|
|
604
|
+
};
|
|
605
|
+
AlterObjectSchemaStmt(node: PG14.AlterObjectSchemaStmt, context: TransformerContext): {
|
|
606
|
+
AlterObjectSchemaStmt: PG15.AlterObjectSchemaStmt;
|
|
607
|
+
};
|
|
608
|
+
AlterRoleSetStmt(node: PG14.AlterRoleSetStmt, context: TransformerContext): {
|
|
609
|
+
AlterRoleSetStmt: PG15.AlterRoleSetStmt;
|
|
610
|
+
};
|
|
611
|
+
CreateForeignTableStmt(node: PG14.CreateForeignTableStmt, context: TransformerContext): {
|
|
612
|
+
CreateForeignTableStmt: PG15.CreateForeignTableStmt;
|
|
613
|
+
};
|
|
614
|
+
CreateAccessMethodStmt(node: any, context: TransformerContext): any;
|
|
615
|
+
}
|