We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentcba0fe0 commite435c1eCopy full SHA for e435c1e
src/bin/initdb/initdb.c
@@ -1051,7 +1051,7 @@ test_config_settings(void)
1051
else
1052
printf("%dkB\n",n_buffers* (BLCKSZ /1024));
1053
1054
-printf(_("selecting defaulttimezone ... "));
+printf(_("selecting defaulttime zone ... "));
1055
fflush(stdout);
1056
default_timezone=select_default_timezone(share_path);
1057
printf("%s\n",default_timezone ?default_timezone :"GMT");
src/bin/pg_basebackup/pg_recvlogical.c
@@ -1020,12 +1020,11 @@ prepareToTerminate(PGconn *conn, XLogRecPtr endpos, bool keepalive, XLogRecPtr l
1020
if (verbose)
1021
{
1022
if (keepalive)
1023
-pg_log_info("endpos %X/%X reached by keepalive",
+pg_log_info("end position %X/%X reached by keepalive",
1024
(uint32) (endpos >>32), (uint32)endpos);
1025
1026
-pg_log_info("endpos%X/%X reached by record at %X/%X",
+pg_log_info("end position%X/%X reached by WAL record at %X/%X",
1027
(uint32) (endpos >>32), (uint32) (endpos),
1028
(uint32) (lsn >>32), (uint32)lsn);
1029
-
1030
}
1031
src/bin/pg_checksums/pg_checksums.c
@@ -235,7 +235,7 @@ scan_file(const char *fn, BlockNumber segmentno)
235
/* Write block with checksum */
236
if (write(f,buf.data,BLCKSZ)!=BLCKSZ)
237
238
-pg_log_error("could notupdate checksum of block %u in file \"%s\": %m",
+pg_log_error("could notwrite block %u in file \"%s\": %m",
239
blockno,fn);
240
exit(1);
241
@@ -469,7 +469,7 @@ main(int argc, char *argv[])
469
/* filenode checking only works in --check mode */
470
if (mode!=PG_MODE_CHECK&&only_filenode)
471
472
-pg_log_error("--filenodeoption onlypossible with --check");
+pg_log_error("option -f/--filenodecan onlybe used with --check");
473
fprintf(stderr,_("Try \"%s --help\" for more information.\n"),
474
progname);
475
src/bin/pg_dump/pg_backup_db.c
@@ -176,7 +176,7 @@ _connectDB(ArchiveHandle *AH, const char *reqdb, const char *requser)
176
newConn=PQconnectdbParams(keywords,values, true);
177
178
if (!newConn)
179
-fatal("failed to reconnect to database");
+fatal("could not reconnect to database");
180
181
if (PQstatus(newConn)==CONNECTION_BAD)
182
@@ -287,7 +287,7 @@ ConnectDatabase(Archive *AHX,
287
AH->connection=PQconnectdbParams(keywords,values, true);
288
289
if (!AH->connection)
290
-fatal("failed to connect to database");
+fatal("could not connect to database");
291
292
if (PQstatus(AH->connection)==CONNECTION_BAD&&
293
PQconnectionNeedsPassword(AH->connection)&&
src/bin/pg_dump/pg_dumpall.c
@@ -482,7 +482,7 @@ main(int argc, char *argv[])
482
OPF=fopen(filename,PG_BINARY_W);
483
if (!OPF)
484
485
-pg_log_error("could not opentheoutput file \"%s\": %m",
+pg_log_error("could not open output file \"%s\": %m",
486
filename);
487
exit_nicely(1);
488
@@ -1492,11 +1492,11 @@ dumpDatabases(PGconn *conn)
1492
/* Skip any explicitly excluded database */
1493
if (simple_string_list_member(&database_exclude_names,dbname))
1494
1495
-pg_log_info("excluding database \"%s\"...",dbname);
+pg_log_info("excluding database \"%s\"",dbname);
1496
continue;
1497
1498
1499
-pg_log_info("dumping database \"%s\"...",dbname);
+pg_log_info("dumping database \"%s\"",dbname);
1500
1501
fprintf(OPF,"--\n-- Database \"%s\" dump\n--\n\n",dbname);
1502
src/bin/pg_upgrade/option.c
@@ -304,7 +304,7 @@ usage(void)
304
printf(_(" -p, --old-port=PORT old cluster port number (default %d)\n"),old_cluster.port);
305
printf(_(" -P, --new-port=PORT new cluster port number (default %d)\n"),new_cluster.port);
306
printf(_(" -r, --retain retain SQL and log files after success\n"));
307
-printf(_(" -s, --socketdir=DIR socket directory to use (defaultCWD)\n"));
+printf(_(" -s, --socketdir=DIR socket directory to use (defaultcurrent dir.)\n"));
308
printf(_(" -U, --username=NAME cluster superuser (default \"%s\")\n"),os_info.user);
309
printf(_(" -v, --verbose enable verbose internal logging\n"));
310
printf(_(" -V, --version display version information, then exit\n"));