Skip to content

Commit 39d31c6

Browse files
authored
Merge pull request #12 from felix-zg/patch-1
Improve pg_dump performance X2
2 parents e84f11f + e13565c commit 39d31c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/pgdump.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function spawnPgDump(config) {
1414
const env = Object.assign({}, config, {
1515
LD_LIBRARY_PATH: config.PGDUMP_PATH
1616
})
17-
return spawn(pgDumpPath, ['-Fc'], {
17+
return spawn(pgDumpPath, ['-Fc', '-Z 1'], {
1818
env
1919
})
2020
}

0 commit comments

Comments
 (0)