@clickup/pg-microsharding
Version:
Microshards support for PostgreSQL
12 lines • 423 B
TypeScript
import type { TableInfo } from "./getTablesInSchema";
/**
* Copies DDL and creates publication/subscription which starts copying the
* data. The data continues copying in background.
*/
export declare function startCopyingTables({ fromDsn, tables, toDsn, schema, }: {
fromDsn: string;
tables: TableInfo[];
toDsn: string;
schema: string;
}): Promise<void>;
//# sourceMappingURL=startCopyingTables.d.ts.map