|
7 | 7 | * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California
|
9 | 9 | *
|
10 |
| - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.416 2010/06/03 03:19:59 rhaas Exp $ |
| 10 | + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.417 2010/06/03 21:02:11 petere Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -5594,8 +5594,8 @@ CheckRequiredParameterValues(void)
|
5594 | 5594 | if (InArchiveRecovery && ControlFile->wal_level == WAL_LEVEL_MINIMAL)
|
5595 | 5595 | {
|
5596 | 5596 | ereport(WARNING,
|
5597 |
| - (errmsg("WAL was generated with wal_level=\"minimal\", data may be missing"), |
5598 |
| - errhint("This happens if you temporarily set wal_level=\"minimal\" without taking a new base backup."))); |
| 5597 | + (errmsg("WAL was generated with wal_level=minimal, data may be missing"), |
| 5598 | + errhint("This happens if you temporarily set wal_level=minimal without taking a new base backup."))); |
5599 | 5599 | }
|
5600 | 5600 |
|
5601 | 5601 | /*
|
@@ -7731,9 +7731,9 @@ XLogReportParameters(void)
|
7731 | 7731 | /*
|
7732 | 7732 | * The change in number of backend slots doesn't need to be
|
7733 | 7733 | * WAL-logged if archiving is not enabled, as you can't start
|
7734 |
| - * archive recovery with wal_level='minimal' anyway. We don't |
| 7734 | + * archive recovery with wal_level=minimal anyway. We don't |
7735 | 7735 | * really care about the values in pg_control either if
|
7736 |
| - * wal_level='minimal', but seems better to keep them up-to-date |
| 7736 | + * wal_level=minimal, but seems better to keep them up-to-date |
7737 | 7737 | * to avoid confusion.
|
7738 | 7738 | */
|
7739 | 7739 | if (wal_level != ControlFile->wal_level || XLogIsNeeded())
|
|
0 commit comments