diff options
author | Bruce Momjian | 2010-07-18 04:47:46 +0000 |
---|---|---|
committer | Bruce Momjian | 2010-07-18 04:47:46 +0000 |
commit | ed92bec07983931f856214a70982cc0382c464a1 (patch) | |
tree | 678fa9a806c89534c087d2ed1cb3d04ee0b66b0f /src/backend/commands/tablespace.c | |
parent | 3ec694e17bc01cec4ae2000847f25e3d549888c0 (diff) |
Simplify missing tablespace replay error hint message, but only in HEAD
so we don't need to re-translate for 9.0.
Diffstat (limited to 'src/backend/commands/tablespace.c')
-rw-r--r-- | src/backend/commands/tablespace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/tablespace.c b/src/backend/commands/tablespace.c index 93f6fa03942..2e0ae340fb1 100644 --- a/src/backend/commands/tablespace.c +++ b/src/backend/commands/tablespace.c @@ -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(), |