pg_resetwal: Use frontend logging API

This now causes error messages related to the lack of the -f option to
appear on standard error rather than standard output.

Reviewed-by: Aleksander Alekseev <aleksander@timescale.com>
Discussion: https://www.postgresql.org/message-id/flat/0f3ab4a1-ae80-56e8-3426-6b4a02507687@eisentraut.org
This commit is contained in:
Peter Eisentraut 2023-09-28 11:58:36 +02:00
parent b5da1b3a93
commit a11d8e10f2
1 changed files with 17 additions and 15 deletions

View File

@ -458,20 +458,22 @@ main(int argc, char *argv[])
if (minXlogSegNo > newXlogSegNo)
newXlogSegNo = minXlogSegNo;
/*
* If we had to guess anything, and -f was not given, just print the
* guessed values and exit. Also print if -n is given.
*/
if ((guessed && !force) || noupdate)
if (noupdate)
{
PrintNewControlValues();
if (!noupdate)
{
printf(_("\nIf these values seem acceptable, use -f to force reset.\n"));
exit(1);
}
else
exit(0);
exit(0);
}
/*
* If we had to guess anything, and -f was not given, just print the
* guessed values and exit.
*/
if (guessed && !force)
{
PrintNewControlValues();
pg_log_error("not proceeding because control file values were guessed");
pg_log_error_hint("If these values seem acceptable, use -f to force reset.");
exit(1);
}
/*
@ -479,9 +481,9 @@ main(int argc, char *argv[])
*/
if (ControlFile.state != DB_SHUTDOWNED && !force)
{
printf(_("The database server was not shut down cleanly.\n"
"Resetting the write-ahead log might cause data to be lost.\n"
"If you want to proceed anyway, use -f to force reset.\n"));
pg_log_error("database server was not shut down cleanly");
pg_log_error_detail("Resetting the write-ahead log might cause data to be lost.");
pg_log_error_hint("If you want to proceed anyway, use -f to force reset.");
exit(1);
}