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