diff options
| author | Bruce Momjian | 2014-10-18 14:36:09 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2014-10-18 14:36:09 +0000 |
| commit | b87671f1b63a0c9cf264afc209e3acebdb52477f (patch) | |
| tree | e7a2c7de96437c6bee58c20e0d4cdec01555661d /src/backend/commands | |
| parent | 417f92484da8c9a124e7eece8dbfb71f688a0104 (diff) | |
Shorten warning about hash creation
Also document that PITR is also affected.
Diffstat (limited to 'src/backend/commands')
| -rw-r--r-- | src/backend/commands/indexcmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index 8a1cb4b8182..3c1e90eb0e9 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -491,7 +491,7 @@ DefineIndex(Oid relationId, if (strcmp(accessMethodName, "hash") == 0) ereport(WARNING, - (errmsg("hash indexes are not WAL-logged and thus are not crash-safe and cannot be used on standby servers"))); + (errmsg("hash indexes are not WAL-logged and their use is discouraged"))); if (stmt->unique && !accessMethodForm->amcanunique) ereport(ERROR, |
