mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-28 22:16:01 +00:00
preloadedRows insert only implementation
This commit is contained in:
2
packages/types/alter-processor.d.ts
vendored
2
packages/types/alter-processor.d.ts
vendored
@@ -15,5 +15,5 @@ export interface AlterProcessor {
|
||||
recreateTable(oldTable: TableInfo, newTable: TableInfo);
|
||||
createSqlObject(obj: SqlObjectInfo);
|
||||
dropSqlObject(obj: SqlObjectInfo);
|
||||
fillPreloadedRows(table: NamedObjectInfo, oldRows: any[], newRows: any[], key: string[]);
|
||||
fillPreloadedRows(table: NamedObjectInfo, oldRows: any[], newRows: any[], key: string[], insertOnly: string[]);
|
||||
}
|
||||
|
||||
1
packages/types/dbinfo.d.ts
vendored
1
packages/types/dbinfo.d.ts
vendored
@@ -80,6 +80,7 @@ export interface TableInfo extends DatabaseObjectInfo {
|
||||
checks?: CheckInfo[];
|
||||
preloadedRows?: any[];
|
||||
preloadedRowsKey?: string[];
|
||||
preloadedRowsInsertOnly?: string[];
|
||||
__isDynamicStructure?: boolean;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user