pgsql-deparser 13.18.0 → 13.19.1

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