/* Seek back to beginning of block */
if (lseek(f, -BLCKSZ, SEEK_CUR) < 0)
{
- pg_log_error("seek failed for block %d in file \"%s\": %m", blockno, fn);
+ pg_log_error("seek failed for block %u in file \"%s\": %m", blockno, fn);
exit(1);
}
/* Write block with checksum */
if (write(f, buf.data, BLCKSZ) != BLCKSZ)
{
- pg_log_error("could not update checksum of block %d in file \"%s\": %m",
+ pg_log_error("could not update checksum of block %u in file \"%s\": %m",
blockno, fn);
exit(1);
}
printf(_(" --source-pgdata=DIRECTORY source data directory to synchronize with\n"));
printf(_(" --source-server=CONNSTR source server to synchronize with\n"));
printf(_(" -n, --dry-run stop before modifying anything\n"));
- printf(_(" -N, --no-sync do not wait for changes to be written\n"));
- printf(_(" safely to disk\n"));
+ printf(_(" -N, --no-sync do not wait for changes to be written\n"
+ " safely to disk\n"));
printf(_(" -P, --progress write progress messages\n"));
printf(_(" --debug write a lot of debug messages\n"));
printf(_(" -V, --version output version information, then exit\n"));
bool found = false;
char output_path[MAXPGPATH];
- prep_status("Checking for tables WITH OIDs");
+ prep_status("Checking for tables WITH OIDS");
snprintf(output_path, sizeof(output_path),
"tables_with_oids.txt");
if (vacopts->disable_page_skipping && PQserverVersion(conn) < 90600)
{
PQfinish(conn);
- pg_log_error("cannot use the \"%s\" option on server versions older than PostgreSQL 9.6",
- "disable-page-skipping");
+ pg_log_error("cannot use the \"%s\" option on server versions older than PostgreSQL %s",
+ "disable-page-skipping", "9.6");
exit(1);
}
if (vacopts->skip_locked && PQserverVersion(conn) < 120000)
{
PQfinish(conn);
- pg_log_error("cannot use the \"%s\" option on server versions older than PostgreSQL 12",
- "skip-locked");
+ pg_log_error("cannot use the \"%s\" option on server versions older than PostgreSQL %s",
+ "skip-locked", "12");
exit(1);
}
if (vacopts->min_xid_age != 0 && PQserverVersion(conn) < 90600)
{
- pg_log_error("cannot use the \"%s\" option on server versions older than PostgreSQL 9.6",
- "--min-xid-age");
+ pg_log_error("cannot use the \"%s\" option on server versions older than PostgreSQL %s",
+ "--min-xid-age", "9.6");
exit(1);
}
if (vacopts->min_mxid_age != 0 && PQserverVersion(conn) < 90600)
{
- pg_log_error("cannot use the \"%s\" option on server versions older than PostgreSQL 9.6",
- "--min-mxid-age");
+ pg_log_error("cannot use the \"%s\" option on server versions older than PostgreSQL %s",
+ "--min-mxid-age", "9.6");
exit(1);
}