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