pg-ast 0.0.1 → 2.0.2
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/LICENSE +1 -1
- package/README.md +37 -2
- package/esm/index.js +1426 -0
- package/index.d.ts +1120 -0
- package/index.js +1581 -0
- package/package.json +29 -53
- package/main/index.js +0 -2414
- package/module/index.js +0 -2096
package/index.d.ts
ADDED
|
@@ -0,0 +1,1120 @@
|
|
|
1
|
+
export declare const jsonSet: (vresult: any, prop: any, value: any) => any;
|
|
2
|
+
export declare const RawStmt: ({ stmt }: {
|
|
3
|
+
stmt: any;
|
|
4
|
+
}) => {
|
|
5
|
+
RawStmt: {};
|
|
6
|
+
};
|
|
7
|
+
export declare const CreateSchemaStmt: ({ schemaname, if_not_exists, schemaElts, authrole }: {
|
|
8
|
+
schemaname: any;
|
|
9
|
+
if_not_exists: any;
|
|
10
|
+
schemaElts: any;
|
|
11
|
+
authrole: any;
|
|
12
|
+
}) => {
|
|
13
|
+
CreateSchemaStmt: {};
|
|
14
|
+
};
|
|
15
|
+
export declare const CreateStmt: ({ relation, tableElts, oncommit, inhRelations, options, ofTypename, if_not_exists }: {
|
|
16
|
+
relation: any;
|
|
17
|
+
tableElts: any;
|
|
18
|
+
oncommit: any;
|
|
19
|
+
inhRelations: any;
|
|
20
|
+
options: any;
|
|
21
|
+
ofTypename: any;
|
|
22
|
+
if_not_exists: any;
|
|
23
|
+
}) => {
|
|
24
|
+
CreateStmt: {};
|
|
25
|
+
};
|
|
26
|
+
export declare const RangeVar: ({ schemaname, relname, inh, relpersistence, alias }: {
|
|
27
|
+
schemaname: any;
|
|
28
|
+
relname: any;
|
|
29
|
+
inh: any;
|
|
30
|
+
relpersistence: any;
|
|
31
|
+
alias: any;
|
|
32
|
+
}) => {
|
|
33
|
+
RangeVar: {};
|
|
34
|
+
};
|
|
35
|
+
export declare const ColumnDef: ({ colname, typeName, is_local, constraints, raw_default, collClause, fdwoptions }: {
|
|
36
|
+
colname: any;
|
|
37
|
+
typeName: any;
|
|
38
|
+
is_local: any;
|
|
39
|
+
constraints: any;
|
|
40
|
+
raw_default: any;
|
|
41
|
+
collClause: any;
|
|
42
|
+
fdwoptions: any;
|
|
43
|
+
}) => {
|
|
44
|
+
ColumnDef: {};
|
|
45
|
+
};
|
|
46
|
+
export declare const TypeName: ({ names, typemod, typmods, setof, arrayBounds }: {
|
|
47
|
+
names: any;
|
|
48
|
+
typemod: any;
|
|
49
|
+
typmods: any;
|
|
50
|
+
setof: any;
|
|
51
|
+
arrayBounds: any;
|
|
52
|
+
}) => {
|
|
53
|
+
TypeName: {};
|
|
54
|
+
};
|
|
55
|
+
export declare const String: ({ str }: {
|
|
56
|
+
str: any;
|
|
57
|
+
}) => {
|
|
58
|
+
String: {};
|
|
59
|
+
};
|
|
60
|
+
export declare const Constraint: ({ contype, raw_expr, conname, pktable, fk_attrs, pk_attrs, fk_matchtype, fk_upd_action, fk_del_action, initially_valid, keys, is_no_inherit, skip_validation, exclusions, access_method, deferrable, indexname }: {
|
|
61
|
+
contype: any;
|
|
62
|
+
raw_expr: any;
|
|
63
|
+
conname: any;
|
|
64
|
+
pktable: any;
|
|
65
|
+
fk_attrs: any;
|
|
66
|
+
pk_attrs: any;
|
|
67
|
+
fk_matchtype: any;
|
|
68
|
+
fk_upd_action: any;
|
|
69
|
+
fk_del_action: any;
|
|
70
|
+
initially_valid: any;
|
|
71
|
+
keys: any;
|
|
72
|
+
is_no_inherit: any;
|
|
73
|
+
skip_validation: any;
|
|
74
|
+
exclusions: any;
|
|
75
|
+
access_method: any;
|
|
76
|
+
deferrable: any;
|
|
77
|
+
indexname: any;
|
|
78
|
+
}) => {
|
|
79
|
+
Constraint: {};
|
|
80
|
+
};
|
|
81
|
+
export declare const A_Const: ({ val }: {
|
|
82
|
+
val: any;
|
|
83
|
+
}) => {
|
|
84
|
+
A_Const: {};
|
|
85
|
+
};
|
|
86
|
+
export declare const Integer: ({ ival }: {
|
|
87
|
+
ival: any;
|
|
88
|
+
}) => {
|
|
89
|
+
Integer: {};
|
|
90
|
+
};
|
|
91
|
+
export declare const AlterTableStmt: ({ relation, cmds, relkind, missing_ok }: {
|
|
92
|
+
relation: any;
|
|
93
|
+
cmds: any;
|
|
94
|
+
relkind: any;
|
|
95
|
+
missing_ok: any;
|
|
96
|
+
}) => {
|
|
97
|
+
AlterTableStmt: {};
|
|
98
|
+
};
|
|
99
|
+
export declare const AlterTableCmd: ({ subtype, behavior, name, def, missing_ok, newowner }: {
|
|
100
|
+
subtype: any;
|
|
101
|
+
behavior: any;
|
|
102
|
+
name: any;
|
|
103
|
+
def: any;
|
|
104
|
+
missing_ok: any;
|
|
105
|
+
newowner: any;
|
|
106
|
+
}) => {
|
|
107
|
+
AlterTableCmd: {};
|
|
108
|
+
};
|
|
109
|
+
export declare const SQLValueFunction: ({ op, typmod }: {
|
|
110
|
+
op: any;
|
|
111
|
+
typmod: any;
|
|
112
|
+
}) => {
|
|
113
|
+
SQLValueFunction: {};
|
|
114
|
+
};
|
|
115
|
+
export declare const RenameStmt: ({ renameType, relationType, relation, subname, newname, behavior, object, missing_ok }: {
|
|
116
|
+
renameType: any;
|
|
117
|
+
relationType: any;
|
|
118
|
+
relation: any;
|
|
119
|
+
subname: any;
|
|
120
|
+
newname: any;
|
|
121
|
+
behavior: any;
|
|
122
|
+
object: any;
|
|
123
|
+
missing_ok: any;
|
|
124
|
+
}) => {
|
|
125
|
+
RenameStmt: {};
|
|
126
|
+
};
|
|
127
|
+
export declare const A_Expr: ({ kind, name, lexpr, rexpr }: {
|
|
128
|
+
kind: any;
|
|
129
|
+
name: any;
|
|
130
|
+
lexpr: any;
|
|
131
|
+
rexpr: any;
|
|
132
|
+
}) => {
|
|
133
|
+
A_Expr: {};
|
|
134
|
+
};
|
|
135
|
+
export declare const TypeCast: ({ arg, typeName }: {
|
|
136
|
+
arg: any;
|
|
137
|
+
typeName: any;
|
|
138
|
+
}) => {
|
|
139
|
+
TypeCast: {};
|
|
140
|
+
};
|
|
141
|
+
export declare const ColumnRef: ({ fields }: {
|
|
142
|
+
fields: any;
|
|
143
|
+
}) => {
|
|
144
|
+
ColumnRef: {};
|
|
145
|
+
};
|
|
146
|
+
export declare const FuncCall: ({ funcname, args, agg_star, func_variadic, agg_order, agg_distinct, agg_filter, agg_within_group, over }: {
|
|
147
|
+
funcname: any;
|
|
148
|
+
args: any;
|
|
149
|
+
agg_star: any;
|
|
150
|
+
func_variadic: any;
|
|
151
|
+
agg_order: any;
|
|
152
|
+
agg_distinct: any;
|
|
153
|
+
agg_filter: any;
|
|
154
|
+
agg_within_group: any;
|
|
155
|
+
over: any;
|
|
156
|
+
}) => {
|
|
157
|
+
FuncCall: {};
|
|
158
|
+
};
|
|
159
|
+
export declare const AlterDefaultPrivilegesStmt: ({ options, action }: {
|
|
160
|
+
options: any;
|
|
161
|
+
action: any;
|
|
162
|
+
}) => {
|
|
163
|
+
AlterDefaultPrivilegesStmt: {};
|
|
164
|
+
};
|
|
165
|
+
export declare const DefElem: ({ defname, arg, defaction, defnamespace }: {
|
|
166
|
+
defname: any;
|
|
167
|
+
arg: any;
|
|
168
|
+
defaction: any;
|
|
169
|
+
defnamespace: any;
|
|
170
|
+
}) => {
|
|
171
|
+
DefElem: {};
|
|
172
|
+
};
|
|
173
|
+
export declare const GrantStmt: ({ is_grant, targtype, objtype, privileges, grantees, behavior, objects, grant_option }: {
|
|
174
|
+
is_grant: any;
|
|
175
|
+
targtype: any;
|
|
176
|
+
objtype: any;
|
|
177
|
+
privileges: any;
|
|
178
|
+
grantees: any;
|
|
179
|
+
behavior: any;
|
|
180
|
+
objects: any;
|
|
181
|
+
grant_option: any;
|
|
182
|
+
}) => {
|
|
183
|
+
GrantStmt: {};
|
|
184
|
+
};
|
|
185
|
+
export declare const AccessPriv: ({ priv_name, cols }: {
|
|
186
|
+
priv_name: any;
|
|
187
|
+
cols: any;
|
|
188
|
+
}) => {
|
|
189
|
+
AccessPriv: {};
|
|
190
|
+
};
|
|
191
|
+
export declare const RoleSpec: ({ roletype, rolename }: {
|
|
192
|
+
roletype: any;
|
|
193
|
+
rolename: any;
|
|
194
|
+
}) => {
|
|
195
|
+
RoleSpec: {};
|
|
196
|
+
};
|
|
197
|
+
export declare const CommentStmt: ({ objtype, object, comment }: {
|
|
198
|
+
objtype: any;
|
|
199
|
+
object: any;
|
|
200
|
+
comment: any;
|
|
201
|
+
}) => {
|
|
202
|
+
CommentStmt: {};
|
|
203
|
+
};
|
|
204
|
+
export declare const ObjectWithArgs: ({ objname, objargs, args_unspecified }: {
|
|
205
|
+
objname: any;
|
|
206
|
+
objargs: any;
|
|
207
|
+
args_unspecified: any;
|
|
208
|
+
}) => {
|
|
209
|
+
ObjectWithArgs: {};
|
|
210
|
+
};
|
|
211
|
+
export declare const SelectStmt: ({ targetList, fromClause, groupClause, havingClause, op, sortClause, whereClause, distinctClause, limitCount, valuesLists, intoClause, all, larg, rarg, limitOffset, withClause, lockingClause, windowClause }: {
|
|
212
|
+
targetList: any;
|
|
213
|
+
fromClause: any;
|
|
214
|
+
groupClause: any;
|
|
215
|
+
havingClause: any;
|
|
216
|
+
op: any;
|
|
217
|
+
sortClause: any;
|
|
218
|
+
whereClause: any;
|
|
219
|
+
distinctClause: any;
|
|
220
|
+
limitCount: any;
|
|
221
|
+
valuesLists: any;
|
|
222
|
+
intoClause: any;
|
|
223
|
+
all: any;
|
|
224
|
+
larg: any;
|
|
225
|
+
rarg: any;
|
|
226
|
+
limitOffset: any;
|
|
227
|
+
withClause: any;
|
|
228
|
+
lockingClause: any;
|
|
229
|
+
windowClause: any;
|
|
230
|
+
}) => {
|
|
231
|
+
SelectStmt: {};
|
|
232
|
+
};
|
|
233
|
+
export declare const ResTarget: ({ val, name, indirection }: {
|
|
234
|
+
val: any;
|
|
235
|
+
name: any;
|
|
236
|
+
indirection: any;
|
|
237
|
+
}) => {
|
|
238
|
+
ResTarget: {};
|
|
239
|
+
};
|
|
240
|
+
export declare const Alias: ({ aliasname, colnames }: {
|
|
241
|
+
aliasname: any;
|
|
242
|
+
colnames: any;
|
|
243
|
+
}) => {
|
|
244
|
+
Alias: {};
|
|
245
|
+
};
|
|
246
|
+
export declare const JoinExpr: ({ jointype, larg, rarg, quals, usingClause, isNatural, alias }: {
|
|
247
|
+
jointype: any;
|
|
248
|
+
larg: any;
|
|
249
|
+
rarg: any;
|
|
250
|
+
quals: any;
|
|
251
|
+
usingClause: any;
|
|
252
|
+
isNatural: any;
|
|
253
|
+
alias: any;
|
|
254
|
+
}) => {
|
|
255
|
+
JoinExpr: {};
|
|
256
|
+
};
|
|
257
|
+
export declare const BoolExpr: ({ boolop, args }: {
|
|
258
|
+
boolop: any;
|
|
259
|
+
args: any;
|
|
260
|
+
}) => {
|
|
261
|
+
BoolExpr: {};
|
|
262
|
+
};
|
|
263
|
+
export declare const A_Star: ({}: {}) => {
|
|
264
|
+
A_Star: {};
|
|
265
|
+
};
|
|
266
|
+
export declare const SortBy: ({ node, sortby_dir, sortby_nulls, useOp }: {
|
|
267
|
+
node: any;
|
|
268
|
+
sortby_dir: any;
|
|
269
|
+
sortby_nulls: any;
|
|
270
|
+
useOp: any;
|
|
271
|
+
}) => {
|
|
272
|
+
SortBy: {};
|
|
273
|
+
};
|
|
274
|
+
export declare const NamedArgExpr: ({ arg, name, argnumber }: {
|
|
275
|
+
arg: any;
|
|
276
|
+
name: any;
|
|
277
|
+
argnumber: any;
|
|
278
|
+
}) => {
|
|
279
|
+
NamedArgExpr: {};
|
|
280
|
+
};
|
|
281
|
+
export declare const A_ArrayExpr: ({ elements }: {
|
|
282
|
+
elements: any;
|
|
283
|
+
}) => {
|
|
284
|
+
A_ArrayExpr: {};
|
|
285
|
+
};
|
|
286
|
+
export declare const Float: ({ str }: {
|
|
287
|
+
str: any;
|
|
288
|
+
}) => {
|
|
289
|
+
Float: {};
|
|
290
|
+
};
|
|
291
|
+
export declare const RangeFunction: ({ is_rowsfrom, functions, coldeflist, alias, lateral, ordinality }: {
|
|
292
|
+
is_rowsfrom: any;
|
|
293
|
+
functions: any;
|
|
294
|
+
coldeflist: any;
|
|
295
|
+
alias: any;
|
|
296
|
+
lateral: any;
|
|
297
|
+
ordinality: any;
|
|
298
|
+
}) => {
|
|
299
|
+
RangeFunction: {};
|
|
300
|
+
};
|
|
301
|
+
export declare const SubLink: ({ subLinkType, subselect, testexpr, operName }: {
|
|
302
|
+
subLinkType: any;
|
|
303
|
+
subselect: any;
|
|
304
|
+
testexpr: any;
|
|
305
|
+
operName: any;
|
|
306
|
+
}) => {
|
|
307
|
+
SubLink: {};
|
|
308
|
+
};
|
|
309
|
+
export declare const Null: ({}: {}) => {
|
|
310
|
+
Null: {};
|
|
311
|
+
};
|
|
312
|
+
export declare const VariableSetStmt: ({ kind, name, args, is_local }: {
|
|
313
|
+
kind: any;
|
|
314
|
+
name: any;
|
|
315
|
+
args: any;
|
|
316
|
+
is_local: any;
|
|
317
|
+
}) => {
|
|
318
|
+
VariableSetStmt: {};
|
|
319
|
+
};
|
|
320
|
+
export declare const VariableShowStmt: ({ name }: {
|
|
321
|
+
name: any;
|
|
322
|
+
}) => {
|
|
323
|
+
VariableShowStmt: {};
|
|
324
|
+
};
|
|
325
|
+
export declare const DoStmt: ({ args }: {
|
|
326
|
+
args: any;
|
|
327
|
+
}) => {
|
|
328
|
+
DoStmt: {};
|
|
329
|
+
};
|
|
330
|
+
export declare const CreateDomainStmt: ({ domainname, typeName, constraints, collClause }: {
|
|
331
|
+
domainname: any;
|
|
332
|
+
typeName: any;
|
|
333
|
+
constraints: any;
|
|
334
|
+
collClause: any;
|
|
335
|
+
}) => {
|
|
336
|
+
CreateDomainStmt: {};
|
|
337
|
+
};
|
|
338
|
+
export declare const CreateEnumStmt: ({ typeName, vals }: {
|
|
339
|
+
typeName: any;
|
|
340
|
+
vals: any;
|
|
341
|
+
}) => {
|
|
342
|
+
CreateEnumStmt: {};
|
|
343
|
+
};
|
|
344
|
+
export declare const CreateExtensionStmt: ({ extname, options, if_not_exists }: {
|
|
345
|
+
extname: any;
|
|
346
|
+
options: any;
|
|
347
|
+
if_not_exists: any;
|
|
348
|
+
}) => {
|
|
349
|
+
CreateExtensionStmt: {};
|
|
350
|
+
};
|
|
351
|
+
export declare const CreateFunctionStmt: ({ replace, funcname, parameters, returnType, options }: {
|
|
352
|
+
replace: any;
|
|
353
|
+
funcname: any;
|
|
354
|
+
parameters: any;
|
|
355
|
+
returnType: any;
|
|
356
|
+
options: any;
|
|
357
|
+
}) => {
|
|
358
|
+
CreateFunctionStmt: {};
|
|
359
|
+
};
|
|
360
|
+
export declare const FunctionParameter: ({ name, argType, mode, defexpr }: {
|
|
361
|
+
name: any;
|
|
362
|
+
argType: any;
|
|
363
|
+
mode: any;
|
|
364
|
+
defexpr: any;
|
|
365
|
+
}) => {
|
|
366
|
+
FunctionParameter: {};
|
|
367
|
+
};
|
|
368
|
+
export declare const TransactionStmt: ({ kind, options, gid }: {
|
|
369
|
+
kind: any;
|
|
370
|
+
options: any;
|
|
371
|
+
gid: any;
|
|
372
|
+
}) => {
|
|
373
|
+
TransactionStmt: {};
|
|
374
|
+
};
|
|
375
|
+
export declare const IndexStmt: ({ idxname, relation, accessMethod, indexParams, concurrent, unique, whereClause, options, if_not_exists }: {
|
|
376
|
+
idxname: any;
|
|
377
|
+
relation: any;
|
|
378
|
+
accessMethod: any;
|
|
379
|
+
indexParams: any;
|
|
380
|
+
concurrent: any;
|
|
381
|
+
unique: any;
|
|
382
|
+
whereClause: any;
|
|
383
|
+
options: any;
|
|
384
|
+
if_not_exists: any;
|
|
385
|
+
}) => {
|
|
386
|
+
IndexStmt: {};
|
|
387
|
+
};
|
|
388
|
+
export declare const IndexElem: ({ name, ordering, nulls_ordering, expr, opclass, collation }: {
|
|
389
|
+
name: any;
|
|
390
|
+
ordering: any;
|
|
391
|
+
nulls_ordering: any;
|
|
392
|
+
expr: any;
|
|
393
|
+
opclass: any;
|
|
394
|
+
collation: any;
|
|
395
|
+
}) => {
|
|
396
|
+
IndexElem: {};
|
|
397
|
+
};
|
|
398
|
+
export declare const NullTest: ({ arg, nulltesttype }: {
|
|
399
|
+
arg: any;
|
|
400
|
+
nulltesttype: any;
|
|
401
|
+
}) => {
|
|
402
|
+
NullTest: {};
|
|
403
|
+
};
|
|
404
|
+
export declare const ParamRef: ({ number }: {
|
|
405
|
+
number: any;
|
|
406
|
+
}) => {
|
|
407
|
+
ParamRef: {};
|
|
408
|
+
};
|
|
409
|
+
export declare const CreatePolicyStmt: ({ policy_name, table, cmd_name, permissive, roles, qual, with_check }: {
|
|
410
|
+
policy_name: any;
|
|
411
|
+
table: any;
|
|
412
|
+
cmd_name: any;
|
|
413
|
+
permissive: any;
|
|
414
|
+
roles: any;
|
|
415
|
+
qual: any;
|
|
416
|
+
with_check: any;
|
|
417
|
+
}) => {
|
|
418
|
+
CreatePolicyStmt: {};
|
|
419
|
+
};
|
|
420
|
+
export declare const RangeSubselect: ({ subquery, alias, lateral }: {
|
|
421
|
+
subquery: any;
|
|
422
|
+
alias: any;
|
|
423
|
+
lateral: any;
|
|
424
|
+
}) => {
|
|
425
|
+
RangeSubselect: {};
|
|
426
|
+
};
|
|
427
|
+
export declare const A_Indirection: ({ arg, indirection }: {
|
|
428
|
+
arg: any;
|
|
429
|
+
indirection: any;
|
|
430
|
+
}) => {
|
|
431
|
+
A_Indirection: {};
|
|
432
|
+
};
|
|
433
|
+
export declare const RowExpr: ({ args, row_format }: {
|
|
434
|
+
args: any;
|
|
435
|
+
row_format: any;
|
|
436
|
+
}) => {
|
|
437
|
+
RowExpr: {};
|
|
438
|
+
};
|
|
439
|
+
export declare const CreateRoleStmt: ({ stmt_type, role, options }: {
|
|
440
|
+
stmt_type: any;
|
|
441
|
+
role: any;
|
|
442
|
+
options: any;
|
|
443
|
+
}) => {
|
|
444
|
+
CreateRoleStmt: {};
|
|
445
|
+
};
|
|
446
|
+
export declare const GrantRoleStmt: ({ granted_roles, grantee_roles, is_grant, behavior, admin_opt }: {
|
|
447
|
+
granted_roles: any;
|
|
448
|
+
grantee_roles: any;
|
|
449
|
+
is_grant: any;
|
|
450
|
+
behavior: any;
|
|
451
|
+
admin_opt: any;
|
|
452
|
+
}) => {
|
|
453
|
+
GrantRoleStmt: {};
|
|
454
|
+
};
|
|
455
|
+
export declare const RuleStmt: ({ relation, rulename, event, instead, actions, whereClause, replace }: {
|
|
456
|
+
relation: any;
|
|
457
|
+
rulename: any;
|
|
458
|
+
event: any;
|
|
459
|
+
instead: any;
|
|
460
|
+
actions: any;
|
|
461
|
+
whereClause: any;
|
|
462
|
+
replace: any;
|
|
463
|
+
}) => {
|
|
464
|
+
RuleStmt: {};
|
|
465
|
+
};
|
|
466
|
+
export declare const UpdateStmt: ({ relation, targetList, whereClause, returningList, fromClause, withClause }: {
|
|
467
|
+
relation: any;
|
|
468
|
+
targetList: any;
|
|
469
|
+
whereClause: any;
|
|
470
|
+
returningList: any;
|
|
471
|
+
fromClause: any;
|
|
472
|
+
withClause: any;
|
|
473
|
+
}) => {
|
|
474
|
+
UpdateStmt: {};
|
|
475
|
+
};
|
|
476
|
+
export declare const DeleteStmt: ({ relation, whereClause, usingClause, returningList, withClause }: {
|
|
477
|
+
relation: any;
|
|
478
|
+
whereClause: any;
|
|
479
|
+
usingClause: any;
|
|
480
|
+
returningList: any;
|
|
481
|
+
withClause: any;
|
|
482
|
+
}) => {
|
|
483
|
+
DeleteStmt: {};
|
|
484
|
+
};
|
|
485
|
+
export declare const InsertStmt: ({ relation, selectStmt, override, cols, onConflictClause, returningList, withClause }: {
|
|
486
|
+
relation: any;
|
|
487
|
+
selectStmt: any;
|
|
488
|
+
override: any;
|
|
489
|
+
cols: any;
|
|
490
|
+
onConflictClause: any;
|
|
491
|
+
returningList: any;
|
|
492
|
+
withClause: any;
|
|
493
|
+
}) => {
|
|
494
|
+
InsertStmt: {};
|
|
495
|
+
};
|
|
496
|
+
export declare const CreateSeqStmt: ({ sequence, options, if_not_exists }: {
|
|
497
|
+
sequence: any;
|
|
498
|
+
options: any;
|
|
499
|
+
if_not_exists: any;
|
|
500
|
+
}) => {
|
|
501
|
+
CreateSeqStmt: {};
|
|
502
|
+
};
|
|
503
|
+
export declare const OnConflictClause: ({ action, infer, targetList, whereClause }: {
|
|
504
|
+
action: any;
|
|
505
|
+
infer: any;
|
|
506
|
+
targetList: any;
|
|
507
|
+
whereClause: any;
|
|
508
|
+
}) => {
|
|
509
|
+
OnConflictClause: {};
|
|
510
|
+
};
|
|
511
|
+
export declare const InferClause: ({ indexElems, conname, whereClause }: {
|
|
512
|
+
indexElems: any;
|
|
513
|
+
conname: any;
|
|
514
|
+
whereClause: any;
|
|
515
|
+
}) => {
|
|
516
|
+
InferClause: {};
|
|
517
|
+
};
|
|
518
|
+
export declare const MultiAssignRef: ({ source, colno, ncolumns }: {
|
|
519
|
+
source: any;
|
|
520
|
+
colno: any;
|
|
521
|
+
ncolumns: any;
|
|
522
|
+
}) => {
|
|
523
|
+
MultiAssignRef: {};
|
|
524
|
+
};
|
|
525
|
+
export declare const SetToDefault: ({}: {}) => {
|
|
526
|
+
SetToDefault: {};
|
|
527
|
+
};
|
|
528
|
+
export declare const MinMaxExpr: ({ op, args }: {
|
|
529
|
+
op: any;
|
|
530
|
+
args: any;
|
|
531
|
+
}) => {
|
|
532
|
+
MinMaxExpr: {};
|
|
533
|
+
};
|
|
534
|
+
export declare const DropStmt: ({ objects, removeType, behavior, missing_ok, concurrent }: {
|
|
535
|
+
objects: any;
|
|
536
|
+
removeType: any;
|
|
537
|
+
behavior: any;
|
|
538
|
+
missing_ok: any;
|
|
539
|
+
concurrent: any;
|
|
540
|
+
}) => {
|
|
541
|
+
DropStmt: {};
|
|
542
|
+
};
|
|
543
|
+
export declare const CreateTrigStmt: ({ trigname, relation, funcname, row, timing, events, args, columns, whenClause, transitionRels, isconstraint, deferrable, initdeferred }: {
|
|
544
|
+
trigname: any;
|
|
545
|
+
relation: any;
|
|
546
|
+
funcname: any;
|
|
547
|
+
row: any;
|
|
548
|
+
timing: any;
|
|
549
|
+
events: any;
|
|
550
|
+
args: any;
|
|
551
|
+
columns: any;
|
|
552
|
+
whenClause: any;
|
|
553
|
+
transitionRels: any;
|
|
554
|
+
isconstraint: any;
|
|
555
|
+
deferrable: any;
|
|
556
|
+
initdeferred: any;
|
|
557
|
+
}) => {
|
|
558
|
+
CreateTrigStmt: {};
|
|
559
|
+
};
|
|
560
|
+
export declare const TriggerTransition: ({ name, isNew, isTable }: {
|
|
561
|
+
name: any;
|
|
562
|
+
isNew: any;
|
|
563
|
+
isTable: any;
|
|
564
|
+
}) => {
|
|
565
|
+
TriggerTransition: {};
|
|
566
|
+
};
|
|
567
|
+
export declare const CompositeTypeStmt: ({ typevar, coldeflist }: {
|
|
568
|
+
typevar: any;
|
|
569
|
+
coldeflist: any;
|
|
570
|
+
}) => {
|
|
571
|
+
CompositeTypeStmt: {};
|
|
572
|
+
};
|
|
573
|
+
export declare const ExplainStmt: ({ query, options }: {
|
|
574
|
+
query: any;
|
|
575
|
+
options: any;
|
|
576
|
+
}) => {
|
|
577
|
+
ExplainStmt: {};
|
|
578
|
+
};
|
|
579
|
+
export declare const ViewStmt: ({ view, query, withCheckOption, replace, aliases, options }: {
|
|
580
|
+
view: any;
|
|
581
|
+
query: any;
|
|
582
|
+
withCheckOption: any;
|
|
583
|
+
replace: any;
|
|
584
|
+
aliases: any;
|
|
585
|
+
options: any;
|
|
586
|
+
}) => {
|
|
587
|
+
ViewStmt: {};
|
|
588
|
+
};
|
|
589
|
+
export declare const CollateClause: ({ arg, collname }: {
|
|
590
|
+
arg: any;
|
|
591
|
+
collname: any;
|
|
592
|
+
}) => {
|
|
593
|
+
CollateClause: {};
|
|
594
|
+
};
|
|
595
|
+
export declare const DefineStmt: ({ kind, defnames, args, definition, oldstyle }: {
|
|
596
|
+
kind: any;
|
|
597
|
+
defnames: any;
|
|
598
|
+
args: any;
|
|
599
|
+
definition: any;
|
|
600
|
+
oldstyle: any;
|
|
601
|
+
}) => {
|
|
602
|
+
DefineStmt: {};
|
|
603
|
+
};
|
|
604
|
+
export declare const DropRoleStmt: ({ roles, missing_ok }: {
|
|
605
|
+
roles: any;
|
|
606
|
+
missing_ok: any;
|
|
607
|
+
}) => {
|
|
608
|
+
DropRoleStmt: {};
|
|
609
|
+
};
|
|
610
|
+
export declare const AlterOwnerStmt: ({ objectType, object, newowner }: {
|
|
611
|
+
objectType: any;
|
|
612
|
+
object: any;
|
|
613
|
+
newowner: any;
|
|
614
|
+
}) => {
|
|
615
|
+
AlterOwnerStmt: {};
|
|
616
|
+
};
|
|
617
|
+
export declare const AlterObjectSchemaStmt: ({ objectType, object, newschema, relation, missing_ok }: {
|
|
618
|
+
objectType: any;
|
|
619
|
+
object: any;
|
|
620
|
+
newschema: any;
|
|
621
|
+
relation: any;
|
|
622
|
+
missing_ok: any;
|
|
623
|
+
}) => {
|
|
624
|
+
AlterObjectSchemaStmt: {};
|
|
625
|
+
};
|
|
626
|
+
export declare const CreateConversionStmt: ({ conversion_name, for_encoding_name, to_encoding_name, func_name, def }: {
|
|
627
|
+
conversion_name: any;
|
|
628
|
+
for_encoding_name: any;
|
|
629
|
+
to_encoding_name: any;
|
|
630
|
+
func_name: any;
|
|
631
|
+
def: any;
|
|
632
|
+
}) => {
|
|
633
|
+
CreateConversionStmt: {};
|
|
634
|
+
};
|
|
635
|
+
export declare const CreateFdwStmt: ({ fdwname, func_options, options }: {
|
|
636
|
+
fdwname: any;
|
|
637
|
+
func_options: any;
|
|
638
|
+
options: any;
|
|
639
|
+
}) => {
|
|
640
|
+
CreateFdwStmt: {};
|
|
641
|
+
};
|
|
642
|
+
export declare const CreateForeignServerStmt: ({ servername, fdwname, options, servertype, version }: {
|
|
643
|
+
servername: any;
|
|
644
|
+
fdwname: any;
|
|
645
|
+
options: any;
|
|
646
|
+
servertype: any;
|
|
647
|
+
version: any;
|
|
648
|
+
}) => {
|
|
649
|
+
CreateForeignServerStmt: {};
|
|
650
|
+
};
|
|
651
|
+
export declare const CreatePLangStmt: ({ plname, plhandler }: {
|
|
652
|
+
plname: any;
|
|
653
|
+
plhandler: any;
|
|
654
|
+
}) => {
|
|
655
|
+
CreatePLangStmt: {};
|
|
656
|
+
};
|
|
657
|
+
export declare const CreateOpFamilyStmt: ({ opfamilyname, amname }: {
|
|
658
|
+
opfamilyname: any;
|
|
659
|
+
amname: any;
|
|
660
|
+
}) => {
|
|
661
|
+
CreateOpFamilyStmt: {};
|
|
662
|
+
};
|
|
663
|
+
export declare const CreateOpClassStmt: ({ opclassname, amname, datatype, items, isDefault }: {
|
|
664
|
+
opclassname: any;
|
|
665
|
+
amname: any;
|
|
666
|
+
datatype: any;
|
|
667
|
+
items: any;
|
|
668
|
+
isDefault: any;
|
|
669
|
+
}) => {
|
|
670
|
+
CreateOpClassStmt: {};
|
|
671
|
+
};
|
|
672
|
+
export declare const CreateOpClassItem: ({ itemtype, storedtype, name, number, class_args, order_family }: {
|
|
673
|
+
itemtype: any;
|
|
674
|
+
storedtype: any;
|
|
675
|
+
name: any;
|
|
676
|
+
number: any;
|
|
677
|
+
class_args: any;
|
|
678
|
+
order_family: any;
|
|
679
|
+
}) => {
|
|
680
|
+
CreateOpClassItem: {};
|
|
681
|
+
};
|
|
682
|
+
export declare const AlterOpFamilyStmt: ({ opfamilyname, amname, items, isDrop }: {
|
|
683
|
+
opfamilyname: any;
|
|
684
|
+
amname: any;
|
|
685
|
+
items: any;
|
|
686
|
+
isDrop: any;
|
|
687
|
+
}) => {
|
|
688
|
+
AlterOpFamilyStmt: {};
|
|
689
|
+
};
|
|
690
|
+
export declare const AlterOperatorStmt: ({ opername, options }: {
|
|
691
|
+
opername: any;
|
|
692
|
+
options: any;
|
|
693
|
+
}) => {
|
|
694
|
+
AlterOperatorStmt: {};
|
|
695
|
+
};
|
|
696
|
+
export declare const VacuumStmt: ({ options, relation, va_cols }: {
|
|
697
|
+
options: any;
|
|
698
|
+
relation: any;
|
|
699
|
+
va_cols: any;
|
|
700
|
+
}) => {
|
|
701
|
+
VacuumStmt: {};
|
|
702
|
+
};
|
|
703
|
+
export declare const CreateTableAsStmt: ({ query, into, relkind, if_not_exists }: {
|
|
704
|
+
query: any;
|
|
705
|
+
into: any;
|
|
706
|
+
relkind: any;
|
|
707
|
+
if_not_exists: any;
|
|
708
|
+
}) => {
|
|
709
|
+
CreateTableAsStmt: {};
|
|
710
|
+
};
|
|
711
|
+
export declare const IntoClause: ({ rel, onCommit, colNames, skipData, options }: {
|
|
712
|
+
rel: any;
|
|
713
|
+
onCommit: any;
|
|
714
|
+
colNames: any;
|
|
715
|
+
skipData: any;
|
|
716
|
+
options: any;
|
|
717
|
+
}) => {
|
|
718
|
+
IntoClause: {};
|
|
719
|
+
};
|
|
720
|
+
export declare const CaseExpr: ({ args, defresult, arg }: {
|
|
721
|
+
args: any;
|
|
722
|
+
defresult: any;
|
|
723
|
+
arg: any;
|
|
724
|
+
}) => {
|
|
725
|
+
CaseExpr: {};
|
|
726
|
+
};
|
|
727
|
+
export declare const CaseWhen: ({ expr, result }: {
|
|
728
|
+
expr: any;
|
|
729
|
+
result: any;
|
|
730
|
+
}) => {
|
|
731
|
+
CaseWhen: {};
|
|
732
|
+
};
|
|
733
|
+
export declare const BooleanTest: ({ arg, booltesttype }: {
|
|
734
|
+
arg: any;
|
|
735
|
+
booltesttype: any;
|
|
736
|
+
}) => {
|
|
737
|
+
BooleanTest: {};
|
|
738
|
+
};
|
|
739
|
+
export declare const AlterFunctionStmt: ({ func, actions }: {
|
|
740
|
+
func: any;
|
|
741
|
+
actions: any;
|
|
742
|
+
}) => {
|
|
743
|
+
AlterFunctionStmt: {};
|
|
744
|
+
};
|
|
745
|
+
export declare const TruncateStmt: ({ relations, behavior, restart_seqs }: {
|
|
746
|
+
relations: any;
|
|
747
|
+
behavior: any;
|
|
748
|
+
restart_seqs: any;
|
|
749
|
+
}) => {
|
|
750
|
+
TruncateStmt: {};
|
|
751
|
+
};
|
|
752
|
+
export declare const A_Indices: ({ is_slice, lidx, uidx }: {
|
|
753
|
+
is_slice: any;
|
|
754
|
+
lidx: any;
|
|
755
|
+
uidx: any;
|
|
756
|
+
}) => {
|
|
757
|
+
A_Indices: {};
|
|
758
|
+
};
|
|
759
|
+
export declare const NotifyStmt: ({ conditionname }: {
|
|
760
|
+
conditionname: any;
|
|
761
|
+
}) => {
|
|
762
|
+
NotifyStmt: {};
|
|
763
|
+
};
|
|
764
|
+
export declare const ListenStmt: ({ conditionname }: {
|
|
765
|
+
conditionname: any;
|
|
766
|
+
}) => {
|
|
767
|
+
ListenStmt: {};
|
|
768
|
+
};
|
|
769
|
+
export declare const UnlistenStmt: ({ conditionname }: {
|
|
770
|
+
conditionname: any;
|
|
771
|
+
}) => {
|
|
772
|
+
UnlistenStmt: {};
|
|
773
|
+
};
|
|
774
|
+
export declare const BitString: ({ str }: {
|
|
775
|
+
str: any;
|
|
776
|
+
}) => {
|
|
777
|
+
BitString: {};
|
|
778
|
+
};
|
|
779
|
+
export declare const CoalesceExpr: ({ args }: {
|
|
780
|
+
args: any;
|
|
781
|
+
}) => {
|
|
782
|
+
CoalesceExpr: {};
|
|
783
|
+
};
|
|
784
|
+
export declare const ClusterStmt: ({ relation, indexname }: {
|
|
785
|
+
relation: any;
|
|
786
|
+
indexname: any;
|
|
787
|
+
}) => {
|
|
788
|
+
ClusterStmt: {};
|
|
789
|
+
};
|
|
790
|
+
export declare const TableLikeClause: ({ relation, options }: {
|
|
791
|
+
relation: any;
|
|
792
|
+
options: any;
|
|
793
|
+
}) => {
|
|
794
|
+
TableLikeClause: {};
|
|
795
|
+
};
|
|
796
|
+
export declare const WithClause: ({ ctes, recursive }: {
|
|
797
|
+
ctes: any;
|
|
798
|
+
recursive: any;
|
|
799
|
+
}) => {
|
|
800
|
+
WithClause: {};
|
|
801
|
+
};
|
|
802
|
+
export declare const CommonTableExpr: ({ ctename, aliascolnames, ctequery }: {
|
|
803
|
+
ctename: any;
|
|
804
|
+
aliascolnames: any;
|
|
805
|
+
ctequery: any;
|
|
806
|
+
}) => {
|
|
807
|
+
CommonTableExpr: {};
|
|
808
|
+
};
|
|
809
|
+
export declare const CreateRangeStmt: ({ typeName, params }: {
|
|
810
|
+
typeName: any;
|
|
811
|
+
params: any;
|
|
812
|
+
}) => {
|
|
813
|
+
CreateRangeStmt: {};
|
|
814
|
+
};
|
|
815
|
+
export declare const DeclareCursorStmt: ({ portalname, options, query }: {
|
|
816
|
+
portalname: any;
|
|
817
|
+
options: any;
|
|
818
|
+
query: any;
|
|
819
|
+
}) => {
|
|
820
|
+
DeclareCursorStmt: {};
|
|
821
|
+
};
|
|
822
|
+
export declare const FetchStmt: ({ direction, howMany, portalname, ismove }: {
|
|
823
|
+
direction: any;
|
|
824
|
+
howMany: any;
|
|
825
|
+
portalname: any;
|
|
826
|
+
ismove: any;
|
|
827
|
+
}) => {
|
|
828
|
+
FetchStmt: {};
|
|
829
|
+
};
|
|
830
|
+
export declare const LockingClause: ({ strength, waitPolicy, lockedRels }: {
|
|
831
|
+
strength: any;
|
|
832
|
+
waitPolicy: any;
|
|
833
|
+
lockedRels: any;
|
|
834
|
+
}) => {
|
|
835
|
+
LockingClause: {};
|
|
836
|
+
};
|
|
837
|
+
export declare const CreateAmStmt: ({ amname, handler_name, amtype }: {
|
|
838
|
+
amname: any;
|
|
839
|
+
handler_name: any;
|
|
840
|
+
amtype: any;
|
|
841
|
+
}) => {
|
|
842
|
+
CreateAmStmt: {};
|
|
843
|
+
};
|
|
844
|
+
export declare const CreateCastStmt: ({ sourcetype, targettype, context, inout, func }: {
|
|
845
|
+
sourcetype: any;
|
|
846
|
+
targettype: any;
|
|
847
|
+
context: any;
|
|
848
|
+
inout: any;
|
|
849
|
+
func: any;
|
|
850
|
+
}) => {
|
|
851
|
+
CreateCastStmt: {};
|
|
852
|
+
};
|
|
853
|
+
export declare const ReindexStmt: ({ kind, relation, options, name }: {
|
|
854
|
+
kind: any;
|
|
855
|
+
relation: any;
|
|
856
|
+
options: any;
|
|
857
|
+
name: any;
|
|
858
|
+
}) => {
|
|
859
|
+
ReindexStmt: {};
|
|
860
|
+
};
|
|
861
|
+
export declare const DropOwnedStmt: ({ roles, behavior }: {
|
|
862
|
+
roles: any;
|
|
863
|
+
behavior: any;
|
|
864
|
+
}) => {
|
|
865
|
+
DropOwnedStmt: {};
|
|
866
|
+
};
|
|
867
|
+
export declare const ReassignOwnedStmt: ({ roles, newrole }: {
|
|
868
|
+
roles: any;
|
|
869
|
+
newrole: any;
|
|
870
|
+
}) => {
|
|
871
|
+
ReassignOwnedStmt: {};
|
|
872
|
+
};
|
|
873
|
+
export declare const AlterSeqStmt: ({ sequence, options, missing_ok }: {
|
|
874
|
+
sequence: any;
|
|
875
|
+
options: any;
|
|
876
|
+
missing_ok: any;
|
|
877
|
+
}) => {
|
|
878
|
+
AlterSeqStmt: {};
|
|
879
|
+
};
|
|
880
|
+
export declare const AlterDomainStmt: ({ subtype, typeName, behavior, def, name, missing_ok }: {
|
|
881
|
+
subtype: any;
|
|
882
|
+
typeName: any;
|
|
883
|
+
behavior: any;
|
|
884
|
+
def: any;
|
|
885
|
+
name: any;
|
|
886
|
+
missing_ok: any;
|
|
887
|
+
}) => {
|
|
888
|
+
AlterDomainStmt: {};
|
|
889
|
+
};
|
|
890
|
+
export declare const PrepareStmt: ({ name, query, argtypes }: {
|
|
891
|
+
name: any;
|
|
892
|
+
query: any;
|
|
893
|
+
argtypes: any;
|
|
894
|
+
}) => {
|
|
895
|
+
PrepareStmt: {};
|
|
896
|
+
};
|
|
897
|
+
export declare const ExecuteStmt: ({ name, params }: {
|
|
898
|
+
name: any;
|
|
899
|
+
params: any;
|
|
900
|
+
}) => {
|
|
901
|
+
ExecuteStmt: {};
|
|
902
|
+
};
|
|
903
|
+
export declare const AlterEnumStmt: ({ typeName, newVal, newValIsAfter, newValNeighbor, skipIfNewValExists }: {
|
|
904
|
+
typeName: any;
|
|
905
|
+
newVal: any;
|
|
906
|
+
newValIsAfter: any;
|
|
907
|
+
newValNeighbor: any;
|
|
908
|
+
skipIfNewValExists: any;
|
|
909
|
+
}) => {
|
|
910
|
+
AlterEnumStmt: {};
|
|
911
|
+
};
|
|
912
|
+
export declare const CreateEventTrigStmt: ({ trigname, eventname, funcname, whenclause }: {
|
|
913
|
+
trigname: any;
|
|
914
|
+
eventname: any;
|
|
915
|
+
funcname: any;
|
|
916
|
+
whenclause: any;
|
|
917
|
+
}) => {
|
|
918
|
+
CreateEventTrigStmt: {};
|
|
919
|
+
};
|
|
920
|
+
export declare const AlterEventTrigStmt: ({ trigname, tgenabled }: {
|
|
921
|
+
trigname: any;
|
|
922
|
+
tgenabled: any;
|
|
923
|
+
}) => {
|
|
924
|
+
AlterEventTrigStmt: {};
|
|
925
|
+
};
|
|
926
|
+
export declare const CreateUserMappingStmt: ({ user, servername, options }: {
|
|
927
|
+
user: any;
|
|
928
|
+
servername: any;
|
|
929
|
+
options: any;
|
|
930
|
+
}) => {
|
|
931
|
+
CreateUserMappingStmt: {};
|
|
932
|
+
};
|
|
933
|
+
export declare const AlterRoleStmt: ({ role, options, action }: {
|
|
934
|
+
role: any;
|
|
935
|
+
options: any;
|
|
936
|
+
action: any;
|
|
937
|
+
}) => {
|
|
938
|
+
AlterRoleStmt: {};
|
|
939
|
+
};
|
|
940
|
+
export declare const AlterPolicyStmt: ({ policy_name, table, qual }: {
|
|
941
|
+
policy_name: any;
|
|
942
|
+
table: any;
|
|
943
|
+
qual: any;
|
|
944
|
+
}) => {
|
|
945
|
+
AlterPolicyStmt: {};
|
|
946
|
+
};
|
|
947
|
+
export declare const AlterFdwStmt: ({ fdwname, func_options, options }: {
|
|
948
|
+
fdwname: any;
|
|
949
|
+
func_options: any;
|
|
950
|
+
options: any;
|
|
951
|
+
}) => {
|
|
952
|
+
AlterFdwStmt: {};
|
|
953
|
+
};
|
|
954
|
+
export declare const AlterForeignServerStmt: ({ servername, version, options, has_version }: {
|
|
955
|
+
servername: any;
|
|
956
|
+
version: any;
|
|
957
|
+
options: any;
|
|
958
|
+
has_version: any;
|
|
959
|
+
}) => {
|
|
960
|
+
AlterForeignServerStmt: {};
|
|
961
|
+
};
|
|
962
|
+
export declare const AlterUserMappingStmt: ({ user, servername, options }: {
|
|
963
|
+
user: any;
|
|
964
|
+
servername: any;
|
|
965
|
+
options: any;
|
|
966
|
+
}) => {
|
|
967
|
+
AlterUserMappingStmt: {};
|
|
968
|
+
};
|
|
969
|
+
export declare const DropUserMappingStmt: ({ user, servername, missing_ok }: {
|
|
970
|
+
user: any;
|
|
971
|
+
servername: any;
|
|
972
|
+
missing_ok: any;
|
|
973
|
+
}) => {
|
|
974
|
+
DropUserMappingStmt: {};
|
|
975
|
+
};
|
|
976
|
+
export declare const CreateForeignTableStmt: ({ base, servername, options }: {
|
|
977
|
+
base: any;
|
|
978
|
+
servername: any;
|
|
979
|
+
options: any;
|
|
980
|
+
}) => {
|
|
981
|
+
CreateForeignTableStmt: {};
|
|
982
|
+
};
|
|
983
|
+
export declare const ImportForeignSchemaStmt: ({ server_name, remote_schema, local_schema, list_type, table_list, options }: {
|
|
984
|
+
server_name: any;
|
|
985
|
+
remote_schema: any;
|
|
986
|
+
local_schema: any;
|
|
987
|
+
list_type: any;
|
|
988
|
+
table_list: any;
|
|
989
|
+
options: any;
|
|
990
|
+
}) => {
|
|
991
|
+
ImportForeignSchemaStmt: {};
|
|
992
|
+
};
|
|
993
|
+
export declare const ConstraintsSetStmt: ({ deferred }: {
|
|
994
|
+
deferred: any;
|
|
995
|
+
}) => {
|
|
996
|
+
ConstraintsSetStmt: {};
|
|
997
|
+
};
|
|
998
|
+
export declare const GroupingFunc: ({ args }: {
|
|
999
|
+
args: any;
|
|
1000
|
+
}) => {
|
|
1001
|
+
GroupingFunc: {};
|
|
1002
|
+
};
|
|
1003
|
+
export declare const GroupingSet: ({ kind, content }: {
|
|
1004
|
+
kind: any;
|
|
1005
|
+
content: any;
|
|
1006
|
+
}) => {
|
|
1007
|
+
GroupingSet: {};
|
|
1008
|
+
};
|
|
1009
|
+
export declare const WindowDef: ({ orderClause, frameOptions, partitionClause, name, startOffset, endOffset }: {
|
|
1010
|
+
orderClause: any;
|
|
1011
|
+
frameOptions: any;
|
|
1012
|
+
partitionClause: any;
|
|
1013
|
+
name: any;
|
|
1014
|
+
startOffset: any;
|
|
1015
|
+
endOffset: any;
|
|
1016
|
+
}) => {
|
|
1017
|
+
WindowDef: {};
|
|
1018
|
+
};
|
|
1019
|
+
export declare const DiscardStmt: ({ target }: {
|
|
1020
|
+
target: any;
|
|
1021
|
+
}) => {
|
|
1022
|
+
DiscardStmt: {};
|
|
1023
|
+
};
|
|
1024
|
+
export declare const LockStmt: ({ relations, mode, nowait }: {
|
|
1025
|
+
relations: any;
|
|
1026
|
+
mode: any;
|
|
1027
|
+
nowait: any;
|
|
1028
|
+
}) => {
|
|
1029
|
+
LockStmt: {};
|
|
1030
|
+
};
|
|
1031
|
+
export declare const AlterRoleSetStmt: ({ role, setstmt }: {
|
|
1032
|
+
role: any;
|
|
1033
|
+
setstmt: any;
|
|
1034
|
+
}) => {
|
|
1035
|
+
AlterRoleSetStmt: {};
|
|
1036
|
+
};
|
|
1037
|
+
export declare const RefreshMatViewStmt: ({ relation, concurrent, skipData }: {
|
|
1038
|
+
relation: any;
|
|
1039
|
+
concurrent: any;
|
|
1040
|
+
skipData: any;
|
|
1041
|
+
}) => {
|
|
1042
|
+
RefreshMatViewStmt: {};
|
|
1043
|
+
};
|
|
1044
|
+
export declare const CreateTransformStmt: ({ type_name, lang, fromsql, tosql }: {
|
|
1045
|
+
type_name: any;
|
|
1046
|
+
lang: any;
|
|
1047
|
+
fromsql: any;
|
|
1048
|
+
tosql: any;
|
|
1049
|
+
}) => {
|
|
1050
|
+
CreateTransformStmt: {};
|
|
1051
|
+
};
|
|
1052
|
+
export declare const ClosePortalStmt: ({ portalname }: {
|
|
1053
|
+
portalname: any;
|
|
1054
|
+
}) => {
|
|
1055
|
+
ClosePortalStmt: {};
|
|
1056
|
+
};
|
|
1057
|
+
export declare const CurrentOfExpr: ({ cursor_name }: {
|
|
1058
|
+
cursor_name: any;
|
|
1059
|
+
}) => {
|
|
1060
|
+
CurrentOfExpr: {};
|
|
1061
|
+
};
|
|
1062
|
+
export declare const DeallocateStmt: ({ name }: {
|
|
1063
|
+
name: any;
|
|
1064
|
+
}) => {
|
|
1065
|
+
DeallocateStmt: {};
|
|
1066
|
+
};
|
|
1067
|
+
export declare const ReplicaIdentityStmt: ({ identity_type, name }: {
|
|
1068
|
+
identity_type: any;
|
|
1069
|
+
name: any;
|
|
1070
|
+
}) => {
|
|
1071
|
+
ReplicaIdentityStmt: {};
|
|
1072
|
+
};
|
|
1073
|
+
export declare const RangeTableSample: ({ relation, method, args, repeatable }: {
|
|
1074
|
+
relation: any;
|
|
1075
|
+
method: any;
|
|
1076
|
+
args: any;
|
|
1077
|
+
repeatable: any;
|
|
1078
|
+
}) => {
|
|
1079
|
+
RangeTableSample: {};
|
|
1080
|
+
};
|
|
1081
|
+
export declare const SecLabelStmt: ({ objtype, object, label, provider }: {
|
|
1082
|
+
objtype: any;
|
|
1083
|
+
object: any;
|
|
1084
|
+
label: any;
|
|
1085
|
+
provider: any;
|
|
1086
|
+
}) => {
|
|
1087
|
+
SecLabelStmt: {};
|
|
1088
|
+
};
|
|
1089
|
+
export declare const CopyStmt: ({ query, filename }: {
|
|
1090
|
+
query: any;
|
|
1091
|
+
filename: any;
|
|
1092
|
+
}) => {
|
|
1093
|
+
CopyStmt: {};
|
|
1094
|
+
};
|
|
1095
|
+
export declare const AlterTSConfigurationStmt: ({ kind, cfgname, tokentype, dicts, override, replace }: {
|
|
1096
|
+
kind: any;
|
|
1097
|
+
cfgname: any;
|
|
1098
|
+
tokentype: any;
|
|
1099
|
+
dicts: any;
|
|
1100
|
+
override: any;
|
|
1101
|
+
replace: any;
|
|
1102
|
+
}) => {
|
|
1103
|
+
AlterTSConfigurationStmt: {};
|
|
1104
|
+
};
|
|
1105
|
+
export declare const XmlExpr: ({ op, args, name, xmloption, named_args }: {
|
|
1106
|
+
op: any;
|
|
1107
|
+
args: any;
|
|
1108
|
+
name: any;
|
|
1109
|
+
xmloption: any;
|
|
1110
|
+
named_args: any;
|
|
1111
|
+
}) => {
|
|
1112
|
+
XmlExpr: {};
|
|
1113
|
+
};
|
|
1114
|
+
export declare const XmlSerialize: ({ xmloption, expr, typeName }: {
|
|
1115
|
+
xmloption: any;
|
|
1116
|
+
expr: any;
|
|
1117
|
+
typeName: any;
|
|
1118
|
+
}) => {
|
|
1119
|
+
XmlSerialize: {};
|
|
1120
|
+
};
|