Simplify missing tablespace replay error hint message, but only in HEAD
authorBruce Momjian <bruce@momjian.us>
Sun, 18 Jul 2010 04:47:46 +0000 (04:47 +0000)
committerBruce Momjian <bruce@momjian.us>
Sun, 18 Jul 2010 04:47:46 +0000 (04:47 +0000)
so we don't need to re-translate for 9.0.

src/backend/commands/tablespace.c

index 93f6fa039426c248a25f02cf74ee6778510d15cc..2e0ae340fb1b9a63b760cbb67172afdf17ff5845 100644 (file)
@@ -40,7 +40,7 @@
  *
  *
  * IDENTIFICATION
- *   $PostgreSQL: pgsql/src/backend/commands/tablespace.c,v 1.76 2010/07/06 19:18:56 momjian Exp $
+ *   $PostgreSQL: pgsql/src/backend/commands/tablespace.c,v 1.77 2010/07/18 04:47:46 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -553,8 +553,8 @@ create_tablespace_directories(const char *location, const Oid tablespaceoid)
            ereport(ERROR,
                    (errcode(ERRCODE_UNDEFINED_FILE),
                     errmsg("directory \"%s\" does not exist", location),
-                    InRecovery ? errhint("Create directory \"%s\" for this tablespace before "
-                                  "restarting the server.", location) : 0));
+                    InRecovery ? errhint("Create this directory for the tablespace before "
+                                  "restarting the server."): 0));
        else
            ereport(ERROR,
                    (errcode_for_file_access(),