diff options
author | Bruce Momjian <bruce@momjian.us> | 2014-09-11 13:40:06 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2014-09-11 13:40:06 -0400 |
commit | 849462a9fafbb30856e47f7862543b1aefa95796 (patch) | |
tree | f6b10bea585de6fcf094d0474b1658e8ed36f70f /src/backend/commands/indexcmds.c | |
parent | 68e66923ff629c324e219090860dc9e0e0a6f5d6 (diff) | |
download | postgresql-849462a9fafbb30856e47f7862543b1aefa95796.tar.gz postgresql-849462a9fafbb30856e47f7862543b1aefa95796.zip |
improve hash creation warning message
This improves the wording of commit 84aa8ba128a08e6fdebb2497c7a79ebf18093e12.
Report by Kevin Grittner
Diffstat (limited to 'src/backend/commands/indexcmds.c')
-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 1afe02bd85a..8a1cb4b8182 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 so they are not crash-safe and cannot be used on streaming standbys"))); + (errmsg("hash indexes are not WAL-logged and thus are not crash-safe and cannot be used on standby servers"))); if (stmt->unique && !accessMethodForm->amcanunique) ereport(ERROR, |