@pgsql/utils 13.12.0 → 17.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/asts.d.ts ADDED
@@ -0,0 +1,817 @@
1
+ import { ParseResult, ScanResult, Integer, Float, Boolean, String, BitString, List, OidList, IntList, A_Const, Alias, RangeVar, TableFunc, IntoClause, Var, Param, Aggref, GroupingFunc, WindowFunc, WindowFuncRunCondition, MergeSupportFunc, SubscriptingRef, FuncExpr, NamedArgExpr, OpExpr, DistinctExpr, NullIfExpr, ScalarArrayOpExpr, BoolExpr, SubLink, SubPlan, AlternativeSubPlan, FieldSelect, FieldStore, RelabelType, CoerceViaIO, ArrayCoerceExpr, ConvertRowtypeExpr, CollateExpr, CaseExpr, CaseWhen, CaseTestExpr, ArrayExpr, RowExpr, RowCompareExpr, CoalesceExpr, MinMaxExpr, SQLValueFunction, XmlExpr, JsonFormat, JsonReturning, JsonValueExpr, JsonConstructorExpr, JsonIsPredicate, JsonBehavior, JsonExpr, JsonTablePath, JsonTablePathScan, JsonTableSiblingJoin, NullTest, BooleanTest, MergeAction, CoerceToDomain, CoerceToDomainValue, SetToDefault, CurrentOfExpr, NextValueExpr, InferenceElem, TargetEntry, RangeTblRef, JoinExpr, FromExpr, OnConflictExpr, Query, TypeName, ColumnRef, ParamRef, A_Expr, TypeCast, CollateClause, RoleSpec, FuncCall, A_Star, A_Indices, A_Indirection, A_ArrayExpr, ResTarget, MultiAssignRef, SortBy, WindowDef, RangeSubselect, RangeFunction, RangeTableFunc, RangeTableFuncCol, RangeTableSample, ColumnDef, TableLikeClause, IndexElem, DefElem, LockingClause, XmlSerialize, PartitionElem, PartitionSpec, PartitionBoundSpec, PartitionRangeDatum, SinglePartitionSpec, PartitionCmd, RangeTblEntry, RTEPermissionInfo, RangeTblFunction, TableSampleClause, WithCheckOption, SortGroupClause, GroupingSet, WindowClause, RowMarkClause, WithClause, InferClause, OnConflictClause, CTESearchClause, CTECycleClause, CommonTableExpr, MergeWhenClause, TriggerTransition, JsonOutput, JsonArgument, JsonFuncExpr, JsonTablePathSpec, JsonTable, JsonTableColumn, JsonKeyValue, JsonParseExpr, JsonScalarExpr, JsonSerializeExpr, JsonObjectConstructor, JsonArrayConstructor, JsonArrayQueryConstructor, JsonAggConstructor, JsonObjectAgg, JsonArrayAgg, RawStmt, InsertStmt, DeleteStmt, UpdateStmt, MergeStmt, SelectStmt, SetOperationStmt, ReturnStmt, PLAssignStmt, CreateSchemaStmt, AlterTableStmt, ReplicaIdentityStmt, AlterTableCmd, AlterCollationStmt, AlterDomainStmt, GrantStmt, ObjectWithArgs, AccessPriv, GrantRoleStmt, AlterDefaultPrivilegesStmt, CopyStmt, VariableSetStmt, VariableShowStmt, CreateStmt, Constraint, CreateTableSpaceStmt, DropTableSpaceStmt, AlterTableSpaceOptionsStmt, AlterTableMoveAllStmt, CreateExtensionStmt, AlterExtensionStmt, AlterExtensionContentsStmt, CreateFdwStmt, AlterFdwStmt, CreateForeignServerStmt, AlterForeignServerStmt, CreateForeignTableStmt, CreateUserMappingStmt, AlterUserMappingStmt, DropUserMappingStmt, ImportForeignSchemaStmt, CreatePolicyStmt, AlterPolicyStmt, CreateAmStmt, CreateTrigStmt, CreateEventTrigStmt, AlterEventTrigStmt, CreatePLangStmt, CreateRoleStmt, AlterRoleStmt, AlterRoleSetStmt, DropRoleStmt, CreateSeqStmt, AlterSeqStmt, DefineStmt, CreateDomainStmt, CreateOpClassStmt, CreateOpClassItem, CreateOpFamilyStmt, AlterOpFamilyStmt, DropStmt, TruncateStmt, CommentStmt, SecLabelStmt, DeclareCursorStmt, ClosePortalStmt, FetchStmt, IndexStmt, CreateStatsStmt, StatsElem, AlterStatsStmt, CreateFunctionStmt, FunctionParameter, AlterFunctionStmt, DoStmt, InlineCodeBlock, CallStmt, CallContext, RenameStmt, AlterObjectDependsStmt, AlterObjectSchemaStmt, AlterOwnerStmt, AlterOperatorStmt, AlterTypeStmt, RuleStmt, NotifyStmt, ListenStmt, UnlistenStmt, TransactionStmt, CompositeTypeStmt, CreateEnumStmt, CreateRangeStmt, AlterEnumStmt, ViewStmt, LoadStmt, CreatedbStmt, AlterDatabaseStmt, AlterDatabaseRefreshCollStmt, AlterDatabaseSetStmt, DropdbStmt, AlterSystemStmt, ClusterStmt, VacuumStmt, VacuumRelation, ExplainStmt, CreateTableAsStmt, RefreshMatViewStmt, CheckPointStmt, DiscardStmt, LockStmt, ConstraintsSetStmt, ReindexStmt, CreateConversionStmt, CreateCastStmt, CreateTransformStmt, PrepareStmt, ExecuteStmt, DeallocateStmt, DropOwnedStmt, ReassignOwnedStmt, AlterTSDictionaryStmt, AlterTSConfigurationStmt, PublicationTable, PublicationObjSpec, CreatePublicationStmt, AlterPublicationStmt, CreateSubscriptionStmt, AlterSubscriptionStmt, DropSubscriptionStmt, ScanToken } from "@pgsql/types";
2
+ declare const _default: {
3
+ parseResult(_p?: ParseResult, isNode?: boolean): ParseResult | {
4
+ ParseResult: ParseResult;
5
+ };
6
+ scanResult(_p?: ScanResult, isNode?: boolean): ScanResult | {
7
+ ScanResult: ScanResult;
8
+ };
9
+ integer(_p?: Integer, isNode?: boolean): Integer | {
10
+ Integer: Integer;
11
+ };
12
+ float(_p?: Float, isNode?: boolean): Float | {
13
+ Float: Float;
14
+ };
15
+ boolean(_p?: Boolean, isNode?: boolean): Boolean | {
16
+ Boolean: Boolean;
17
+ };
18
+ string(_p?: String, isNode?: boolean): String | {
19
+ String: String;
20
+ };
21
+ bitString(_p?: BitString, isNode?: boolean): BitString | {
22
+ BitString: BitString;
23
+ };
24
+ list(_p?: List, isNode?: boolean): List | {
25
+ List: List;
26
+ };
27
+ oidList(_p?: OidList, isNode?: boolean): OidList | {
28
+ OidList: OidList;
29
+ };
30
+ intList(_p?: IntList, isNode?: boolean): IntList | {
31
+ IntList: IntList;
32
+ };
33
+ aConst(_p?: A_Const, isNode?: boolean): A_Const | {
34
+ A_Const: A_Const;
35
+ };
36
+ alias(_p?: Alias, isNode?: boolean): Alias | {
37
+ Alias: Alias;
38
+ };
39
+ rangeVar(_p?: RangeVar, isNode?: boolean): RangeVar | {
40
+ RangeVar: RangeVar;
41
+ };
42
+ tableFunc(_p?: TableFunc, isNode?: boolean): TableFunc | {
43
+ TableFunc: TableFunc;
44
+ };
45
+ intoClause(_p?: IntoClause, isNode?: boolean): IntoClause | {
46
+ IntoClause: IntoClause;
47
+ };
48
+ var(_p?: Var, isNode?: boolean): Var | {
49
+ Var: Var;
50
+ };
51
+ param(_p?: Param, isNode?: boolean): Param | {
52
+ Param: Param;
53
+ };
54
+ aggref(_p?: Aggref, isNode?: boolean): Aggref | {
55
+ Aggref: Aggref;
56
+ };
57
+ groupingFunc(_p?: GroupingFunc, isNode?: boolean): GroupingFunc | {
58
+ GroupingFunc: GroupingFunc;
59
+ };
60
+ windowFunc(_p?: WindowFunc, isNode?: boolean): WindowFunc | {
61
+ WindowFunc: WindowFunc;
62
+ };
63
+ windowFuncRunCondition(_p?: WindowFuncRunCondition, isNode?: boolean): WindowFuncRunCondition | {
64
+ WindowFuncRunCondition: WindowFuncRunCondition;
65
+ };
66
+ mergeSupportFunc(_p?: MergeSupportFunc, isNode?: boolean): MergeSupportFunc | {
67
+ MergeSupportFunc: MergeSupportFunc;
68
+ };
69
+ subscriptingRef(_p?: SubscriptingRef, isNode?: boolean): SubscriptingRef | {
70
+ SubscriptingRef: SubscriptingRef;
71
+ };
72
+ funcExpr(_p?: FuncExpr, isNode?: boolean): FuncExpr | {
73
+ FuncExpr: FuncExpr;
74
+ };
75
+ namedArgExpr(_p?: NamedArgExpr, isNode?: boolean): NamedArgExpr | {
76
+ NamedArgExpr: NamedArgExpr;
77
+ };
78
+ opExpr(_p?: OpExpr, isNode?: boolean): OpExpr | {
79
+ OpExpr: OpExpr;
80
+ };
81
+ distinctExpr(_p?: DistinctExpr, isNode?: boolean): DistinctExpr | {
82
+ DistinctExpr: DistinctExpr;
83
+ };
84
+ nullIfExpr(_p?: NullIfExpr, isNode?: boolean): NullIfExpr | {
85
+ NullIfExpr: NullIfExpr;
86
+ };
87
+ scalarArrayOpExpr(_p?: ScalarArrayOpExpr, isNode?: boolean): ScalarArrayOpExpr | {
88
+ ScalarArrayOpExpr: ScalarArrayOpExpr;
89
+ };
90
+ boolExpr(_p?: BoolExpr, isNode?: boolean): BoolExpr | {
91
+ BoolExpr: BoolExpr;
92
+ };
93
+ subLink(_p?: SubLink, isNode?: boolean): SubLink | {
94
+ SubLink: SubLink;
95
+ };
96
+ subPlan(_p?: SubPlan, isNode?: boolean): SubPlan | {
97
+ SubPlan: SubPlan;
98
+ };
99
+ alternativeSubPlan(_p?: AlternativeSubPlan, isNode?: boolean): AlternativeSubPlan | {
100
+ AlternativeSubPlan: AlternativeSubPlan;
101
+ };
102
+ fieldSelect(_p?: FieldSelect, isNode?: boolean): FieldSelect | {
103
+ FieldSelect: FieldSelect;
104
+ };
105
+ fieldStore(_p?: FieldStore, isNode?: boolean): FieldStore | {
106
+ FieldStore: FieldStore;
107
+ };
108
+ relabelType(_p?: RelabelType, isNode?: boolean): RelabelType | {
109
+ RelabelType: RelabelType;
110
+ };
111
+ coerceViaio(_p?: CoerceViaIO, isNode?: boolean): CoerceViaIO | {
112
+ CoerceViaIO: CoerceViaIO;
113
+ };
114
+ arrayCoerceExpr(_p?: ArrayCoerceExpr, isNode?: boolean): ArrayCoerceExpr | {
115
+ ArrayCoerceExpr: ArrayCoerceExpr;
116
+ };
117
+ convertRowtypeExpr(_p?: ConvertRowtypeExpr, isNode?: boolean): ConvertRowtypeExpr | {
118
+ ConvertRowtypeExpr: ConvertRowtypeExpr;
119
+ };
120
+ collateExpr(_p?: CollateExpr, isNode?: boolean): CollateExpr | {
121
+ CollateExpr: CollateExpr;
122
+ };
123
+ caseExpr(_p?: CaseExpr, isNode?: boolean): CaseExpr | {
124
+ CaseExpr: CaseExpr;
125
+ };
126
+ caseWhen(_p?: CaseWhen, isNode?: boolean): CaseWhen | {
127
+ CaseWhen: CaseWhen;
128
+ };
129
+ caseTestExpr(_p?: CaseTestExpr, isNode?: boolean): CaseTestExpr | {
130
+ CaseTestExpr: CaseTestExpr;
131
+ };
132
+ arrayExpr(_p?: ArrayExpr, isNode?: boolean): ArrayExpr | {
133
+ ArrayExpr: ArrayExpr;
134
+ };
135
+ rowExpr(_p?: RowExpr, isNode?: boolean): RowExpr | {
136
+ RowExpr: RowExpr;
137
+ };
138
+ rowCompareExpr(_p?: RowCompareExpr, isNode?: boolean): RowCompareExpr | {
139
+ RowCompareExpr: RowCompareExpr;
140
+ };
141
+ coalesceExpr(_p?: CoalesceExpr, isNode?: boolean): CoalesceExpr | {
142
+ CoalesceExpr: CoalesceExpr;
143
+ };
144
+ minMaxExpr(_p?: MinMaxExpr, isNode?: boolean): MinMaxExpr | {
145
+ MinMaxExpr: MinMaxExpr;
146
+ };
147
+ sqlValueFunction(_p?: SQLValueFunction, isNode?: boolean): SQLValueFunction | {
148
+ SQLValueFunction: SQLValueFunction;
149
+ };
150
+ xmlExpr(_p?: XmlExpr, isNode?: boolean): XmlExpr | {
151
+ XmlExpr: XmlExpr;
152
+ };
153
+ jsonFormat(_p?: JsonFormat, isNode?: boolean): JsonFormat | {
154
+ JsonFormat: JsonFormat;
155
+ };
156
+ jsonReturning(_p?: JsonReturning, isNode?: boolean): JsonReturning | {
157
+ JsonReturning: JsonReturning;
158
+ };
159
+ jsonValueExpr(_p?: JsonValueExpr, isNode?: boolean): JsonValueExpr | {
160
+ JsonValueExpr: JsonValueExpr;
161
+ };
162
+ jsonConstructorExpr(_p?: JsonConstructorExpr, isNode?: boolean): JsonConstructorExpr | {
163
+ JsonConstructorExpr: JsonConstructorExpr;
164
+ };
165
+ jsonIsPredicate(_p?: JsonIsPredicate, isNode?: boolean): JsonIsPredicate | {
166
+ JsonIsPredicate: JsonIsPredicate;
167
+ };
168
+ jsonBehavior(_p?: JsonBehavior, isNode?: boolean): JsonBehavior | {
169
+ JsonBehavior: JsonBehavior;
170
+ };
171
+ jsonExpr(_p?: JsonExpr, isNode?: boolean): JsonExpr | {
172
+ JsonExpr: JsonExpr;
173
+ };
174
+ jsonTablePath(_p?: JsonTablePath, isNode?: boolean): JsonTablePath | {
175
+ JsonTablePath: JsonTablePath;
176
+ };
177
+ jsonTablePathScan(_p?: JsonTablePathScan, isNode?: boolean): JsonTablePathScan | {
178
+ JsonTablePathScan: JsonTablePathScan;
179
+ };
180
+ jsonTableSiblingJoin(_p?: JsonTableSiblingJoin, isNode?: boolean): JsonTableSiblingJoin | {
181
+ JsonTableSiblingJoin: JsonTableSiblingJoin;
182
+ };
183
+ nullTest(_p?: NullTest, isNode?: boolean): NullTest | {
184
+ NullTest: NullTest;
185
+ };
186
+ booleanTest(_p?: BooleanTest, isNode?: boolean): BooleanTest | {
187
+ BooleanTest: BooleanTest;
188
+ };
189
+ mergeAction(_p?: MergeAction, isNode?: boolean): MergeAction | {
190
+ MergeAction: MergeAction;
191
+ };
192
+ coerceToDomain(_p?: CoerceToDomain, isNode?: boolean): CoerceToDomain | {
193
+ CoerceToDomain: CoerceToDomain;
194
+ };
195
+ coerceToDomainValue(_p?: CoerceToDomainValue, isNode?: boolean): CoerceToDomainValue | {
196
+ CoerceToDomainValue: CoerceToDomainValue;
197
+ };
198
+ setToDefault(_p?: SetToDefault, isNode?: boolean): SetToDefault | {
199
+ SetToDefault: SetToDefault;
200
+ };
201
+ currentOfExpr(_p?: CurrentOfExpr, isNode?: boolean): CurrentOfExpr | {
202
+ CurrentOfExpr: CurrentOfExpr;
203
+ };
204
+ nextValueExpr(_p?: NextValueExpr, isNode?: boolean): NextValueExpr | {
205
+ NextValueExpr: NextValueExpr;
206
+ };
207
+ inferenceElem(_p?: InferenceElem, isNode?: boolean): InferenceElem | {
208
+ InferenceElem: InferenceElem;
209
+ };
210
+ targetEntry(_p?: TargetEntry, isNode?: boolean): TargetEntry | {
211
+ TargetEntry: TargetEntry;
212
+ };
213
+ rangeTblRef(_p?: RangeTblRef, isNode?: boolean): RangeTblRef | {
214
+ RangeTblRef: RangeTblRef;
215
+ };
216
+ joinExpr(_p?: JoinExpr, isNode?: boolean): JoinExpr | {
217
+ JoinExpr: JoinExpr;
218
+ };
219
+ fromExpr(_p?: FromExpr, isNode?: boolean): FromExpr | {
220
+ FromExpr: FromExpr;
221
+ };
222
+ onConflictExpr(_p?: OnConflictExpr, isNode?: boolean): OnConflictExpr | {
223
+ OnConflictExpr: OnConflictExpr;
224
+ };
225
+ query(_p?: Query, isNode?: boolean): Query | {
226
+ Query: Query;
227
+ };
228
+ typeName(_p?: TypeName, isNode?: boolean): TypeName | {
229
+ TypeName: TypeName;
230
+ };
231
+ columnRef(_p?: ColumnRef, isNode?: boolean): ColumnRef | {
232
+ ColumnRef: ColumnRef;
233
+ };
234
+ paramRef(_p?: ParamRef, isNode?: boolean): ParamRef | {
235
+ ParamRef: ParamRef;
236
+ };
237
+ aExpr(_p?: A_Expr, isNode?: boolean): A_Expr | {
238
+ A_Expr: A_Expr;
239
+ };
240
+ typeCast(_p?: TypeCast, isNode?: boolean): TypeCast | {
241
+ TypeCast: TypeCast;
242
+ };
243
+ collateClause(_p?: CollateClause, isNode?: boolean): CollateClause | {
244
+ CollateClause: CollateClause;
245
+ };
246
+ roleSpec(_p?: RoleSpec, isNode?: boolean): RoleSpec | {
247
+ RoleSpec: RoleSpec;
248
+ };
249
+ funcCall(_p?: FuncCall, isNode?: boolean): FuncCall | {
250
+ FuncCall: FuncCall;
251
+ };
252
+ aStar(_p?: A_Star, isNode?: boolean): A_Star | {
253
+ A_Star: A_Star;
254
+ };
255
+ aIndices(_p?: A_Indices, isNode?: boolean): A_Indices | {
256
+ A_Indices: A_Indices;
257
+ };
258
+ aIndirection(_p?: A_Indirection, isNode?: boolean): A_Indirection | {
259
+ A_Indirection: A_Indirection;
260
+ };
261
+ aArrayExpr(_p?: A_ArrayExpr, isNode?: boolean): A_ArrayExpr | {
262
+ A_ArrayExpr: A_ArrayExpr;
263
+ };
264
+ resTarget(_p?: ResTarget, isNode?: boolean): ResTarget | {
265
+ ResTarget: ResTarget;
266
+ };
267
+ multiAssignRef(_p?: MultiAssignRef, isNode?: boolean): MultiAssignRef | {
268
+ MultiAssignRef: MultiAssignRef;
269
+ };
270
+ sortBy(_p?: SortBy, isNode?: boolean): SortBy | {
271
+ SortBy: SortBy;
272
+ };
273
+ windowDef(_p?: WindowDef, isNode?: boolean): WindowDef | {
274
+ WindowDef: WindowDef;
275
+ };
276
+ rangeSubselect(_p?: RangeSubselect, isNode?: boolean): RangeSubselect | {
277
+ RangeSubselect: RangeSubselect;
278
+ };
279
+ rangeFunction(_p?: RangeFunction, isNode?: boolean): RangeFunction | {
280
+ RangeFunction: RangeFunction;
281
+ };
282
+ rangeTableFunc(_p?: RangeTableFunc, isNode?: boolean): RangeTableFunc | {
283
+ RangeTableFunc: RangeTableFunc;
284
+ };
285
+ rangeTableFuncCol(_p?: RangeTableFuncCol, isNode?: boolean): RangeTableFuncCol | {
286
+ RangeTableFuncCol: RangeTableFuncCol;
287
+ };
288
+ rangeTableSample(_p?: RangeTableSample, isNode?: boolean): RangeTableSample | {
289
+ RangeTableSample: RangeTableSample;
290
+ };
291
+ columnDef(_p?: ColumnDef, isNode?: boolean): ColumnDef | {
292
+ ColumnDef: ColumnDef;
293
+ };
294
+ tableLikeClause(_p?: TableLikeClause, isNode?: boolean): TableLikeClause | {
295
+ TableLikeClause: TableLikeClause;
296
+ };
297
+ indexElem(_p?: IndexElem, isNode?: boolean): IndexElem | {
298
+ IndexElem: IndexElem;
299
+ };
300
+ defElem(_p?: DefElem, isNode?: boolean): DefElem | {
301
+ DefElem: DefElem;
302
+ };
303
+ lockingClause(_p?: LockingClause, isNode?: boolean): LockingClause | {
304
+ LockingClause: LockingClause;
305
+ };
306
+ xmlSerialize(_p?: XmlSerialize, isNode?: boolean): XmlSerialize | {
307
+ XmlSerialize: XmlSerialize;
308
+ };
309
+ partitionElem(_p?: PartitionElem, isNode?: boolean): PartitionElem | {
310
+ PartitionElem: PartitionElem;
311
+ };
312
+ partitionSpec(_p?: PartitionSpec, isNode?: boolean): PartitionSpec | {
313
+ PartitionSpec: PartitionSpec;
314
+ };
315
+ partitionBoundSpec(_p?: PartitionBoundSpec, isNode?: boolean): PartitionBoundSpec | {
316
+ PartitionBoundSpec: PartitionBoundSpec;
317
+ };
318
+ partitionRangeDatum(_p?: PartitionRangeDatum, isNode?: boolean): PartitionRangeDatum | {
319
+ PartitionRangeDatum: PartitionRangeDatum;
320
+ };
321
+ singlePartitionSpec(_p?: SinglePartitionSpec, isNode?: boolean): SinglePartitionSpec | {
322
+ SinglePartitionSpec: SinglePartitionSpec;
323
+ };
324
+ partitionCmd(_p?: PartitionCmd, isNode?: boolean): PartitionCmd | {
325
+ PartitionCmd: PartitionCmd;
326
+ };
327
+ rangeTblEntry(_p?: RangeTblEntry, isNode?: boolean): RangeTblEntry | {
328
+ RangeTblEntry: RangeTblEntry;
329
+ };
330
+ rtePermissionInfo(_p?: RTEPermissionInfo, isNode?: boolean): RTEPermissionInfo | {
331
+ RTEPermissionInfo: RTEPermissionInfo;
332
+ };
333
+ rangeTblFunction(_p?: RangeTblFunction, isNode?: boolean): RangeTblFunction | {
334
+ RangeTblFunction: RangeTblFunction;
335
+ };
336
+ tableSampleClause(_p?: TableSampleClause, isNode?: boolean): TableSampleClause | {
337
+ TableSampleClause: TableSampleClause;
338
+ };
339
+ withCheckOption(_p?: WithCheckOption, isNode?: boolean): WithCheckOption | {
340
+ WithCheckOption: WithCheckOption;
341
+ };
342
+ sortGroupClause(_p?: SortGroupClause, isNode?: boolean): SortGroupClause | {
343
+ SortGroupClause: SortGroupClause;
344
+ };
345
+ groupingSet(_p?: GroupingSet, isNode?: boolean): GroupingSet | {
346
+ GroupingSet: GroupingSet;
347
+ };
348
+ windowClause(_p?: WindowClause, isNode?: boolean): WindowClause | {
349
+ WindowClause: WindowClause;
350
+ };
351
+ rowMarkClause(_p?: RowMarkClause, isNode?: boolean): RowMarkClause | {
352
+ RowMarkClause: RowMarkClause;
353
+ };
354
+ withClause(_p?: WithClause, isNode?: boolean): WithClause | {
355
+ WithClause: WithClause;
356
+ };
357
+ inferClause(_p?: InferClause, isNode?: boolean): InferClause | {
358
+ InferClause: InferClause;
359
+ };
360
+ onConflictClause(_p?: OnConflictClause, isNode?: boolean): OnConflictClause | {
361
+ OnConflictClause: OnConflictClause;
362
+ };
363
+ cteSearchClause(_p?: CTESearchClause, isNode?: boolean): CTESearchClause | {
364
+ CTESearchClause: CTESearchClause;
365
+ };
366
+ cteCycleClause(_p?: CTECycleClause, isNode?: boolean): CTECycleClause | {
367
+ CTECycleClause: CTECycleClause;
368
+ };
369
+ commonTableExpr(_p?: CommonTableExpr, isNode?: boolean): CommonTableExpr | {
370
+ CommonTableExpr: CommonTableExpr;
371
+ };
372
+ mergeWhenClause(_p?: MergeWhenClause, isNode?: boolean): MergeWhenClause | {
373
+ MergeWhenClause: MergeWhenClause;
374
+ };
375
+ triggerTransition(_p?: TriggerTransition, isNode?: boolean): TriggerTransition | {
376
+ TriggerTransition: TriggerTransition;
377
+ };
378
+ jsonOutput(_p?: JsonOutput, isNode?: boolean): JsonOutput | {
379
+ JsonOutput: JsonOutput;
380
+ };
381
+ jsonArgument(_p?: JsonArgument, isNode?: boolean): JsonArgument | {
382
+ JsonArgument: JsonArgument;
383
+ };
384
+ jsonFuncExpr(_p?: JsonFuncExpr, isNode?: boolean): JsonFuncExpr | {
385
+ JsonFuncExpr: JsonFuncExpr;
386
+ };
387
+ jsonTablePathSpec(_p?: JsonTablePathSpec, isNode?: boolean): JsonTablePathSpec | {
388
+ JsonTablePathSpec: JsonTablePathSpec;
389
+ };
390
+ jsonTable(_p?: JsonTable, isNode?: boolean): JsonTable | {
391
+ JsonTable: JsonTable;
392
+ };
393
+ jsonTableColumn(_p?: JsonTableColumn, isNode?: boolean): JsonTableColumn | {
394
+ JsonTableColumn: JsonTableColumn;
395
+ };
396
+ jsonKeyValue(_p?: JsonKeyValue, isNode?: boolean): JsonKeyValue | {
397
+ JsonKeyValue: JsonKeyValue;
398
+ };
399
+ jsonParseExpr(_p?: JsonParseExpr, isNode?: boolean): JsonParseExpr | {
400
+ JsonParseExpr: JsonParseExpr;
401
+ };
402
+ jsonScalarExpr(_p?: JsonScalarExpr, isNode?: boolean): JsonScalarExpr | {
403
+ JsonScalarExpr: JsonScalarExpr;
404
+ };
405
+ jsonSerializeExpr(_p?: JsonSerializeExpr, isNode?: boolean): JsonSerializeExpr | {
406
+ JsonSerializeExpr: JsonSerializeExpr;
407
+ };
408
+ jsonObjectConstructor(_p?: JsonObjectConstructor, isNode?: boolean): JsonObjectConstructor | {
409
+ JsonObjectConstructor: JsonObjectConstructor;
410
+ };
411
+ jsonArrayConstructor(_p?: JsonArrayConstructor, isNode?: boolean): JsonArrayConstructor | {
412
+ JsonArrayConstructor: JsonArrayConstructor;
413
+ };
414
+ jsonArrayQueryConstructor(_p?: JsonArrayQueryConstructor, isNode?: boolean): JsonArrayQueryConstructor | {
415
+ JsonArrayQueryConstructor: JsonArrayQueryConstructor;
416
+ };
417
+ jsonAggConstructor(_p?: JsonAggConstructor, isNode?: boolean): JsonAggConstructor | {
418
+ JsonAggConstructor: JsonAggConstructor;
419
+ };
420
+ jsonObjectAgg(_p?: JsonObjectAgg, isNode?: boolean): JsonObjectAgg | {
421
+ JsonObjectAgg: JsonObjectAgg;
422
+ };
423
+ jsonArrayAgg(_p?: JsonArrayAgg, isNode?: boolean): JsonArrayAgg | {
424
+ JsonArrayAgg: JsonArrayAgg;
425
+ };
426
+ rawStmt(_p?: RawStmt, isNode?: boolean): RawStmt | {
427
+ RawStmt: RawStmt;
428
+ };
429
+ insertStmt(_p?: InsertStmt, isNode?: boolean): InsertStmt | {
430
+ InsertStmt: InsertStmt;
431
+ };
432
+ deleteStmt(_p?: DeleteStmt, isNode?: boolean): DeleteStmt | {
433
+ DeleteStmt: DeleteStmt;
434
+ };
435
+ updateStmt(_p?: UpdateStmt, isNode?: boolean): UpdateStmt | {
436
+ UpdateStmt: UpdateStmt;
437
+ };
438
+ mergeStmt(_p?: MergeStmt, isNode?: boolean): MergeStmt | {
439
+ MergeStmt: MergeStmt;
440
+ };
441
+ selectStmt(_p?: SelectStmt, isNode?: boolean): SelectStmt | {
442
+ SelectStmt: SelectStmt;
443
+ };
444
+ setOperationStmt(_p?: SetOperationStmt, isNode?: boolean): SetOperationStmt | {
445
+ SetOperationStmt: SetOperationStmt;
446
+ };
447
+ returnStmt(_p?: ReturnStmt, isNode?: boolean): ReturnStmt | {
448
+ ReturnStmt: ReturnStmt;
449
+ };
450
+ plAssignStmt(_p?: PLAssignStmt, isNode?: boolean): PLAssignStmt | {
451
+ PLAssignStmt: PLAssignStmt;
452
+ };
453
+ createSchemaStmt(_p?: CreateSchemaStmt, isNode?: boolean): CreateSchemaStmt | {
454
+ CreateSchemaStmt: CreateSchemaStmt;
455
+ };
456
+ alterTableStmt(_p?: AlterTableStmt, isNode?: boolean): AlterTableStmt | {
457
+ AlterTableStmt: AlterTableStmt;
458
+ };
459
+ replicaIdentityStmt(_p?: ReplicaIdentityStmt, isNode?: boolean): ReplicaIdentityStmt | {
460
+ ReplicaIdentityStmt: ReplicaIdentityStmt;
461
+ };
462
+ alterTableCmd(_p?: AlterTableCmd, isNode?: boolean): AlterTableCmd | {
463
+ AlterTableCmd: AlterTableCmd;
464
+ };
465
+ alterCollationStmt(_p?: AlterCollationStmt, isNode?: boolean): AlterCollationStmt | {
466
+ AlterCollationStmt: AlterCollationStmt;
467
+ };
468
+ alterDomainStmt(_p?: AlterDomainStmt, isNode?: boolean): AlterDomainStmt | {
469
+ AlterDomainStmt: AlterDomainStmt;
470
+ };
471
+ grantStmt(_p?: GrantStmt, isNode?: boolean): GrantStmt | {
472
+ GrantStmt: GrantStmt;
473
+ };
474
+ objectWithArgs(_p?: ObjectWithArgs, isNode?: boolean): ObjectWithArgs | {
475
+ ObjectWithArgs: ObjectWithArgs;
476
+ };
477
+ accessPriv(_p?: AccessPriv, isNode?: boolean): AccessPriv | {
478
+ AccessPriv: AccessPriv;
479
+ };
480
+ grantRoleStmt(_p?: GrantRoleStmt, isNode?: boolean): GrantRoleStmt | {
481
+ GrantRoleStmt: GrantRoleStmt;
482
+ };
483
+ alterDefaultPrivilegesStmt(_p?: AlterDefaultPrivilegesStmt, isNode?: boolean): AlterDefaultPrivilegesStmt | {
484
+ AlterDefaultPrivilegesStmt: AlterDefaultPrivilegesStmt;
485
+ };
486
+ copyStmt(_p?: CopyStmt, isNode?: boolean): CopyStmt | {
487
+ CopyStmt: CopyStmt;
488
+ };
489
+ variableSetStmt(_p?: VariableSetStmt, isNode?: boolean): VariableSetStmt | {
490
+ VariableSetStmt: VariableSetStmt;
491
+ };
492
+ variableShowStmt(_p?: VariableShowStmt, isNode?: boolean): VariableShowStmt | {
493
+ VariableShowStmt: VariableShowStmt;
494
+ };
495
+ createStmt(_p?: CreateStmt, isNode?: boolean): CreateStmt | {
496
+ CreateStmt: CreateStmt;
497
+ };
498
+ constraint(_p?: Constraint, isNode?: boolean): Constraint | {
499
+ Constraint: Constraint;
500
+ };
501
+ createTableSpaceStmt(_p?: CreateTableSpaceStmt, isNode?: boolean): CreateTableSpaceStmt | {
502
+ CreateTableSpaceStmt: CreateTableSpaceStmt;
503
+ };
504
+ dropTableSpaceStmt(_p?: DropTableSpaceStmt, isNode?: boolean): DropTableSpaceStmt | {
505
+ DropTableSpaceStmt: DropTableSpaceStmt;
506
+ };
507
+ alterTableSpaceOptionsStmt(_p?: AlterTableSpaceOptionsStmt, isNode?: boolean): AlterTableSpaceOptionsStmt | {
508
+ AlterTableSpaceOptionsStmt: AlterTableSpaceOptionsStmt;
509
+ };
510
+ alterTableMoveAllStmt(_p?: AlterTableMoveAllStmt, isNode?: boolean): AlterTableMoveAllStmt | {
511
+ AlterTableMoveAllStmt: AlterTableMoveAllStmt;
512
+ };
513
+ createExtensionStmt(_p?: CreateExtensionStmt, isNode?: boolean): CreateExtensionStmt | {
514
+ CreateExtensionStmt: CreateExtensionStmt;
515
+ };
516
+ alterExtensionStmt(_p?: AlterExtensionStmt, isNode?: boolean): AlterExtensionStmt | {
517
+ AlterExtensionStmt: AlterExtensionStmt;
518
+ };
519
+ alterExtensionContentsStmt(_p?: AlterExtensionContentsStmt, isNode?: boolean): AlterExtensionContentsStmt | {
520
+ AlterExtensionContentsStmt: AlterExtensionContentsStmt;
521
+ };
522
+ createFdwStmt(_p?: CreateFdwStmt, isNode?: boolean): CreateFdwStmt | {
523
+ CreateFdwStmt: CreateFdwStmt;
524
+ };
525
+ alterFdwStmt(_p?: AlterFdwStmt, isNode?: boolean): AlterFdwStmt | {
526
+ AlterFdwStmt: AlterFdwStmt;
527
+ };
528
+ createForeignServerStmt(_p?: CreateForeignServerStmt, isNode?: boolean): CreateForeignServerStmt | {
529
+ CreateForeignServerStmt: CreateForeignServerStmt;
530
+ };
531
+ alterForeignServerStmt(_p?: AlterForeignServerStmt, isNode?: boolean): AlterForeignServerStmt | {
532
+ AlterForeignServerStmt: AlterForeignServerStmt;
533
+ };
534
+ createForeignTableStmt(_p?: CreateForeignTableStmt, isNode?: boolean): CreateForeignTableStmt | {
535
+ CreateForeignTableStmt: CreateForeignTableStmt;
536
+ };
537
+ createUserMappingStmt(_p?: CreateUserMappingStmt, isNode?: boolean): CreateUserMappingStmt | {
538
+ CreateUserMappingStmt: CreateUserMappingStmt;
539
+ };
540
+ alterUserMappingStmt(_p?: AlterUserMappingStmt, isNode?: boolean): AlterUserMappingStmt | {
541
+ AlterUserMappingStmt: AlterUserMappingStmt;
542
+ };
543
+ dropUserMappingStmt(_p?: DropUserMappingStmt, isNode?: boolean): DropUserMappingStmt | {
544
+ DropUserMappingStmt: DropUserMappingStmt;
545
+ };
546
+ importForeignSchemaStmt(_p?: ImportForeignSchemaStmt, isNode?: boolean): ImportForeignSchemaStmt | {
547
+ ImportForeignSchemaStmt: ImportForeignSchemaStmt;
548
+ };
549
+ createPolicyStmt(_p?: CreatePolicyStmt, isNode?: boolean): CreatePolicyStmt | {
550
+ CreatePolicyStmt: CreatePolicyStmt;
551
+ };
552
+ alterPolicyStmt(_p?: AlterPolicyStmt, isNode?: boolean): AlterPolicyStmt | {
553
+ AlterPolicyStmt: AlterPolicyStmt;
554
+ };
555
+ createAmStmt(_p?: CreateAmStmt, isNode?: boolean): CreateAmStmt | {
556
+ CreateAmStmt: CreateAmStmt;
557
+ };
558
+ createTrigStmt(_p?: CreateTrigStmt, isNode?: boolean): CreateTrigStmt | {
559
+ CreateTrigStmt: CreateTrigStmt;
560
+ };
561
+ createEventTrigStmt(_p?: CreateEventTrigStmt, isNode?: boolean): CreateEventTrigStmt | {
562
+ CreateEventTrigStmt: CreateEventTrigStmt;
563
+ };
564
+ alterEventTrigStmt(_p?: AlterEventTrigStmt, isNode?: boolean): AlterEventTrigStmt | {
565
+ AlterEventTrigStmt: AlterEventTrigStmt;
566
+ };
567
+ createpLangStmt(_p?: CreatePLangStmt, isNode?: boolean): CreatePLangStmt | {
568
+ CreatePLangStmt: CreatePLangStmt;
569
+ };
570
+ createRoleStmt(_p?: CreateRoleStmt, isNode?: boolean): CreateRoleStmt | {
571
+ CreateRoleStmt: CreateRoleStmt;
572
+ };
573
+ alterRoleStmt(_p?: AlterRoleStmt, isNode?: boolean): AlterRoleStmt | {
574
+ AlterRoleStmt: AlterRoleStmt;
575
+ };
576
+ alterRoleSetStmt(_p?: AlterRoleSetStmt, isNode?: boolean): AlterRoleSetStmt | {
577
+ AlterRoleSetStmt: AlterRoleSetStmt;
578
+ };
579
+ dropRoleStmt(_p?: DropRoleStmt, isNode?: boolean): DropRoleStmt | {
580
+ DropRoleStmt: DropRoleStmt;
581
+ };
582
+ createSeqStmt(_p?: CreateSeqStmt, isNode?: boolean): CreateSeqStmt | {
583
+ CreateSeqStmt: CreateSeqStmt;
584
+ };
585
+ alterSeqStmt(_p?: AlterSeqStmt, isNode?: boolean): AlterSeqStmt | {
586
+ AlterSeqStmt: AlterSeqStmt;
587
+ };
588
+ defineStmt(_p?: DefineStmt, isNode?: boolean): DefineStmt | {
589
+ DefineStmt: DefineStmt;
590
+ };
591
+ createDomainStmt(_p?: CreateDomainStmt, isNode?: boolean): CreateDomainStmt | {
592
+ CreateDomainStmt: CreateDomainStmt;
593
+ };
594
+ createOpClassStmt(_p?: CreateOpClassStmt, isNode?: boolean): CreateOpClassStmt | {
595
+ CreateOpClassStmt: CreateOpClassStmt;
596
+ };
597
+ createOpClassItem(_p?: CreateOpClassItem, isNode?: boolean): CreateOpClassItem | {
598
+ CreateOpClassItem: CreateOpClassItem;
599
+ };
600
+ createOpFamilyStmt(_p?: CreateOpFamilyStmt, isNode?: boolean): CreateOpFamilyStmt | {
601
+ CreateOpFamilyStmt: CreateOpFamilyStmt;
602
+ };
603
+ alterOpFamilyStmt(_p?: AlterOpFamilyStmt, isNode?: boolean): AlterOpFamilyStmt | {
604
+ AlterOpFamilyStmt: AlterOpFamilyStmt;
605
+ };
606
+ dropStmt(_p?: DropStmt, isNode?: boolean): DropStmt | {
607
+ DropStmt: DropStmt;
608
+ };
609
+ truncateStmt(_p?: TruncateStmt, isNode?: boolean): TruncateStmt | {
610
+ TruncateStmt: TruncateStmt;
611
+ };
612
+ commentStmt(_p?: CommentStmt, isNode?: boolean): CommentStmt | {
613
+ CommentStmt: CommentStmt;
614
+ };
615
+ secLabelStmt(_p?: SecLabelStmt, isNode?: boolean): SecLabelStmt | {
616
+ SecLabelStmt: SecLabelStmt;
617
+ };
618
+ declareCursorStmt(_p?: DeclareCursorStmt, isNode?: boolean): DeclareCursorStmt | {
619
+ DeclareCursorStmt: DeclareCursorStmt;
620
+ };
621
+ closePortalStmt(_p?: ClosePortalStmt, isNode?: boolean): ClosePortalStmt | {
622
+ ClosePortalStmt: ClosePortalStmt;
623
+ };
624
+ fetchStmt(_p?: FetchStmt, isNode?: boolean): FetchStmt | {
625
+ FetchStmt: FetchStmt;
626
+ };
627
+ indexStmt(_p?: IndexStmt, isNode?: boolean): IndexStmt | {
628
+ IndexStmt: IndexStmt;
629
+ };
630
+ createStatsStmt(_p?: CreateStatsStmt, isNode?: boolean): CreateStatsStmt | {
631
+ CreateStatsStmt: CreateStatsStmt;
632
+ };
633
+ statsElem(_p?: StatsElem, isNode?: boolean): StatsElem | {
634
+ StatsElem: StatsElem;
635
+ };
636
+ alterStatsStmt(_p?: AlterStatsStmt, isNode?: boolean): AlterStatsStmt | {
637
+ AlterStatsStmt: AlterStatsStmt;
638
+ };
639
+ createFunctionStmt(_p?: CreateFunctionStmt, isNode?: boolean): CreateFunctionStmt | {
640
+ CreateFunctionStmt: CreateFunctionStmt;
641
+ };
642
+ functionParameter(_p?: FunctionParameter, isNode?: boolean): FunctionParameter | {
643
+ FunctionParameter: FunctionParameter;
644
+ };
645
+ alterFunctionStmt(_p?: AlterFunctionStmt, isNode?: boolean): AlterFunctionStmt | {
646
+ AlterFunctionStmt: AlterFunctionStmt;
647
+ };
648
+ doStmt(_p?: DoStmt, isNode?: boolean): DoStmt | {
649
+ DoStmt: DoStmt;
650
+ };
651
+ inlineCodeBlock(_p?: InlineCodeBlock, isNode?: boolean): InlineCodeBlock | {
652
+ InlineCodeBlock: InlineCodeBlock;
653
+ };
654
+ callStmt(_p?: CallStmt, isNode?: boolean): CallStmt | {
655
+ CallStmt: CallStmt;
656
+ };
657
+ callContext(_p?: CallContext, isNode?: boolean): CallContext | {
658
+ CallContext: CallContext;
659
+ };
660
+ renameStmt(_p?: RenameStmt, isNode?: boolean): RenameStmt | {
661
+ RenameStmt: RenameStmt;
662
+ };
663
+ alterObjectDependsStmt(_p?: AlterObjectDependsStmt, isNode?: boolean): AlterObjectDependsStmt | {
664
+ AlterObjectDependsStmt: AlterObjectDependsStmt;
665
+ };
666
+ alterObjectSchemaStmt(_p?: AlterObjectSchemaStmt, isNode?: boolean): AlterObjectSchemaStmt | {
667
+ AlterObjectSchemaStmt: AlterObjectSchemaStmt;
668
+ };
669
+ alterOwnerStmt(_p?: AlterOwnerStmt, isNode?: boolean): AlterOwnerStmt | {
670
+ AlterOwnerStmt: AlterOwnerStmt;
671
+ };
672
+ alterOperatorStmt(_p?: AlterOperatorStmt, isNode?: boolean): AlterOperatorStmt | {
673
+ AlterOperatorStmt: AlterOperatorStmt;
674
+ };
675
+ alterTypeStmt(_p?: AlterTypeStmt, isNode?: boolean): AlterTypeStmt | {
676
+ AlterTypeStmt: AlterTypeStmt;
677
+ };
678
+ ruleStmt(_p?: RuleStmt, isNode?: boolean): RuleStmt | {
679
+ RuleStmt: RuleStmt;
680
+ };
681
+ notifyStmt(_p?: NotifyStmt, isNode?: boolean): NotifyStmt | {
682
+ NotifyStmt: NotifyStmt;
683
+ };
684
+ listenStmt(_p?: ListenStmt, isNode?: boolean): ListenStmt | {
685
+ ListenStmt: ListenStmt;
686
+ };
687
+ unlistenStmt(_p?: UnlistenStmt, isNode?: boolean): UnlistenStmt | {
688
+ UnlistenStmt: UnlistenStmt;
689
+ };
690
+ transactionStmt(_p?: TransactionStmt, isNode?: boolean): TransactionStmt | {
691
+ TransactionStmt: TransactionStmt;
692
+ };
693
+ compositeTypeStmt(_p?: CompositeTypeStmt, isNode?: boolean): CompositeTypeStmt | {
694
+ CompositeTypeStmt: CompositeTypeStmt;
695
+ };
696
+ createEnumStmt(_p?: CreateEnumStmt, isNode?: boolean): CreateEnumStmt | {
697
+ CreateEnumStmt: CreateEnumStmt;
698
+ };
699
+ createRangeStmt(_p?: CreateRangeStmt, isNode?: boolean): CreateRangeStmt | {
700
+ CreateRangeStmt: CreateRangeStmt;
701
+ };
702
+ alterEnumStmt(_p?: AlterEnumStmt, isNode?: boolean): AlterEnumStmt | {
703
+ AlterEnumStmt: AlterEnumStmt;
704
+ };
705
+ viewStmt(_p?: ViewStmt, isNode?: boolean): ViewStmt | {
706
+ ViewStmt: ViewStmt;
707
+ };
708
+ loadStmt(_p?: LoadStmt, isNode?: boolean): LoadStmt | {
709
+ LoadStmt: LoadStmt;
710
+ };
711
+ createdbStmt(_p?: CreatedbStmt, isNode?: boolean): CreatedbStmt | {
712
+ CreatedbStmt: CreatedbStmt;
713
+ };
714
+ alterDatabaseStmt(_p?: AlterDatabaseStmt, isNode?: boolean): AlterDatabaseStmt | {
715
+ AlterDatabaseStmt: AlterDatabaseStmt;
716
+ };
717
+ alterDatabaseRefreshCollStmt(_p?: AlterDatabaseRefreshCollStmt, isNode?: boolean): AlterDatabaseRefreshCollStmt | {
718
+ AlterDatabaseRefreshCollStmt: AlterDatabaseRefreshCollStmt;
719
+ };
720
+ alterDatabaseSetStmt(_p?: AlterDatabaseSetStmt, isNode?: boolean): AlterDatabaseSetStmt | {
721
+ AlterDatabaseSetStmt: AlterDatabaseSetStmt;
722
+ };
723
+ dropdbStmt(_p?: DropdbStmt, isNode?: boolean): DropdbStmt | {
724
+ DropdbStmt: DropdbStmt;
725
+ };
726
+ alterSystemStmt(_p?: AlterSystemStmt, isNode?: boolean): AlterSystemStmt | {
727
+ AlterSystemStmt: AlterSystemStmt;
728
+ };
729
+ clusterStmt(_p?: ClusterStmt, isNode?: boolean): ClusterStmt | {
730
+ ClusterStmt: ClusterStmt;
731
+ };
732
+ vacuumStmt(_p?: VacuumStmt, isNode?: boolean): VacuumStmt | {
733
+ VacuumStmt: VacuumStmt;
734
+ };
735
+ vacuumRelation(_p?: VacuumRelation, isNode?: boolean): VacuumRelation | {
736
+ VacuumRelation: VacuumRelation;
737
+ };
738
+ explainStmt(_p?: ExplainStmt, isNode?: boolean): ExplainStmt | {
739
+ ExplainStmt: ExplainStmt;
740
+ };
741
+ createTableAsStmt(_p?: CreateTableAsStmt, isNode?: boolean): CreateTableAsStmt | {
742
+ CreateTableAsStmt: CreateTableAsStmt;
743
+ };
744
+ refreshMatViewStmt(_p?: RefreshMatViewStmt, isNode?: boolean): RefreshMatViewStmt | {
745
+ RefreshMatViewStmt: RefreshMatViewStmt;
746
+ };
747
+ checkPointStmt(_p?: CheckPointStmt, isNode?: boolean): CheckPointStmt | {
748
+ CheckPointStmt: CheckPointStmt;
749
+ };
750
+ discardStmt(_p?: DiscardStmt, isNode?: boolean): DiscardStmt | {
751
+ DiscardStmt: DiscardStmt;
752
+ };
753
+ lockStmt(_p?: LockStmt, isNode?: boolean): LockStmt | {
754
+ LockStmt: LockStmt;
755
+ };
756
+ constraintsSetStmt(_p?: ConstraintsSetStmt, isNode?: boolean): ConstraintsSetStmt | {
757
+ ConstraintsSetStmt: ConstraintsSetStmt;
758
+ };
759
+ reindexStmt(_p?: ReindexStmt, isNode?: boolean): ReindexStmt | {
760
+ ReindexStmt: ReindexStmt;
761
+ };
762
+ createConversionStmt(_p?: CreateConversionStmt, isNode?: boolean): CreateConversionStmt | {
763
+ CreateConversionStmt: CreateConversionStmt;
764
+ };
765
+ createCastStmt(_p?: CreateCastStmt, isNode?: boolean): CreateCastStmt | {
766
+ CreateCastStmt: CreateCastStmt;
767
+ };
768
+ createTransformStmt(_p?: CreateTransformStmt, isNode?: boolean): CreateTransformStmt | {
769
+ CreateTransformStmt: CreateTransformStmt;
770
+ };
771
+ prepareStmt(_p?: PrepareStmt, isNode?: boolean): PrepareStmt | {
772
+ PrepareStmt: PrepareStmt;
773
+ };
774
+ executeStmt(_p?: ExecuteStmt, isNode?: boolean): ExecuteStmt | {
775
+ ExecuteStmt: ExecuteStmt;
776
+ };
777
+ deallocateStmt(_p?: DeallocateStmt, isNode?: boolean): DeallocateStmt | {
778
+ DeallocateStmt: DeallocateStmt;
779
+ };
780
+ dropOwnedStmt(_p?: DropOwnedStmt, isNode?: boolean): DropOwnedStmt | {
781
+ DropOwnedStmt: DropOwnedStmt;
782
+ };
783
+ reassignOwnedStmt(_p?: ReassignOwnedStmt, isNode?: boolean): ReassignOwnedStmt | {
784
+ ReassignOwnedStmt: ReassignOwnedStmt;
785
+ };
786
+ altertsDictionaryStmt(_p?: AlterTSDictionaryStmt, isNode?: boolean): AlterTSDictionaryStmt | {
787
+ AlterTSDictionaryStmt: AlterTSDictionaryStmt;
788
+ };
789
+ altertsConfigurationStmt(_p?: AlterTSConfigurationStmt, isNode?: boolean): AlterTSConfigurationStmt | {
790
+ AlterTSConfigurationStmt: AlterTSConfigurationStmt;
791
+ };
792
+ publicationTable(_p?: PublicationTable, isNode?: boolean): PublicationTable | {
793
+ PublicationTable: PublicationTable;
794
+ };
795
+ publicationObjSpec(_p?: PublicationObjSpec, isNode?: boolean): PublicationObjSpec | {
796
+ PublicationObjSpec: PublicationObjSpec;
797
+ };
798
+ createPublicationStmt(_p?: CreatePublicationStmt, isNode?: boolean): CreatePublicationStmt | {
799
+ CreatePublicationStmt: CreatePublicationStmt;
800
+ };
801
+ alterPublicationStmt(_p?: AlterPublicationStmt, isNode?: boolean): AlterPublicationStmt | {
802
+ AlterPublicationStmt: AlterPublicationStmt;
803
+ };
804
+ createSubscriptionStmt(_p?: CreateSubscriptionStmt, isNode?: boolean): CreateSubscriptionStmt | {
805
+ CreateSubscriptionStmt: CreateSubscriptionStmt;
806
+ };
807
+ alterSubscriptionStmt(_p?: AlterSubscriptionStmt, isNode?: boolean): AlterSubscriptionStmt | {
808
+ AlterSubscriptionStmt: AlterSubscriptionStmt;
809
+ };
810
+ dropSubscriptionStmt(_p?: DropSubscriptionStmt, isNode?: boolean): DropSubscriptionStmt | {
811
+ DropSubscriptionStmt: DropSubscriptionStmt;
812
+ };
813
+ scanToken(_p?: ScanToken, isNode?: boolean): ScanToken | {
814
+ ScanToken: ScanToken;
815
+ };
816
+ };
817
+ export default _default;