import type { DB } from "../../initProstgles"; import type { TableConfig } from "../TableConfig"; /** * Keep Postgres indexes in sync with table configuration * Save index definition hash in comment to detect changes * If no comment exists, create index in a transaction to compare definitions and then update comment * This ensures we don't drop and recreate indexes unnecessarily (which might also bring foreign key constraints issues) */ export declare const getIndexesQueries: (db: DB, tableName: string, tableConf: TableConfig[string]) => Promise; //# sourceMappingURL=getIndexesQueries.d.ts.map