@gizmodata/gizmosql-client 1.2.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/LICENSE +201 -0
- package/NOTICE +25 -0
- package/README.md +204 -0
- package/dist/errors.d.ts +19 -0
- package/dist/errors.d.ts.map +1 -0
- package/dist/errors.js +42 -0
- package/dist/errors.js.map +1 -0
- package/dist/flight-client.d.ts +47 -0
- package/dist/flight-client.d.ts.map +1 -0
- package/dist/flight-client.js +352 -0
- package/dist/flight-client.js.map +1 -0
- package/dist/flightsql-client.d.ts +48 -0
- package/dist/flightsql-client.d.ts.map +1 -0
- package/dist/flightsql-client.js +324 -0
- package/dist/flightsql-client.js.map +1 -0
- package/dist/generated/.gitkeep +0 -0
- package/dist/generated/proto/FlightSql_grpc_pb.js +1 -0
- package/dist/generated/proto/FlightSql_pb.d.ts +1226 -0
- package/dist/generated/proto/FlightSql_pb.js +7508 -0
- package/dist/generated/proto/Flight_grpc_pb.d.ts +184 -0
- package/dist/generated/proto/Flight_grpc_pb.js +379 -0
- package/dist/generated/proto/Flight_pb.d.ts +792 -0
- package/dist/generated/proto/Flight_pb.js +5981 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +24 -0
- package/dist/index.js.map +1 -0
- package/dist/types.d.ts +54 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +3 -0
- package/dist/types.js.map +1 -0
- package/dist/utils.d.ts +8 -0
- package/dist/utils.d.ts.map +1 -0
- package/dist/utils.js +28 -0
- package/dist/utils.js.map +1 -0
- package/package.json +80 -0
|
@@ -0,0 +1,1226 @@
|
|
|
1
|
+
// package: arrow.flight.protocol.sql
|
|
2
|
+
// file: proto/FlightSql.proto
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
|
|
7
|
+
import * as jspb from "google-protobuf";
|
|
8
|
+
import * as google_protobuf_descriptor_pb from "google-protobuf/google/protobuf/descriptor_pb";
|
|
9
|
+
|
|
10
|
+
export class CommandGetSqlInfo extends jspb.Message {
|
|
11
|
+
clearInfoList(): void;
|
|
12
|
+
getInfoList(): Array<number>;
|
|
13
|
+
setInfoList(value: Array<number>): CommandGetSqlInfo;
|
|
14
|
+
addInfo(value: number, index?: number): number;
|
|
15
|
+
|
|
16
|
+
serializeBinary(): Uint8Array;
|
|
17
|
+
toObject(includeInstance?: boolean): CommandGetSqlInfo.AsObject;
|
|
18
|
+
static toObject(includeInstance: boolean, msg: CommandGetSqlInfo): CommandGetSqlInfo.AsObject;
|
|
19
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
20
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
21
|
+
static serializeBinaryToWriter(message: CommandGetSqlInfo, writer: jspb.BinaryWriter): void;
|
|
22
|
+
static deserializeBinary(bytes: Uint8Array): CommandGetSqlInfo;
|
|
23
|
+
static deserializeBinaryFromReader(message: CommandGetSqlInfo, reader: jspb.BinaryReader): CommandGetSqlInfo;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export namespace CommandGetSqlInfo {
|
|
27
|
+
export type AsObject = {
|
|
28
|
+
infoList: Array<number>,
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export class CommandGetXdbcTypeInfo extends jspb.Message {
|
|
33
|
+
|
|
34
|
+
hasDataType(): boolean;
|
|
35
|
+
clearDataType(): void;
|
|
36
|
+
getDataType(): number | undefined;
|
|
37
|
+
setDataType(value: number): CommandGetXdbcTypeInfo;
|
|
38
|
+
|
|
39
|
+
serializeBinary(): Uint8Array;
|
|
40
|
+
toObject(includeInstance?: boolean): CommandGetXdbcTypeInfo.AsObject;
|
|
41
|
+
static toObject(includeInstance: boolean, msg: CommandGetXdbcTypeInfo): CommandGetXdbcTypeInfo.AsObject;
|
|
42
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
43
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
44
|
+
static serializeBinaryToWriter(message: CommandGetXdbcTypeInfo, writer: jspb.BinaryWriter): void;
|
|
45
|
+
static deserializeBinary(bytes: Uint8Array): CommandGetXdbcTypeInfo;
|
|
46
|
+
static deserializeBinaryFromReader(message: CommandGetXdbcTypeInfo, reader: jspb.BinaryReader): CommandGetXdbcTypeInfo;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export namespace CommandGetXdbcTypeInfo {
|
|
50
|
+
export type AsObject = {
|
|
51
|
+
dataType?: number,
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export class CommandGetCatalogs extends jspb.Message {
|
|
56
|
+
|
|
57
|
+
serializeBinary(): Uint8Array;
|
|
58
|
+
toObject(includeInstance?: boolean): CommandGetCatalogs.AsObject;
|
|
59
|
+
static toObject(includeInstance: boolean, msg: CommandGetCatalogs): CommandGetCatalogs.AsObject;
|
|
60
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
61
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
62
|
+
static serializeBinaryToWriter(message: CommandGetCatalogs, writer: jspb.BinaryWriter): void;
|
|
63
|
+
static deserializeBinary(bytes: Uint8Array): CommandGetCatalogs;
|
|
64
|
+
static deserializeBinaryFromReader(message: CommandGetCatalogs, reader: jspb.BinaryReader): CommandGetCatalogs;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export namespace CommandGetCatalogs {
|
|
68
|
+
export type AsObject = {
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export class CommandGetDbSchemas extends jspb.Message {
|
|
73
|
+
|
|
74
|
+
hasCatalog(): boolean;
|
|
75
|
+
clearCatalog(): void;
|
|
76
|
+
getCatalog(): string | undefined;
|
|
77
|
+
setCatalog(value: string): CommandGetDbSchemas;
|
|
78
|
+
|
|
79
|
+
hasDbSchemaFilterPattern(): boolean;
|
|
80
|
+
clearDbSchemaFilterPattern(): void;
|
|
81
|
+
getDbSchemaFilterPattern(): string | undefined;
|
|
82
|
+
setDbSchemaFilterPattern(value: string): CommandGetDbSchemas;
|
|
83
|
+
|
|
84
|
+
serializeBinary(): Uint8Array;
|
|
85
|
+
toObject(includeInstance?: boolean): CommandGetDbSchemas.AsObject;
|
|
86
|
+
static toObject(includeInstance: boolean, msg: CommandGetDbSchemas): CommandGetDbSchemas.AsObject;
|
|
87
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
88
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
89
|
+
static serializeBinaryToWriter(message: CommandGetDbSchemas, writer: jspb.BinaryWriter): void;
|
|
90
|
+
static deserializeBinary(bytes: Uint8Array): CommandGetDbSchemas;
|
|
91
|
+
static deserializeBinaryFromReader(message: CommandGetDbSchemas, reader: jspb.BinaryReader): CommandGetDbSchemas;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export namespace CommandGetDbSchemas {
|
|
95
|
+
export type AsObject = {
|
|
96
|
+
catalog?: string,
|
|
97
|
+
dbSchemaFilterPattern?: string,
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export class CommandGetTables extends jspb.Message {
|
|
102
|
+
|
|
103
|
+
hasCatalog(): boolean;
|
|
104
|
+
clearCatalog(): void;
|
|
105
|
+
getCatalog(): string | undefined;
|
|
106
|
+
setCatalog(value: string): CommandGetTables;
|
|
107
|
+
|
|
108
|
+
hasDbSchemaFilterPattern(): boolean;
|
|
109
|
+
clearDbSchemaFilterPattern(): void;
|
|
110
|
+
getDbSchemaFilterPattern(): string | undefined;
|
|
111
|
+
setDbSchemaFilterPattern(value: string): CommandGetTables;
|
|
112
|
+
|
|
113
|
+
hasTableNameFilterPattern(): boolean;
|
|
114
|
+
clearTableNameFilterPattern(): void;
|
|
115
|
+
getTableNameFilterPattern(): string | undefined;
|
|
116
|
+
setTableNameFilterPattern(value: string): CommandGetTables;
|
|
117
|
+
clearTableTypesList(): void;
|
|
118
|
+
getTableTypesList(): Array<string>;
|
|
119
|
+
setTableTypesList(value: Array<string>): CommandGetTables;
|
|
120
|
+
addTableTypes(value: string, index?: number): string;
|
|
121
|
+
getIncludeSchema(): boolean;
|
|
122
|
+
setIncludeSchema(value: boolean): CommandGetTables;
|
|
123
|
+
|
|
124
|
+
serializeBinary(): Uint8Array;
|
|
125
|
+
toObject(includeInstance?: boolean): CommandGetTables.AsObject;
|
|
126
|
+
static toObject(includeInstance: boolean, msg: CommandGetTables): CommandGetTables.AsObject;
|
|
127
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
128
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
129
|
+
static serializeBinaryToWriter(message: CommandGetTables, writer: jspb.BinaryWriter): void;
|
|
130
|
+
static deserializeBinary(bytes: Uint8Array): CommandGetTables;
|
|
131
|
+
static deserializeBinaryFromReader(message: CommandGetTables, reader: jspb.BinaryReader): CommandGetTables;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export namespace CommandGetTables {
|
|
135
|
+
export type AsObject = {
|
|
136
|
+
catalog?: string,
|
|
137
|
+
dbSchemaFilterPattern?: string,
|
|
138
|
+
tableNameFilterPattern?: string,
|
|
139
|
+
tableTypesList: Array<string>,
|
|
140
|
+
includeSchema: boolean,
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export class CommandGetTableTypes extends jspb.Message {
|
|
145
|
+
|
|
146
|
+
serializeBinary(): Uint8Array;
|
|
147
|
+
toObject(includeInstance?: boolean): CommandGetTableTypes.AsObject;
|
|
148
|
+
static toObject(includeInstance: boolean, msg: CommandGetTableTypes): CommandGetTableTypes.AsObject;
|
|
149
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
150
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
151
|
+
static serializeBinaryToWriter(message: CommandGetTableTypes, writer: jspb.BinaryWriter): void;
|
|
152
|
+
static deserializeBinary(bytes: Uint8Array): CommandGetTableTypes;
|
|
153
|
+
static deserializeBinaryFromReader(message: CommandGetTableTypes, reader: jspb.BinaryReader): CommandGetTableTypes;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export namespace CommandGetTableTypes {
|
|
157
|
+
export type AsObject = {
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export class CommandGetPrimaryKeys extends jspb.Message {
|
|
162
|
+
|
|
163
|
+
hasCatalog(): boolean;
|
|
164
|
+
clearCatalog(): void;
|
|
165
|
+
getCatalog(): string | undefined;
|
|
166
|
+
setCatalog(value: string): CommandGetPrimaryKeys;
|
|
167
|
+
|
|
168
|
+
hasDbSchema(): boolean;
|
|
169
|
+
clearDbSchema(): void;
|
|
170
|
+
getDbSchema(): string | undefined;
|
|
171
|
+
setDbSchema(value: string): CommandGetPrimaryKeys;
|
|
172
|
+
getTable(): string;
|
|
173
|
+
setTable(value: string): CommandGetPrimaryKeys;
|
|
174
|
+
|
|
175
|
+
serializeBinary(): Uint8Array;
|
|
176
|
+
toObject(includeInstance?: boolean): CommandGetPrimaryKeys.AsObject;
|
|
177
|
+
static toObject(includeInstance: boolean, msg: CommandGetPrimaryKeys): CommandGetPrimaryKeys.AsObject;
|
|
178
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
179
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
180
|
+
static serializeBinaryToWriter(message: CommandGetPrimaryKeys, writer: jspb.BinaryWriter): void;
|
|
181
|
+
static deserializeBinary(bytes: Uint8Array): CommandGetPrimaryKeys;
|
|
182
|
+
static deserializeBinaryFromReader(message: CommandGetPrimaryKeys, reader: jspb.BinaryReader): CommandGetPrimaryKeys;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
export namespace CommandGetPrimaryKeys {
|
|
186
|
+
export type AsObject = {
|
|
187
|
+
catalog?: string,
|
|
188
|
+
dbSchema?: string,
|
|
189
|
+
table: string,
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
export class CommandGetExportedKeys extends jspb.Message {
|
|
194
|
+
|
|
195
|
+
hasCatalog(): boolean;
|
|
196
|
+
clearCatalog(): void;
|
|
197
|
+
getCatalog(): string | undefined;
|
|
198
|
+
setCatalog(value: string): CommandGetExportedKeys;
|
|
199
|
+
|
|
200
|
+
hasDbSchema(): boolean;
|
|
201
|
+
clearDbSchema(): void;
|
|
202
|
+
getDbSchema(): string | undefined;
|
|
203
|
+
setDbSchema(value: string): CommandGetExportedKeys;
|
|
204
|
+
getTable(): string;
|
|
205
|
+
setTable(value: string): CommandGetExportedKeys;
|
|
206
|
+
|
|
207
|
+
serializeBinary(): Uint8Array;
|
|
208
|
+
toObject(includeInstance?: boolean): CommandGetExportedKeys.AsObject;
|
|
209
|
+
static toObject(includeInstance: boolean, msg: CommandGetExportedKeys): CommandGetExportedKeys.AsObject;
|
|
210
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
211
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
212
|
+
static serializeBinaryToWriter(message: CommandGetExportedKeys, writer: jspb.BinaryWriter): void;
|
|
213
|
+
static deserializeBinary(bytes: Uint8Array): CommandGetExportedKeys;
|
|
214
|
+
static deserializeBinaryFromReader(message: CommandGetExportedKeys, reader: jspb.BinaryReader): CommandGetExportedKeys;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
export namespace CommandGetExportedKeys {
|
|
218
|
+
export type AsObject = {
|
|
219
|
+
catalog?: string,
|
|
220
|
+
dbSchema?: string,
|
|
221
|
+
table: string,
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
export class CommandGetImportedKeys extends jspb.Message {
|
|
226
|
+
|
|
227
|
+
hasCatalog(): boolean;
|
|
228
|
+
clearCatalog(): void;
|
|
229
|
+
getCatalog(): string | undefined;
|
|
230
|
+
setCatalog(value: string): CommandGetImportedKeys;
|
|
231
|
+
|
|
232
|
+
hasDbSchema(): boolean;
|
|
233
|
+
clearDbSchema(): void;
|
|
234
|
+
getDbSchema(): string | undefined;
|
|
235
|
+
setDbSchema(value: string): CommandGetImportedKeys;
|
|
236
|
+
getTable(): string;
|
|
237
|
+
setTable(value: string): CommandGetImportedKeys;
|
|
238
|
+
|
|
239
|
+
serializeBinary(): Uint8Array;
|
|
240
|
+
toObject(includeInstance?: boolean): CommandGetImportedKeys.AsObject;
|
|
241
|
+
static toObject(includeInstance: boolean, msg: CommandGetImportedKeys): CommandGetImportedKeys.AsObject;
|
|
242
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
243
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
244
|
+
static serializeBinaryToWriter(message: CommandGetImportedKeys, writer: jspb.BinaryWriter): void;
|
|
245
|
+
static deserializeBinary(bytes: Uint8Array): CommandGetImportedKeys;
|
|
246
|
+
static deserializeBinaryFromReader(message: CommandGetImportedKeys, reader: jspb.BinaryReader): CommandGetImportedKeys;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
export namespace CommandGetImportedKeys {
|
|
250
|
+
export type AsObject = {
|
|
251
|
+
catalog?: string,
|
|
252
|
+
dbSchema?: string,
|
|
253
|
+
table: string,
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export class CommandGetCrossReference extends jspb.Message {
|
|
258
|
+
|
|
259
|
+
hasPkCatalog(): boolean;
|
|
260
|
+
clearPkCatalog(): void;
|
|
261
|
+
getPkCatalog(): string | undefined;
|
|
262
|
+
setPkCatalog(value: string): CommandGetCrossReference;
|
|
263
|
+
|
|
264
|
+
hasPkDbSchema(): boolean;
|
|
265
|
+
clearPkDbSchema(): void;
|
|
266
|
+
getPkDbSchema(): string | undefined;
|
|
267
|
+
setPkDbSchema(value: string): CommandGetCrossReference;
|
|
268
|
+
getPkTable(): string;
|
|
269
|
+
setPkTable(value: string): CommandGetCrossReference;
|
|
270
|
+
|
|
271
|
+
hasFkCatalog(): boolean;
|
|
272
|
+
clearFkCatalog(): void;
|
|
273
|
+
getFkCatalog(): string | undefined;
|
|
274
|
+
setFkCatalog(value: string): CommandGetCrossReference;
|
|
275
|
+
|
|
276
|
+
hasFkDbSchema(): boolean;
|
|
277
|
+
clearFkDbSchema(): void;
|
|
278
|
+
getFkDbSchema(): string | undefined;
|
|
279
|
+
setFkDbSchema(value: string): CommandGetCrossReference;
|
|
280
|
+
getFkTable(): string;
|
|
281
|
+
setFkTable(value: string): CommandGetCrossReference;
|
|
282
|
+
|
|
283
|
+
serializeBinary(): Uint8Array;
|
|
284
|
+
toObject(includeInstance?: boolean): CommandGetCrossReference.AsObject;
|
|
285
|
+
static toObject(includeInstance: boolean, msg: CommandGetCrossReference): CommandGetCrossReference.AsObject;
|
|
286
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
287
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
288
|
+
static serializeBinaryToWriter(message: CommandGetCrossReference, writer: jspb.BinaryWriter): void;
|
|
289
|
+
static deserializeBinary(bytes: Uint8Array): CommandGetCrossReference;
|
|
290
|
+
static deserializeBinaryFromReader(message: CommandGetCrossReference, reader: jspb.BinaryReader): CommandGetCrossReference;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
export namespace CommandGetCrossReference {
|
|
294
|
+
export type AsObject = {
|
|
295
|
+
pkCatalog?: string,
|
|
296
|
+
pkDbSchema?: string,
|
|
297
|
+
pkTable: string,
|
|
298
|
+
fkCatalog?: string,
|
|
299
|
+
fkDbSchema?: string,
|
|
300
|
+
fkTable: string,
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
export class ActionCreatePreparedStatementRequest extends jspb.Message {
|
|
305
|
+
getQuery(): string;
|
|
306
|
+
setQuery(value: string): ActionCreatePreparedStatementRequest;
|
|
307
|
+
|
|
308
|
+
hasTransactionId(): boolean;
|
|
309
|
+
clearTransactionId(): void;
|
|
310
|
+
getTransactionId(): Uint8Array | string;
|
|
311
|
+
getTransactionId_asU8(): Uint8Array;
|
|
312
|
+
getTransactionId_asB64(): string;
|
|
313
|
+
setTransactionId(value: Uint8Array | string): ActionCreatePreparedStatementRequest;
|
|
314
|
+
|
|
315
|
+
serializeBinary(): Uint8Array;
|
|
316
|
+
toObject(includeInstance?: boolean): ActionCreatePreparedStatementRequest.AsObject;
|
|
317
|
+
static toObject(includeInstance: boolean, msg: ActionCreatePreparedStatementRequest): ActionCreatePreparedStatementRequest.AsObject;
|
|
318
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
319
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
320
|
+
static serializeBinaryToWriter(message: ActionCreatePreparedStatementRequest, writer: jspb.BinaryWriter): void;
|
|
321
|
+
static deserializeBinary(bytes: Uint8Array): ActionCreatePreparedStatementRequest;
|
|
322
|
+
static deserializeBinaryFromReader(message: ActionCreatePreparedStatementRequest, reader: jspb.BinaryReader): ActionCreatePreparedStatementRequest;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
export namespace ActionCreatePreparedStatementRequest {
|
|
326
|
+
export type AsObject = {
|
|
327
|
+
query: string,
|
|
328
|
+
transactionId: Uint8Array | string,
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
export class SubstraitPlan extends jspb.Message {
|
|
333
|
+
getPlan(): Uint8Array | string;
|
|
334
|
+
getPlan_asU8(): Uint8Array;
|
|
335
|
+
getPlan_asB64(): string;
|
|
336
|
+
setPlan(value: Uint8Array | string): SubstraitPlan;
|
|
337
|
+
getVersion(): string;
|
|
338
|
+
setVersion(value: string): SubstraitPlan;
|
|
339
|
+
|
|
340
|
+
serializeBinary(): Uint8Array;
|
|
341
|
+
toObject(includeInstance?: boolean): SubstraitPlan.AsObject;
|
|
342
|
+
static toObject(includeInstance: boolean, msg: SubstraitPlan): SubstraitPlan.AsObject;
|
|
343
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
344
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
345
|
+
static serializeBinaryToWriter(message: SubstraitPlan, writer: jspb.BinaryWriter): void;
|
|
346
|
+
static deserializeBinary(bytes: Uint8Array): SubstraitPlan;
|
|
347
|
+
static deserializeBinaryFromReader(message: SubstraitPlan, reader: jspb.BinaryReader): SubstraitPlan;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
export namespace SubstraitPlan {
|
|
351
|
+
export type AsObject = {
|
|
352
|
+
plan: Uint8Array | string,
|
|
353
|
+
version: string,
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
export class ActionCreatePreparedSubstraitPlanRequest extends jspb.Message {
|
|
358
|
+
|
|
359
|
+
hasPlan(): boolean;
|
|
360
|
+
clearPlan(): void;
|
|
361
|
+
getPlan(): SubstraitPlan | undefined;
|
|
362
|
+
setPlan(value?: SubstraitPlan): ActionCreatePreparedSubstraitPlanRequest;
|
|
363
|
+
|
|
364
|
+
hasTransactionId(): boolean;
|
|
365
|
+
clearTransactionId(): void;
|
|
366
|
+
getTransactionId(): Uint8Array | string;
|
|
367
|
+
getTransactionId_asU8(): Uint8Array;
|
|
368
|
+
getTransactionId_asB64(): string;
|
|
369
|
+
setTransactionId(value: Uint8Array | string): ActionCreatePreparedSubstraitPlanRequest;
|
|
370
|
+
|
|
371
|
+
serializeBinary(): Uint8Array;
|
|
372
|
+
toObject(includeInstance?: boolean): ActionCreatePreparedSubstraitPlanRequest.AsObject;
|
|
373
|
+
static toObject(includeInstance: boolean, msg: ActionCreatePreparedSubstraitPlanRequest): ActionCreatePreparedSubstraitPlanRequest.AsObject;
|
|
374
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
375
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
376
|
+
static serializeBinaryToWriter(message: ActionCreatePreparedSubstraitPlanRequest, writer: jspb.BinaryWriter): void;
|
|
377
|
+
static deserializeBinary(bytes: Uint8Array): ActionCreatePreparedSubstraitPlanRequest;
|
|
378
|
+
static deserializeBinaryFromReader(message: ActionCreatePreparedSubstraitPlanRequest, reader: jspb.BinaryReader): ActionCreatePreparedSubstraitPlanRequest;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
export namespace ActionCreatePreparedSubstraitPlanRequest {
|
|
382
|
+
export type AsObject = {
|
|
383
|
+
plan?: SubstraitPlan.AsObject,
|
|
384
|
+
transactionId: Uint8Array | string,
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
export class ActionCreatePreparedStatementResult extends jspb.Message {
|
|
389
|
+
getPreparedStatementHandle(): Uint8Array | string;
|
|
390
|
+
getPreparedStatementHandle_asU8(): Uint8Array;
|
|
391
|
+
getPreparedStatementHandle_asB64(): string;
|
|
392
|
+
setPreparedStatementHandle(value: Uint8Array | string): ActionCreatePreparedStatementResult;
|
|
393
|
+
getDatasetSchema(): Uint8Array | string;
|
|
394
|
+
getDatasetSchema_asU8(): Uint8Array;
|
|
395
|
+
getDatasetSchema_asB64(): string;
|
|
396
|
+
setDatasetSchema(value: Uint8Array | string): ActionCreatePreparedStatementResult;
|
|
397
|
+
getParameterSchema(): Uint8Array | string;
|
|
398
|
+
getParameterSchema_asU8(): Uint8Array;
|
|
399
|
+
getParameterSchema_asB64(): string;
|
|
400
|
+
setParameterSchema(value: Uint8Array | string): ActionCreatePreparedStatementResult;
|
|
401
|
+
|
|
402
|
+
serializeBinary(): Uint8Array;
|
|
403
|
+
toObject(includeInstance?: boolean): ActionCreatePreparedStatementResult.AsObject;
|
|
404
|
+
static toObject(includeInstance: boolean, msg: ActionCreatePreparedStatementResult): ActionCreatePreparedStatementResult.AsObject;
|
|
405
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
406
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
407
|
+
static serializeBinaryToWriter(message: ActionCreatePreparedStatementResult, writer: jspb.BinaryWriter): void;
|
|
408
|
+
static deserializeBinary(bytes: Uint8Array): ActionCreatePreparedStatementResult;
|
|
409
|
+
static deserializeBinaryFromReader(message: ActionCreatePreparedStatementResult, reader: jspb.BinaryReader): ActionCreatePreparedStatementResult;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
export namespace ActionCreatePreparedStatementResult {
|
|
413
|
+
export type AsObject = {
|
|
414
|
+
preparedStatementHandle: Uint8Array | string,
|
|
415
|
+
datasetSchema: Uint8Array | string,
|
|
416
|
+
parameterSchema: Uint8Array | string,
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
export class ActionClosePreparedStatementRequest extends jspb.Message {
|
|
421
|
+
getPreparedStatementHandle(): Uint8Array | string;
|
|
422
|
+
getPreparedStatementHandle_asU8(): Uint8Array;
|
|
423
|
+
getPreparedStatementHandle_asB64(): string;
|
|
424
|
+
setPreparedStatementHandle(value: Uint8Array | string): ActionClosePreparedStatementRequest;
|
|
425
|
+
|
|
426
|
+
serializeBinary(): Uint8Array;
|
|
427
|
+
toObject(includeInstance?: boolean): ActionClosePreparedStatementRequest.AsObject;
|
|
428
|
+
static toObject(includeInstance: boolean, msg: ActionClosePreparedStatementRequest): ActionClosePreparedStatementRequest.AsObject;
|
|
429
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
430
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
431
|
+
static serializeBinaryToWriter(message: ActionClosePreparedStatementRequest, writer: jspb.BinaryWriter): void;
|
|
432
|
+
static deserializeBinary(bytes: Uint8Array): ActionClosePreparedStatementRequest;
|
|
433
|
+
static deserializeBinaryFromReader(message: ActionClosePreparedStatementRequest, reader: jspb.BinaryReader): ActionClosePreparedStatementRequest;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
export namespace ActionClosePreparedStatementRequest {
|
|
437
|
+
export type AsObject = {
|
|
438
|
+
preparedStatementHandle: Uint8Array | string,
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
export class ActionBeginTransactionRequest extends jspb.Message {
|
|
443
|
+
|
|
444
|
+
serializeBinary(): Uint8Array;
|
|
445
|
+
toObject(includeInstance?: boolean): ActionBeginTransactionRequest.AsObject;
|
|
446
|
+
static toObject(includeInstance: boolean, msg: ActionBeginTransactionRequest): ActionBeginTransactionRequest.AsObject;
|
|
447
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
448
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
449
|
+
static serializeBinaryToWriter(message: ActionBeginTransactionRequest, writer: jspb.BinaryWriter): void;
|
|
450
|
+
static deserializeBinary(bytes: Uint8Array): ActionBeginTransactionRequest;
|
|
451
|
+
static deserializeBinaryFromReader(message: ActionBeginTransactionRequest, reader: jspb.BinaryReader): ActionBeginTransactionRequest;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
export namespace ActionBeginTransactionRequest {
|
|
455
|
+
export type AsObject = {
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
export class ActionBeginSavepointRequest extends jspb.Message {
|
|
460
|
+
getTransactionId(): Uint8Array | string;
|
|
461
|
+
getTransactionId_asU8(): Uint8Array;
|
|
462
|
+
getTransactionId_asB64(): string;
|
|
463
|
+
setTransactionId(value: Uint8Array | string): ActionBeginSavepointRequest;
|
|
464
|
+
getName(): string;
|
|
465
|
+
setName(value: string): ActionBeginSavepointRequest;
|
|
466
|
+
|
|
467
|
+
serializeBinary(): Uint8Array;
|
|
468
|
+
toObject(includeInstance?: boolean): ActionBeginSavepointRequest.AsObject;
|
|
469
|
+
static toObject(includeInstance: boolean, msg: ActionBeginSavepointRequest): ActionBeginSavepointRequest.AsObject;
|
|
470
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
471
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
472
|
+
static serializeBinaryToWriter(message: ActionBeginSavepointRequest, writer: jspb.BinaryWriter): void;
|
|
473
|
+
static deserializeBinary(bytes: Uint8Array): ActionBeginSavepointRequest;
|
|
474
|
+
static deserializeBinaryFromReader(message: ActionBeginSavepointRequest, reader: jspb.BinaryReader): ActionBeginSavepointRequest;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
export namespace ActionBeginSavepointRequest {
|
|
478
|
+
export type AsObject = {
|
|
479
|
+
transactionId: Uint8Array | string,
|
|
480
|
+
name: string,
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
export class ActionBeginTransactionResult extends jspb.Message {
|
|
485
|
+
getTransactionId(): Uint8Array | string;
|
|
486
|
+
getTransactionId_asU8(): Uint8Array;
|
|
487
|
+
getTransactionId_asB64(): string;
|
|
488
|
+
setTransactionId(value: Uint8Array | string): ActionBeginTransactionResult;
|
|
489
|
+
|
|
490
|
+
serializeBinary(): Uint8Array;
|
|
491
|
+
toObject(includeInstance?: boolean): ActionBeginTransactionResult.AsObject;
|
|
492
|
+
static toObject(includeInstance: boolean, msg: ActionBeginTransactionResult): ActionBeginTransactionResult.AsObject;
|
|
493
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
494
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
495
|
+
static serializeBinaryToWriter(message: ActionBeginTransactionResult, writer: jspb.BinaryWriter): void;
|
|
496
|
+
static deserializeBinary(bytes: Uint8Array): ActionBeginTransactionResult;
|
|
497
|
+
static deserializeBinaryFromReader(message: ActionBeginTransactionResult, reader: jspb.BinaryReader): ActionBeginTransactionResult;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
export namespace ActionBeginTransactionResult {
|
|
501
|
+
export type AsObject = {
|
|
502
|
+
transactionId: Uint8Array | string,
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
export class ActionBeginSavepointResult extends jspb.Message {
|
|
507
|
+
getSavepointId(): Uint8Array | string;
|
|
508
|
+
getSavepointId_asU8(): Uint8Array;
|
|
509
|
+
getSavepointId_asB64(): string;
|
|
510
|
+
setSavepointId(value: Uint8Array | string): ActionBeginSavepointResult;
|
|
511
|
+
|
|
512
|
+
serializeBinary(): Uint8Array;
|
|
513
|
+
toObject(includeInstance?: boolean): ActionBeginSavepointResult.AsObject;
|
|
514
|
+
static toObject(includeInstance: boolean, msg: ActionBeginSavepointResult): ActionBeginSavepointResult.AsObject;
|
|
515
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
516
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
517
|
+
static serializeBinaryToWriter(message: ActionBeginSavepointResult, writer: jspb.BinaryWriter): void;
|
|
518
|
+
static deserializeBinary(bytes: Uint8Array): ActionBeginSavepointResult;
|
|
519
|
+
static deserializeBinaryFromReader(message: ActionBeginSavepointResult, reader: jspb.BinaryReader): ActionBeginSavepointResult;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
export namespace ActionBeginSavepointResult {
|
|
523
|
+
export type AsObject = {
|
|
524
|
+
savepointId: Uint8Array | string,
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
export class ActionEndTransactionRequest extends jspb.Message {
|
|
529
|
+
getTransactionId(): Uint8Array | string;
|
|
530
|
+
getTransactionId_asU8(): Uint8Array;
|
|
531
|
+
getTransactionId_asB64(): string;
|
|
532
|
+
setTransactionId(value: Uint8Array | string): ActionEndTransactionRequest;
|
|
533
|
+
getAction(): ActionEndTransactionRequest.EndTransaction;
|
|
534
|
+
setAction(value: ActionEndTransactionRequest.EndTransaction): ActionEndTransactionRequest;
|
|
535
|
+
|
|
536
|
+
serializeBinary(): Uint8Array;
|
|
537
|
+
toObject(includeInstance?: boolean): ActionEndTransactionRequest.AsObject;
|
|
538
|
+
static toObject(includeInstance: boolean, msg: ActionEndTransactionRequest): ActionEndTransactionRequest.AsObject;
|
|
539
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
540
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
541
|
+
static serializeBinaryToWriter(message: ActionEndTransactionRequest, writer: jspb.BinaryWriter): void;
|
|
542
|
+
static deserializeBinary(bytes: Uint8Array): ActionEndTransactionRequest;
|
|
543
|
+
static deserializeBinaryFromReader(message: ActionEndTransactionRequest, reader: jspb.BinaryReader): ActionEndTransactionRequest;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
export namespace ActionEndTransactionRequest {
|
|
547
|
+
export type AsObject = {
|
|
548
|
+
transactionId: Uint8Array | string,
|
|
549
|
+
action: ActionEndTransactionRequest.EndTransaction,
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
export enum EndTransaction {
|
|
553
|
+
END_TRANSACTION_UNSPECIFIED = 0,
|
|
554
|
+
END_TRANSACTION_COMMIT = 1,
|
|
555
|
+
END_TRANSACTION_ROLLBACK = 2,
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
export class ActionEndSavepointRequest extends jspb.Message {
|
|
561
|
+
getSavepointId(): Uint8Array | string;
|
|
562
|
+
getSavepointId_asU8(): Uint8Array;
|
|
563
|
+
getSavepointId_asB64(): string;
|
|
564
|
+
setSavepointId(value: Uint8Array | string): ActionEndSavepointRequest;
|
|
565
|
+
getAction(): ActionEndSavepointRequest.EndSavepoint;
|
|
566
|
+
setAction(value: ActionEndSavepointRequest.EndSavepoint): ActionEndSavepointRequest;
|
|
567
|
+
|
|
568
|
+
serializeBinary(): Uint8Array;
|
|
569
|
+
toObject(includeInstance?: boolean): ActionEndSavepointRequest.AsObject;
|
|
570
|
+
static toObject(includeInstance: boolean, msg: ActionEndSavepointRequest): ActionEndSavepointRequest.AsObject;
|
|
571
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
572
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
573
|
+
static serializeBinaryToWriter(message: ActionEndSavepointRequest, writer: jspb.BinaryWriter): void;
|
|
574
|
+
static deserializeBinary(bytes: Uint8Array): ActionEndSavepointRequest;
|
|
575
|
+
static deserializeBinaryFromReader(message: ActionEndSavepointRequest, reader: jspb.BinaryReader): ActionEndSavepointRequest;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
export namespace ActionEndSavepointRequest {
|
|
579
|
+
export type AsObject = {
|
|
580
|
+
savepointId: Uint8Array | string,
|
|
581
|
+
action: ActionEndSavepointRequest.EndSavepoint,
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
export enum EndSavepoint {
|
|
585
|
+
END_SAVEPOINT_UNSPECIFIED = 0,
|
|
586
|
+
END_SAVEPOINT_RELEASE = 1,
|
|
587
|
+
END_SAVEPOINT_ROLLBACK = 2,
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
export class CommandStatementQuery extends jspb.Message {
|
|
593
|
+
getQuery(): string;
|
|
594
|
+
setQuery(value: string): CommandStatementQuery;
|
|
595
|
+
|
|
596
|
+
hasTransactionId(): boolean;
|
|
597
|
+
clearTransactionId(): void;
|
|
598
|
+
getTransactionId(): Uint8Array | string;
|
|
599
|
+
getTransactionId_asU8(): Uint8Array;
|
|
600
|
+
getTransactionId_asB64(): string;
|
|
601
|
+
setTransactionId(value: Uint8Array | string): CommandStatementQuery;
|
|
602
|
+
|
|
603
|
+
serializeBinary(): Uint8Array;
|
|
604
|
+
toObject(includeInstance?: boolean): CommandStatementQuery.AsObject;
|
|
605
|
+
static toObject(includeInstance: boolean, msg: CommandStatementQuery): CommandStatementQuery.AsObject;
|
|
606
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
607
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
608
|
+
static serializeBinaryToWriter(message: CommandStatementQuery, writer: jspb.BinaryWriter): void;
|
|
609
|
+
static deserializeBinary(bytes: Uint8Array): CommandStatementQuery;
|
|
610
|
+
static deserializeBinaryFromReader(message: CommandStatementQuery, reader: jspb.BinaryReader): CommandStatementQuery;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
export namespace CommandStatementQuery {
|
|
614
|
+
export type AsObject = {
|
|
615
|
+
query: string,
|
|
616
|
+
transactionId: Uint8Array | string,
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
export class CommandStatementSubstraitPlan extends jspb.Message {
|
|
621
|
+
|
|
622
|
+
hasPlan(): boolean;
|
|
623
|
+
clearPlan(): void;
|
|
624
|
+
getPlan(): SubstraitPlan | undefined;
|
|
625
|
+
setPlan(value?: SubstraitPlan): CommandStatementSubstraitPlan;
|
|
626
|
+
|
|
627
|
+
hasTransactionId(): boolean;
|
|
628
|
+
clearTransactionId(): void;
|
|
629
|
+
getTransactionId(): Uint8Array | string;
|
|
630
|
+
getTransactionId_asU8(): Uint8Array;
|
|
631
|
+
getTransactionId_asB64(): string;
|
|
632
|
+
setTransactionId(value: Uint8Array | string): CommandStatementSubstraitPlan;
|
|
633
|
+
|
|
634
|
+
serializeBinary(): Uint8Array;
|
|
635
|
+
toObject(includeInstance?: boolean): CommandStatementSubstraitPlan.AsObject;
|
|
636
|
+
static toObject(includeInstance: boolean, msg: CommandStatementSubstraitPlan): CommandStatementSubstraitPlan.AsObject;
|
|
637
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
638
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
639
|
+
static serializeBinaryToWriter(message: CommandStatementSubstraitPlan, writer: jspb.BinaryWriter): void;
|
|
640
|
+
static deserializeBinary(bytes: Uint8Array): CommandStatementSubstraitPlan;
|
|
641
|
+
static deserializeBinaryFromReader(message: CommandStatementSubstraitPlan, reader: jspb.BinaryReader): CommandStatementSubstraitPlan;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
export namespace CommandStatementSubstraitPlan {
|
|
645
|
+
export type AsObject = {
|
|
646
|
+
plan?: SubstraitPlan.AsObject,
|
|
647
|
+
transactionId: Uint8Array | string,
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
export class TicketStatementQuery extends jspb.Message {
|
|
652
|
+
getStatementHandle(): Uint8Array | string;
|
|
653
|
+
getStatementHandle_asU8(): Uint8Array;
|
|
654
|
+
getStatementHandle_asB64(): string;
|
|
655
|
+
setStatementHandle(value: Uint8Array | string): TicketStatementQuery;
|
|
656
|
+
|
|
657
|
+
serializeBinary(): Uint8Array;
|
|
658
|
+
toObject(includeInstance?: boolean): TicketStatementQuery.AsObject;
|
|
659
|
+
static toObject(includeInstance: boolean, msg: TicketStatementQuery): TicketStatementQuery.AsObject;
|
|
660
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
661
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
662
|
+
static serializeBinaryToWriter(message: TicketStatementQuery, writer: jspb.BinaryWriter): void;
|
|
663
|
+
static deserializeBinary(bytes: Uint8Array): TicketStatementQuery;
|
|
664
|
+
static deserializeBinaryFromReader(message: TicketStatementQuery, reader: jspb.BinaryReader): TicketStatementQuery;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
export namespace TicketStatementQuery {
|
|
668
|
+
export type AsObject = {
|
|
669
|
+
statementHandle: Uint8Array | string,
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
export class CommandPreparedStatementQuery extends jspb.Message {
|
|
674
|
+
getPreparedStatementHandle(): Uint8Array | string;
|
|
675
|
+
getPreparedStatementHandle_asU8(): Uint8Array;
|
|
676
|
+
getPreparedStatementHandle_asB64(): string;
|
|
677
|
+
setPreparedStatementHandle(value: Uint8Array | string): CommandPreparedStatementQuery;
|
|
678
|
+
|
|
679
|
+
serializeBinary(): Uint8Array;
|
|
680
|
+
toObject(includeInstance?: boolean): CommandPreparedStatementQuery.AsObject;
|
|
681
|
+
static toObject(includeInstance: boolean, msg: CommandPreparedStatementQuery): CommandPreparedStatementQuery.AsObject;
|
|
682
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
683
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
684
|
+
static serializeBinaryToWriter(message: CommandPreparedStatementQuery, writer: jspb.BinaryWriter): void;
|
|
685
|
+
static deserializeBinary(bytes: Uint8Array): CommandPreparedStatementQuery;
|
|
686
|
+
static deserializeBinaryFromReader(message: CommandPreparedStatementQuery, reader: jspb.BinaryReader): CommandPreparedStatementQuery;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
export namespace CommandPreparedStatementQuery {
|
|
690
|
+
export type AsObject = {
|
|
691
|
+
preparedStatementHandle: Uint8Array | string,
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
export class CommandStatementUpdate extends jspb.Message {
|
|
696
|
+
getQuery(): string;
|
|
697
|
+
setQuery(value: string): CommandStatementUpdate;
|
|
698
|
+
|
|
699
|
+
hasTransactionId(): boolean;
|
|
700
|
+
clearTransactionId(): void;
|
|
701
|
+
getTransactionId(): Uint8Array | string;
|
|
702
|
+
getTransactionId_asU8(): Uint8Array;
|
|
703
|
+
getTransactionId_asB64(): string;
|
|
704
|
+
setTransactionId(value: Uint8Array | string): CommandStatementUpdate;
|
|
705
|
+
|
|
706
|
+
serializeBinary(): Uint8Array;
|
|
707
|
+
toObject(includeInstance?: boolean): CommandStatementUpdate.AsObject;
|
|
708
|
+
static toObject(includeInstance: boolean, msg: CommandStatementUpdate): CommandStatementUpdate.AsObject;
|
|
709
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
710
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
711
|
+
static serializeBinaryToWriter(message: CommandStatementUpdate, writer: jspb.BinaryWriter): void;
|
|
712
|
+
static deserializeBinary(bytes: Uint8Array): CommandStatementUpdate;
|
|
713
|
+
static deserializeBinaryFromReader(message: CommandStatementUpdate, reader: jspb.BinaryReader): CommandStatementUpdate;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
export namespace CommandStatementUpdate {
|
|
717
|
+
export type AsObject = {
|
|
718
|
+
query: string,
|
|
719
|
+
transactionId: Uint8Array | string,
|
|
720
|
+
}
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
export class CommandPreparedStatementUpdate extends jspb.Message {
|
|
724
|
+
getPreparedStatementHandle(): Uint8Array | string;
|
|
725
|
+
getPreparedStatementHandle_asU8(): Uint8Array;
|
|
726
|
+
getPreparedStatementHandle_asB64(): string;
|
|
727
|
+
setPreparedStatementHandle(value: Uint8Array | string): CommandPreparedStatementUpdate;
|
|
728
|
+
|
|
729
|
+
serializeBinary(): Uint8Array;
|
|
730
|
+
toObject(includeInstance?: boolean): CommandPreparedStatementUpdate.AsObject;
|
|
731
|
+
static toObject(includeInstance: boolean, msg: CommandPreparedStatementUpdate): CommandPreparedStatementUpdate.AsObject;
|
|
732
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
733
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
734
|
+
static serializeBinaryToWriter(message: CommandPreparedStatementUpdate, writer: jspb.BinaryWriter): void;
|
|
735
|
+
static deserializeBinary(bytes: Uint8Array): CommandPreparedStatementUpdate;
|
|
736
|
+
static deserializeBinaryFromReader(message: CommandPreparedStatementUpdate, reader: jspb.BinaryReader): CommandPreparedStatementUpdate;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
export namespace CommandPreparedStatementUpdate {
|
|
740
|
+
export type AsObject = {
|
|
741
|
+
preparedStatementHandle: Uint8Array | string,
|
|
742
|
+
}
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
export class CommandStatementIngest extends jspb.Message {
|
|
746
|
+
|
|
747
|
+
hasTableDefinitionOptions(): boolean;
|
|
748
|
+
clearTableDefinitionOptions(): void;
|
|
749
|
+
getTableDefinitionOptions(): CommandStatementIngest.TableDefinitionOptions | undefined;
|
|
750
|
+
setTableDefinitionOptions(value?: CommandStatementIngest.TableDefinitionOptions): CommandStatementIngest;
|
|
751
|
+
getTable(): string;
|
|
752
|
+
setTable(value: string): CommandStatementIngest;
|
|
753
|
+
|
|
754
|
+
hasSchema(): boolean;
|
|
755
|
+
clearSchema(): void;
|
|
756
|
+
getSchema(): string | undefined;
|
|
757
|
+
setSchema(value: string): CommandStatementIngest;
|
|
758
|
+
|
|
759
|
+
hasCatalog(): boolean;
|
|
760
|
+
clearCatalog(): void;
|
|
761
|
+
getCatalog(): string | undefined;
|
|
762
|
+
setCatalog(value: string): CommandStatementIngest;
|
|
763
|
+
getTemporary(): boolean;
|
|
764
|
+
setTemporary(value: boolean): CommandStatementIngest;
|
|
765
|
+
|
|
766
|
+
hasTransactionId(): boolean;
|
|
767
|
+
clearTransactionId(): void;
|
|
768
|
+
getTransactionId(): Uint8Array | string;
|
|
769
|
+
getTransactionId_asU8(): Uint8Array;
|
|
770
|
+
getTransactionId_asB64(): string;
|
|
771
|
+
setTransactionId(value: Uint8Array | string): CommandStatementIngest;
|
|
772
|
+
|
|
773
|
+
getOptionsMap(): jspb.Map<string, string>;
|
|
774
|
+
clearOptionsMap(): void;
|
|
775
|
+
|
|
776
|
+
serializeBinary(): Uint8Array;
|
|
777
|
+
toObject(includeInstance?: boolean): CommandStatementIngest.AsObject;
|
|
778
|
+
static toObject(includeInstance: boolean, msg: CommandStatementIngest): CommandStatementIngest.AsObject;
|
|
779
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
780
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
781
|
+
static serializeBinaryToWriter(message: CommandStatementIngest, writer: jspb.BinaryWriter): void;
|
|
782
|
+
static deserializeBinary(bytes: Uint8Array): CommandStatementIngest;
|
|
783
|
+
static deserializeBinaryFromReader(message: CommandStatementIngest, reader: jspb.BinaryReader): CommandStatementIngest;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
export namespace CommandStatementIngest {
|
|
787
|
+
export type AsObject = {
|
|
788
|
+
tableDefinitionOptions?: CommandStatementIngest.TableDefinitionOptions.AsObject,
|
|
789
|
+
table: string,
|
|
790
|
+
schema?: string,
|
|
791
|
+
catalog?: string,
|
|
792
|
+
temporary: boolean,
|
|
793
|
+
transactionId: Uint8Array | string,
|
|
794
|
+
|
|
795
|
+
optionsMap: Array<[string, string]>,
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
export class TableDefinitionOptions extends jspb.Message {
|
|
800
|
+
getIfNotExist(): CommandStatementIngest.TableDefinitionOptions.TableNotExistOption;
|
|
801
|
+
setIfNotExist(value: CommandStatementIngest.TableDefinitionOptions.TableNotExistOption): TableDefinitionOptions;
|
|
802
|
+
getIfExists(): CommandStatementIngest.TableDefinitionOptions.TableExistsOption;
|
|
803
|
+
setIfExists(value: CommandStatementIngest.TableDefinitionOptions.TableExistsOption): TableDefinitionOptions;
|
|
804
|
+
|
|
805
|
+
serializeBinary(): Uint8Array;
|
|
806
|
+
toObject(includeInstance?: boolean): TableDefinitionOptions.AsObject;
|
|
807
|
+
static toObject(includeInstance: boolean, msg: TableDefinitionOptions): TableDefinitionOptions.AsObject;
|
|
808
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
809
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
810
|
+
static serializeBinaryToWriter(message: TableDefinitionOptions, writer: jspb.BinaryWriter): void;
|
|
811
|
+
static deserializeBinary(bytes: Uint8Array): TableDefinitionOptions;
|
|
812
|
+
static deserializeBinaryFromReader(message: TableDefinitionOptions, reader: jspb.BinaryReader): TableDefinitionOptions;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
export namespace TableDefinitionOptions {
|
|
816
|
+
export type AsObject = {
|
|
817
|
+
ifNotExist: CommandStatementIngest.TableDefinitionOptions.TableNotExistOption,
|
|
818
|
+
ifExists: CommandStatementIngest.TableDefinitionOptions.TableExistsOption,
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
export enum TableNotExistOption {
|
|
822
|
+
TABLE_NOT_EXIST_OPTION_UNSPECIFIED = 0,
|
|
823
|
+
TABLE_NOT_EXIST_OPTION_CREATE = 1,
|
|
824
|
+
TABLE_NOT_EXIST_OPTION_FAIL = 2,
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
export enum TableExistsOption {
|
|
828
|
+
TABLE_EXISTS_OPTION_UNSPECIFIED = 0,
|
|
829
|
+
TABLE_EXISTS_OPTION_FAIL = 1,
|
|
830
|
+
TABLE_EXISTS_OPTION_APPEND = 2,
|
|
831
|
+
TABLE_EXISTS_OPTION_REPLACE = 3,
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
export class DoPutUpdateResult extends jspb.Message {
|
|
839
|
+
getRecordCount(): number;
|
|
840
|
+
setRecordCount(value: number): DoPutUpdateResult;
|
|
841
|
+
|
|
842
|
+
serializeBinary(): Uint8Array;
|
|
843
|
+
toObject(includeInstance?: boolean): DoPutUpdateResult.AsObject;
|
|
844
|
+
static toObject(includeInstance: boolean, msg: DoPutUpdateResult): DoPutUpdateResult.AsObject;
|
|
845
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
846
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
847
|
+
static serializeBinaryToWriter(message: DoPutUpdateResult, writer: jspb.BinaryWriter): void;
|
|
848
|
+
static deserializeBinary(bytes: Uint8Array): DoPutUpdateResult;
|
|
849
|
+
static deserializeBinaryFromReader(message: DoPutUpdateResult, reader: jspb.BinaryReader): DoPutUpdateResult;
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
export namespace DoPutUpdateResult {
|
|
853
|
+
export type AsObject = {
|
|
854
|
+
recordCount: number,
|
|
855
|
+
}
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
export class DoPutPreparedStatementResult extends jspb.Message {
|
|
859
|
+
|
|
860
|
+
hasPreparedStatementHandle(): boolean;
|
|
861
|
+
clearPreparedStatementHandle(): void;
|
|
862
|
+
getPreparedStatementHandle(): Uint8Array | string;
|
|
863
|
+
getPreparedStatementHandle_asU8(): Uint8Array;
|
|
864
|
+
getPreparedStatementHandle_asB64(): string;
|
|
865
|
+
setPreparedStatementHandle(value: Uint8Array | string): DoPutPreparedStatementResult;
|
|
866
|
+
|
|
867
|
+
serializeBinary(): Uint8Array;
|
|
868
|
+
toObject(includeInstance?: boolean): DoPutPreparedStatementResult.AsObject;
|
|
869
|
+
static toObject(includeInstance: boolean, msg: DoPutPreparedStatementResult): DoPutPreparedStatementResult.AsObject;
|
|
870
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
871
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
872
|
+
static serializeBinaryToWriter(message: DoPutPreparedStatementResult, writer: jspb.BinaryWriter): void;
|
|
873
|
+
static deserializeBinary(bytes: Uint8Array): DoPutPreparedStatementResult;
|
|
874
|
+
static deserializeBinaryFromReader(message: DoPutPreparedStatementResult, reader: jspb.BinaryReader): DoPutPreparedStatementResult;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
export namespace DoPutPreparedStatementResult {
|
|
878
|
+
export type AsObject = {
|
|
879
|
+
preparedStatementHandle: Uint8Array | string,
|
|
880
|
+
}
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
export class ActionCancelQueryRequest extends jspb.Message {
|
|
884
|
+
getInfo(): Uint8Array | string;
|
|
885
|
+
getInfo_asU8(): Uint8Array;
|
|
886
|
+
getInfo_asB64(): string;
|
|
887
|
+
setInfo(value: Uint8Array | string): ActionCancelQueryRequest;
|
|
888
|
+
|
|
889
|
+
serializeBinary(): Uint8Array;
|
|
890
|
+
toObject(includeInstance?: boolean): ActionCancelQueryRequest.AsObject;
|
|
891
|
+
static toObject(includeInstance: boolean, msg: ActionCancelQueryRequest): ActionCancelQueryRequest.AsObject;
|
|
892
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
893
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
894
|
+
static serializeBinaryToWriter(message: ActionCancelQueryRequest, writer: jspb.BinaryWriter): void;
|
|
895
|
+
static deserializeBinary(bytes: Uint8Array): ActionCancelQueryRequest;
|
|
896
|
+
static deserializeBinaryFromReader(message: ActionCancelQueryRequest, reader: jspb.BinaryReader): ActionCancelQueryRequest;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
export namespace ActionCancelQueryRequest {
|
|
900
|
+
export type AsObject = {
|
|
901
|
+
info: Uint8Array | string,
|
|
902
|
+
}
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
export class ActionCancelQueryResult extends jspb.Message {
|
|
906
|
+
getResult(): ActionCancelQueryResult.CancelResult;
|
|
907
|
+
setResult(value: ActionCancelQueryResult.CancelResult): ActionCancelQueryResult;
|
|
908
|
+
|
|
909
|
+
serializeBinary(): Uint8Array;
|
|
910
|
+
toObject(includeInstance?: boolean): ActionCancelQueryResult.AsObject;
|
|
911
|
+
static toObject(includeInstance: boolean, msg: ActionCancelQueryResult): ActionCancelQueryResult.AsObject;
|
|
912
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
913
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
914
|
+
static serializeBinaryToWriter(message: ActionCancelQueryResult, writer: jspb.BinaryWriter): void;
|
|
915
|
+
static deserializeBinary(bytes: Uint8Array): ActionCancelQueryResult;
|
|
916
|
+
static deserializeBinaryFromReader(message: ActionCancelQueryResult, reader: jspb.BinaryReader): ActionCancelQueryResult;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
export namespace ActionCancelQueryResult {
|
|
920
|
+
export type AsObject = {
|
|
921
|
+
result: ActionCancelQueryResult.CancelResult,
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
export enum CancelResult {
|
|
925
|
+
CANCEL_RESULT_UNSPECIFIED = 0,
|
|
926
|
+
CANCEL_RESULT_CANCELLED = 1,
|
|
927
|
+
CANCEL_RESULT_CANCELLING = 2,
|
|
928
|
+
CANCEL_RESULT_NOT_CANCELLABLE = 3,
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
export const experimental: jspb.ExtensionFieldInfo<boolean>;
|
|
934
|
+
|
|
935
|
+
export enum SqlInfo {
|
|
936
|
+
FLIGHT_SQL_SERVER_NAME = 0,
|
|
937
|
+
FLIGHT_SQL_SERVER_VERSION = 1,
|
|
938
|
+
FLIGHT_SQL_SERVER_ARROW_VERSION = 2,
|
|
939
|
+
FLIGHT_SQL_SERVER_READ_ONLY = 3,
|
|
940
|
+
FLIGHT_SQL_SERVER_SQL = 4,
|
|
941
|
+
FLIGHT_SQL_SERVER_SUBSTRAIT = 5,
|
|
942
|
+
FLIGHT_SQL_SERVER_SUBSTRAIT_MIN_VERSION = 6,
|
|
943
|
+
FLIGHT_SQL_SERVER_SUBSTRAIT_MAX_VERSION = 7,
|
|
944
|
+
FLIGHT_SQL_SERVER_TRANSACTION = 8,
|
|
945
|
+
FLIGHT_SQL_SERVER_CANCEL = 9,
|
|
946
|
+
FLIGHT_SQL_SERVER_BULK_INGESTION = 10,
|
|
947
|
+
FLIGHT_SQL_SERVER_INGEST_TRANSACTIONS_SUPPORTED = 11,
|
|
948
|
+
FLIGHT_SQL_SERVER_STATEMENT_TIMEOUT = 100,
|
|
949
|
+
FLIGHT_SQL_SERVER_TRANSACTION_TIMEOUT = 101,
|
|
950
|
+
SQL_DDL_CATALOG = 500,
|
|
951
|
+
SQL_DDL_SCHEMA = 501,
|
|
952
|
+
SQL_DDL_TABLE = 502,
|
|
953
|
+
SQL_IDENTIFIER_CASE = 503,
|
|
954
|
+
SQL_IDENTIFIER_QUOTE_CHAR = 504,
|
|
955
|
+
SQL_QUOTED_IDENTIFIER_CASE = 505,
|
|
956
|
+
SQL_ALL_TABLES_ARE_SELECTABLE = 506,
|
|
957
|
+
SQL_NULL_ORDERING = 507,
|
|
958
|
+
SQL_KEYWORDS = 508,
|
|
959
|
+
SQL_NUMERIC_FUNCTIONS = 509,
|
|
960
|
+
SQL_STRING_FUNCTIONS = 510,
|
|
961
|
+
SQL_SYSTEM_FUNCTIONS = 511,
|
|
962
|
+
SQL_DATETIME_FUNCTIONS = 512,
|
|
963
|
+
SQL_SEARCH_STRING_ESCAPE = 513,
|
|
964
|
+
SQL_EXTRA_NAME_CHARACTERS = 514,
|
|
965
|
+
SQL_SUPPORTS_COLUMN_ALIASING = 515,
|
|
966
|
+
SQL_NULL_PLUS_NULL_IS_NULL = 516,
|
|
967
|
+
SQL_SUPPORTS_CONVERT = 517,
|
|
968
|
+
SQL_SUPPORTS_TABLE_CORRELATION_NAMES = 518,
|
|
969
|
+
SQL_SUPPORTS_DIFFERENT_TABLE_CORRELATION_NAMES = 519,
|
|
970
|
+
SQL_SUPPORTS_EXPRESSIONS_IN_ORDER_BY = 520,
|
|
971
|
+
SQL_SUPPORTS_ORDER_BY_UNRELATED = 521,
|
|
972
|
+
SQL_SUPPORTED_GROUP_BY = 522,
|
|
973
|
+
SQL_SUPPORTS_LIKE_ESCAPE_CLAUSE = 523,
|
|
974
|
+
SQL_SUPPORTS_NON_NULLABLE_COLUMNS = 524,
|
|
975
|
+
SQL_SUPPORTED_GRAMMAR = 525,
|
|
976
|
+
SQL_ANSI92_SUPPORTED_LEVEL = 526,
|
|
977
|
+
SQL_SUPPORTS_INTEGRITY_ENHANCEMENT_FACILITY = 527,
|
|
978
|
+
SQL_OUTER_JOINS_SUPPORT_LEVEL = 528,
|
|
979
|
+
SQL_SCHEMA_TERM = 529,
|
|
980
|
+
SQL_PROCEDURE_TERM = 530,
|
|
981
|
+
SQL_CATALOG_TERM = 531,
|
|
982
|
+
SQL_CATALOG_AT_START = 532,
|
|
983
|
+
SQL_SCHEMAS_SUPPORTED_ACTIONS = 533,
|
|
984
|
+
SQL_CATALOGS_SUPPORTED_ACTIONS = 534,
|
|
985
|
+
SQL_SUPPORTED_POSITIONED_COMMANDS = 535,
|
|
986
|
+
SQL_SELECT_FOR_UPDATE_SUPPORTED = 536,
|
|
987
|
+
SQL_STORED_PROCEDURES_SUPPORTED = 537,
|
|
988
|
+
SQL_SUPPORTED_SUBQUERIES = 538,
|
|
989
|
+
SQL_CORRELATED_SUBQUERIES_SUPPORTED = 539,
|
|
990
|
+
SQL_SUPPORTED_UNIONS = 540,
|
|
991
|
+
SQL_MAX_BINARY_LITERAL_LENGTH = 541,
|
|
992
|
+
SQL_MAX_CHAR_LITERAL_LENGTH = 542,
|
|
993
|
+
SQL_MAX_COLUMN_NAME_LENGTH = 543,
|
|
994
|
+
SQL_MAX_COLUMNS_IN_GROUP_BY = 544,
|
|
995
|
+
SQL_MAX_COLUMNS_IN_INDEX = 545,
|
|
996
|
+
SQL_MAX_COLUMNS_IN_ORDER_BY = 546,
|
|
997
|
+
SQL_MAX_COLUMNS_IN_SELECT = 547,
|
|
998
|
+
SQL_MAX_COLUMNS_IN_TABLE = 548,
|
|
999
|
+
SQL_MAX_CONNECTIONS = 549,
|
|
1000
|
+
SQL_MAX_CURSOR_NAME_LENGTH = 550,
|
|
1001
|
+
SQL_MAX_INDEX_LENGTH = 551,
|
|
1002
|
+
SQL_DB_SCHEMA_NAME_LENGTH = 552,
|
|
1003
|
+
SQL_MAX_PROCEDURE_NAME_LENGTH = 553,
|
|
1004
|
+
SQL_MAX_CATALOG_NAME_LENGTH = 554,
|
|
1005
|
+
SQL_MAX_ROW_SIZE = 555,
|
|
1006
|
+
SQL_MAX_ROW_SIZE_INCLUDES_BLOBS = 556,
|
|
1007
|
+
SQL_MAX_STATEMENT_LENGTH = 557,
|
|
1008
|
+
SQL_MAX_STATEMENTS = 558,
|
|
1009
|
+
SQL_MAX_TABLE_NAME_LENGTH = 559,
|
|
1010
|
+
SQL_MAX_TABLES_IN_SELECT = 560,
|
|
1011
|
+
SQL_MAX_USERNAME_LENGTH = 561,
|
|
1012
|
+
SQL_DEFAULT_TRANSACTION_ISOLATION = 562,
|
|
1013
|
+
SQL_TRANSACTIONS_SUPPORTED = 563,
|
|
1014
|
+
SQL_SUPPORTED_TRANSACTIONS_ISOLATION_LEVELS = 564,
|
|
1015
|
+
SQL_DATA_DEFINITION_CAUSES_TRANSACTION_COMMIT = 565,
|
|
1016
|
+
SQL_DATA_DEFINITIONS_IN_TRANSACTIONS_IGNORED = 566,
|
|
1017
|
+
SQL_SUPPORTED_RESULT_SET_TYPES = 567,
|
|
1018
|
+
SQL_SUPPORTED_CONCURRENCIES_FOR_RESULT_SET_UNSPECIFIED = 568,
|
|
1019
|
+
SQL_SUPPORTED_CONCURRENCIES_FOR_RESULT_SET_FORWARD_ONLY = 569,
|
|
1020
|
+
SQL_SUPPORTED_CONCURRENCIES_FOR_RESULT_SET_SCROLL_SENSITIVE = 570,
|
|
1021
|
+
SQL_SUPPORTED_CONCURRENCIES_FOR_RESULT_SET_SCROLL_INSENSITIVE = 571,
|
|
1022
|
+
SQL_BATCH_UPDATES_SUPPORTED = 572,
|
|
1023
|
+
SQL_SAVEPOINTS_SUPPORTED = 573,
|
|
1024
|
+
SQL_NAMED_PARAMETERS_SUPPORTED = 574,
|
|
1025
|
+
SQL_LOCATORS_UPDATE_COPY = 575,
|
|
1026
|
+
SQL_STORED_FUNCTIONS_USING_CALL_SYNTAX_SUPPORTED = 576,
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
export enum SqlSupportedTransaction {
|
|
1030
|
+
SQL_SUPPORTED_TRANSACTION_NONE = 0,
|
|
1031
|
+
SQL_SUPPORTED_TRANSACTION_TRANSACTION = 1,
|
|
1032
|
+
SQL_SUPPORTED_TRANSACTION_SAVEPOINT = 2,
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
export enum SqlSupportedCaseSensitivity {
|
|
1036
|
+
SQL_CASE_SENSITIVITY_UNKNOWN = 0,
|
|
1037
|
+
SQL_CASE_SENSITIVITY_CASE_INSENSITIVE = 1,
|
|
1038
|
+
SQL_CASE_SENSITIVITY_UPPERCASE = 2,
|
|
1039
|
+
SQL_CASE_SENSITIVITY_LOWERCASE = 3,
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
export enum SqlNullOrdering {
|
|
1043
|
+
SQL_NULLS_SORTED_HIGH = 0,
|
|
1044
|
+
SQL_NULLS_SORTED_LOW = 1,
|
|
1045
|
+
SQL_NULLS_SORTED_AT_START = 2,
|
|
1046
|
+
SQL_NULLS_SORTED_AT_END = 3,
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
export enum SupportedSqlGrammar {
|
|
1050
|
+
SQL_MINIMUM_GRAMMAR = 0,
|
|
1051
|
+
SQL_CORE_GRAMMAR = 1,
|
|
1052
|
+
SQL_EXTENDED_GRAMMAR = 2,
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
export enum SupportedAnsi92SqlGrammarLevel {
|
|
1056
|
+
ANSI92_ENTRY_SQL = 0,
|
|
1057
|
+
ANSI92_INTERMEDIATE_SQL = 1,
|
|
1058
|
+
ANSI92_FULL_SQL = 2,
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
export enum SqlOuterJoinsSupportLevel {
|
|
1062
|
+
SQL_JOINS_UNSUPPORTED = 0,
|
|
1063
|
+
SQL_LIMITED_OUTER_JOINS = 1,
|
|
1064
|
+
SQL_FULL_OUTER_JOINS = 2,
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
export enum SqlSupportedGroupBy {
|
|
1068
|
+
SQL_GROUP_BY_UNRELATED = 0,
|
|
1069
|
+
SQL_GROUP_BY_BEYOND_SELECT = 1,
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
export enum SqlSupportedElementActions {
|
|
1073
|
+
SQL_ELEMENT_IN_PROCEDURE_CALLS = 0,
|
|
1074
|
+
SQL_ELEMENT_IN_INDEX_DEFINITIONS = 1,
|
|
1075
|
+
SQL_ELEMENT_IN_PRIVILEGE_DEFINITIONS = 2,
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
export enum SqlSupportedPositionedCommands {
|
|
1079
|
+
SQL_POSITIONED_DELETE = 0,
|
|
1080
|
+
SQL_POSITIONED_UPDATE = 1,
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
export enum SqlSupportedSubqueries {
|
|
1084
|
+
SQL_SUBQUERIES_IN_COMPARISONS = 0,
|
|
1085
|
+
SQL_SUBQUERIES_IN_EXISTS = 1,
|
|
1086
|
+
SQL_SUBQUERIES_IN_INS = 2,
|
|
1087
|
+
SQL_SUBQUERIES_IN_QUANTIFIEDS = 3,
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
export enum SqlSupportedUnions {
|
|
1091
|
+
SQL_UNION = 0,
|
|
1092
|
+
SQL_UNION_ALL = 1,
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
export enum SqlTransactionIsolationLevel {
|
|
1096
|
+
SQL_TRANSACTION_NONE = 0,
|
|
1097
|
+
SQL_TRANSACTION_READ_UNCOMMITTED = 1,
|
|
1098
|
+
SQL_TRANSACTION_READ_COMMITTED = 2,
|
|
1099
|
+
SQL_TRANSACTION_REPEATABLE_READ = 3,
|
|
1100
|
+
SQL_TRANSACTION_SERIALIZABLE = 4,
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
export enum SqlSupportedTransactions {
|
|
1104
|
+
SQL_TRANSACTION_UNSPECIFIED = 0,
|
|
1105
|
+
SQL_DATA_DEFINITION_TRANSACTIONS = 1,
|
|
1106
|
+
SQL_DATA_MANIPULATION_TRANSACTIONS = 2,
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
export enum SqlSupportedResultSetType {
|
|
1110
|
+
SQL_RESULT_SET_TYPE_UNSPECIFIED = 0,
|
|
1111
|
+
SQL_RESULT_SET_TYPE_FORWARD_ONLY = 1,
|
|
1112
|
+
SQL_RESULT_SET_TYPE_SCROLL_INSENSITIVE = 2,
|
|
1113
|
+
SQL_RESULT_SET_TYPE_SCROLL_SENSITIVE = 3,
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
export enum SqlSupportedResultSetConcurrency {
|
|
1117
|
+
SQL_RESULT_SET_CONCURRENCY_UNSPECIFIED = 0,
|
|
1118
|
+
SQL_RESULT_SET_CONCURRENCY_READ_ONLY = 1,
|
|
1119
|
+
SQL_RESULT_SET_CONCURRENCY_UPDATABLE = 2,
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
export enum SqlSupportsConvert {
|
|
1123
|
+
SQL_CONVERT_BIGINT = 0,
|
|
1124
|
+
SQL_CONVERT_BINARY = 1,
|
|
1125
|
+
SQL_CONVERT_BIT = 2,
|
|
1126
|
+
SQL_CONVERT_CHAR = 3,
|
|
1127
|
+
SQL_CONVERT_DATE = 4,
|
|
1128
|
+
SQL_CONVERT_DECIMAL = 5,
|
|
1129
|
+
SQL_CONVERT_FLOAT = 6,
|
|
1130
|
+
SQL_CONVERT_INTEGER = 7,
|
|
1131
|
+
SQL_CONVERT_INTERVAL_DAY_TIME = 8,
|
|
1132
|
+
SQL_CONVERT_INTERVAL_YEAR_MONTH = 9,
|
|
1133
|
+
SQL_CONVERT_LONGVARBINARY = 10,
|
|
1134
|
+
SQL_CONVERT_LONGVARCHAR = 11,
|
|
1135
|
+
SQL_CONVERT_NUMERIC = 12,
|
|
1136
|
+
SQL_CONVERT_REAL = 13,
|
|
1137
|
+
SQL_CONVERT_SMALLINT = 14,
|
|
1138
|
+
SQL_CONVERT_TIME = 15,
|
|
1139
|
+
SQL_CONVERT_TIMESTAMP = 16,
|
|
1140
|
+
SQL_CONVERT_TINYINT = 17,
|
|
1141
|
+
SQL_CONVERT_VARBINARY = 18,
|
|
1142
|
+
SQL_CONVERT_VARCHAR = 19,
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
export enum XdbcDataType {
|
|
1146
|
+
XDBC_UNKNOWN_TYPE = 0,
|
|
1147
|
+
XDBC_CHAR = 1,
|
|
1148
|
+
XDBC_NUMERIC = 2,
|
|
1149
|
+
XDBC_DECIMAL = 3,
|
|
1150
|
+
XDBC_INTEGER = 4,
|
|
1151
|
+
XDBC_SMALLINT = 5,
|
|
1152
|
+
XDBC_FLOAT = 6,
|
|
1153
|
+
XDBC_REAL = 7,
|
|
1154
|
+
XDBC_DOUBLE = 8,
|
|
1155
|
+
XDBC_DATETIME = 9,
|
|
1156
|
+
XDBC_INTERVAL = 10,
|
|
1157
|
+
XDBC_VARCHAR = 12,
|
|
1158
|
+
XDBC_DATE = 91,
|
|
1159
|
+
XDBC_TIME = 92,
|
|
1160
|
+
XDBC_TIMESTAMP = 93,
|
|
1161
|
+
XDBC_LONGVARCHAR = -1,
|
|
1162
|
+
XDBC_BINARY = -2,
|
|
1163
|
+
XDBC_VARBINARY = -3,
|
|
1164
|
+
XDBC_LONGVARBINARY = -4,
|
|
1165
|
+
XDBC_BIGINT = -5,
|
|
1166
|
+
XDBC_TINYINT = -6,
|
|
1167
|
+
XDBC_BIT = -7,
|
|
1168
|
+
XDBC_WCHAR = -8,
|
|
1169
|
+
XDBC_WVARCHAR = -9,
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
export enum XdbcDatetimeSubcode {
|
|
1173
|
+
XDBC_SUBCODE_UNKNOWN = 0,
|
|
1174
|
+
XDBC_SUBCODE_YEAR = 1,
|
|
1175
|
+
XDBC_SUBCODE_DATE = 1,
|
|
1176
|
+
XDBC_SUBCODE_TIME = 2,
|
|
1177
|
+
XDBC_SUBCODE_MONTH = 2,
|
|
1178
|
+
XDBC_SUBCODE_TIMESTAMP = 3,
|
|
1179
|
+
XDBC_SUBCODE_DAY = 3,
|
|
1180
|
+
XDBC_SUBCODE_TIME_WITH_TIMEZONE = 4,
|
|
1181
|
+
XDBC_SUBCODE_HOUR = 4,
|
|
1182
|
+
XDBC_SUBCODE_TIMESTAMP_WITH_TIMEZONE = 5,
|
|
1183
|
+
XDBC_SUBCODE_MINUTE = 5,
|
|
1184
|
+
XDBC_SUBCODE_SECOND = 6,
|
|
1185
|
+
XDBC_SUBCODE_YEAR_TO_MONTH = 7,
|
|
1186
|
+
XDBC_SUBCODE_DAY_TO_HOUR = 8,
|
|
1187
|
+
XDBC_SUBCODE_DAY_TO_MINUTE = 9,
|
|
1188
|
+
XDBC_SUBCODE_DAY_TO_SECOND = 10,
|
|
1189
|
+
XDBC_SUBCODE_HOUR_TO_MINUTE = 11,
|
|
1190
|
+
XDBC_SUBCODE_HOUR_TO_SECOND = 12,
|
|
1191
|
+
XDBC_SUBCODE_MINUTE_TO_SECOND = 13,
|
|
1192
|
+
XDBC_SUBCODE_INTERVAL_YEAR = 101,
|
|
1193
|
+
XDBC_SUBCODE_INTERVAL_MONTH = 102,
|
|
1194
|
+
XDBC_SUBCODE_INTERVAL_DAY = 103,
|
|
1195
|
+
XDBC_SUBCODE_INTERVAL_HOUR = 104,
|
|
1196
|
+
XDBC_SUBCODE_INTERVAL_MINUTE = 105,
|
|
1197
|
+
XDBC_SUBCODE_INTERVAL_SECOND = 106,
|
|
1198
|
+
XDBC_SUBCODE_INTERVAL_YEAR_TO_MONTH = 107,
|
|
1199
|
+
XDBC_SUBCODE_INTERVAL_DAY_TO_HOUR = 108,
|
|
1200
|
+
XDBC_SUBCODE_INTERVAL_DAY_TO_MINUTE = 109,
|
|
1201
|
+
XDBC_SUBCODE_INTERVAL_DAY_TO_SECOND = 110,
|
|
1202
|
+
XDBC_SUBCODE_INTERVAL_HOUR_TO_MINUTE = 111,
|
|
1203
|
+
XDBC_SUBCODE_INTERVAL_HOUR_TO_SECOND = 112,
|
|
1204
|
+
XDBC_SUBCODE_INTERVAL_MINUTE_TO_SECOND = 113,
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
export enum Nullable {
|
|
1208
|
+
NULLABILITY_NO_NULLS = 0,
|
|
1209
|
+
NULLABILITY_NULLABLE = 1,
|
|
1210
|
+
NULLABILITY_UNKNOWN = 2,
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
export enum Searchable {
|
|
1214
|
+
SEARCHABLE_NONE = 0,
|
|
1215
|
+
SEARCHABLE_CHAR = 1,
|
|
1216
|
+
SEARCHABLE_BASIC = 2,
|
|
1217
|
+
SEARCHABLE_FULL = 3,
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
export enum UpdateDeleteRules {
|
|
1221
|
+
CASCADE = 0,
|
|
1222
|
+
RESTRICT = 1,
|
|
1223
|
+
SET_NULL = 2,
|
|
1224
|
+
NO_ACTION = 3,
|
|
1225
|
+
SET_DEFAULT = 4,
|
|
1226
|
+
}
|