1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-02-08 14:28:36 +02:00

Fix pg_switch_xlog for archive mode

An additional parenthesis was present in the code.
This commit is contained in:
Michael Paquier 2013-12-25 03:53:18 +09:00
parent 3f79be1789
commit e5ab0917cc

View File

@ -1068,7 +1068,7 @@ static void
pg_switch_xlog(pgBackup *backup)
{
wait_for_archive(backup,
"SELECT * FROM pg_switch_xlog())");
"SELECT * FROM pg_switch_xlog()");
}
/*