@fivetrandevelopers/zetasql
Version:
ZetaSQL gRPC server and client
22 lines (21 loc) • 1.18 kB
TypeScript
export declare const _zetasql_ASTInsertStatementEnums_InsertMode: {
readonly DEFAULT_MODE: 0;
readonly REPLACE: 1;
readonly UPDATE: 2;
readonly IGNORE: 3;
};
export type _zetasql_ASTInsertStatementEnums_InsertMode = 'DEFAULT_MODE' | 0 | 'REPLACE' | 1 | 'UPDATE' | 2 | 'IGNORE' | 3;
export type _zetasql_ASTInsertStatementEnums_InsertMode__Output = typeof _zetasql_ASTInsertStatementEnums_InsertMode[keyof typeof _zetasql_ASTInsertStatementEnums_InsertMode];
export declare const _zetasql_ASTInsertStatementEnums_ParseProgress: {
readonly kInitial: 1;
readonly kSeenOrIgnoreReplaceUpdate: 2;
readonly kSeenTargetPath: 3;
readonly kSeenColumnList: 4;
readonly kSeenValuesList: 5;
};
export type _zetasql_ASTInsertStatementEnums_ParseProgress = 'kInitial' | 1 | 'kSeenOrIgnoreReplaceUpdate' | 2 | 'kSeenTargetPath' | 3 | 'kSeenColumnList' | 4 | 'kSeenValuesList' | 5;
export type _zetasql_ASTInsertStatementEnums_ParseProgress__Output = typeof _zetasql_ASTInsertStatementEnums_ParseProgress[keyof typeof _zetasql_ASTInsertStatementEnums_ParseProgress];
export interface ASTInsertStatementEnums {
}
export interface ASTInsertStatementEnums__Output {
}