serial run delete from "${table}" cascade
This commit is contained in:
parent
083e3fb75d
commit
d7834d0843
|
@ -220,7 +220,9 @@ export async function resetDb() {
|
||||||
WHERE nspname NOT IN ('pg_catalog', 'information_schema')
|
WHERE nspname NOT IN ('pg_catalog', 'information_schema')
|
||||||
AND C.relkind = 'r'
|
AND C.relkind = 'r'
|
||||||
AND nspname !~ '^pg_toast';`);
|
AND nspname !~ '^pg_toast';`);
|
||||||
await Promise.all(tables.map(t => t.table).map(x => conn.query(`DELETE FROM "${x}" CASCADE`)));
|
for (const table of tables) {
|
||||||
|
await conn.query(`DELETE FROM "${table.table}" CASCADE`);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
for (let i = 1; i <= 3; i++) {
|
for (let i = 1; i <= 3; i++) {
|
||||||
|
|
Loading…
Reference in New Issue