1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Make pg_dump exclude unlogged table data on hot standby slaves

Noted by Joe Van Dyk
This commit is contained in:
Magnus Hagander
2013-01-25 09:44:14 +01:00
parent ab2d907a25
commit 65fc0ab559
2 changed files with 20 additions and 1 deletions

View File

@ -603,6 +603,24 @@ main(int argc, char **argv)
if (fout->remoteVersion < 90100)
no_security_labels = 1;
/*
* When running against 9.0 or later, check if we are in recovery mode,
* which means we are on a hot standby.
*/
if (fout->remoteVersion >= 90000)
{
PGresult *res = ExecuteSqlQueryForSingleRow(fout, "SELECT pg_catalog.pg_is_in_recovery()");
if (strcmp(PQgetvalue(res, 0, 0), "t") == 0)
{
/*
* On hot standby slaves, never try to dump unlogged table data,
* since it will just throw an error.
*/
no_unlogged_table_data = true;
}
PQclear(res);
}
/*
* Start transaction-snapshot mode transaction to dump consistent data.
*/