Throw an error when using -C and -1 at the same time in pg_restore.
It's not possible to do CREATE DATABASE inside a transaction, so previously we just got a server error instead. Backpatch to 8.2, which is where the -1 feature appeared.
This commit is contained in:
parent
74216bc8c8
commit
4d4b0f3521
@ -15,7 +15,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.152 2008/01/14 19:27:41 tgl Exp $
|
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.152.2.1 2009/01/13 11:45:03 mha Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -146,6 +146,12 @@ RestoreArchive(Archive *AHX, RestoreOptions *ropt)
|
|||||||
*/
|
*/
|
||||||
if (ropt->create && ropt->dropSchema)
|
if (ropt->create && ropt->dropSchema)
|
||||||
die_horribly(AH, modulename, "-C and -c are incompatible options\n");
|
die_horribly(AH, modulename, "-C and -c are incompatible options\n");
|
||||||
|
/*
|
||||||
|
* -1 is not compatible with -C, because we can't create a database
|
||||||
|
* inside a transaction block.
|
||||||
|
*/
|
||||||
|
if (ropt->create && ropt->single_txn)
|
||||||
|
die_horribly(AH, modulename, "-C and -1 are incompatible options\n");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If we're using a DB connection, then connect it.
|
* If we're using a DB connection, then connect it.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user