@clickup/pg-microsharding
Version:
Microshards support for PostgreSQL
11 lines • 461 B
TypeScript
import type { TableInfo } from "./getTablesInSchema";
/**
* Validates that the list of primary keys extracted from the dump earlier match
* the actual list of tables read from pg_catalog. This is mainly for sanity
* checking the dump parsing logic.
*/
export declare function validatePrimaryKeysFromDump({ primaryKeys, allTables, }: {
primaryKeys: string[];
allTables: TableInfo[];
}): void;
//# sourceMappingURL=validatePrimaryKeysFromDump.d.ts.map