1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Remove pg_restore's --single-transaction option, as it throws errors in

certain cases.
This commit is contained in:
Bruce Momjian
2012-12-01 09:57:55 -05:00
parent 02aea36414
commit 209772350b

View File

@ -309,11 +309,12 @@ create_new_objects(void)
/* /*
* Using pg_restore --single-transaction is faster than other * Using pg_restore --single-transaction is faster than other
* methods, like --jobs. pg_dump only produces its output at the * methods, like --jobs. However, --single-transaction throws
* an error. pg_dump only produces its output at the
* end, so there is little parallelism using the pipe. * end, so there is little parallelism using the pipe.
*/ */
exec_prog(RESTORE_LOG_FILE, NULL, true, exec_prog(RESTORE_LOG_FILE, NULL, true,
"\"%s/pg_restore\" %s --exit-on-error --single-transaction --verbose --dbname \"%s\" \"%s\"", "\"%s/pg_restore\" %s --exit-on-error --verbose --dbname \"%s\" \"%s\"",
new_cluster.bindir, cluster_conn_opts(&new_cluster), new_cluster.bindir, cluster_conn_opts(&new_cluster),
old_db->db_name, file_name); old_db->db_name, file_name);
} }