projects
/
postgresql
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9dcce71
)
Add missing serial comma, for consistency.
author
Robert Haas
<rhaas@postgresql.org>
Wed, 28 Oct 2015 11:19:14 +0000
(12:19 +0100)
committer
Robert Haas
<rhaas@postgresql.org>
Wed, 28 Oct 2015 11:19:14 +0000
(12:19 +0100)
Amit Langote, per Etsuro Fujita
src/backend/commands/tablecmds.c
patch
|
blob
|
history
diff --git
a/src/backend/commands/tablecmds.c
b/src/backend/commands/tablecmds.c
index 6436d0cc04b00a31525c946718b3faca4f258457..76793ef02a46a25ae344136ff5aab03cfcf2aec4 100644
(file)
--- a/
src/backend/commands/tablecmds.c
+++ b/
src/backend/commands/tablecmds.c
@@
-4337,7
+4337,7
@@
ATWrongRelkindError(Relation rel, int allowed_targets)
msg = _("\"%s\" is not a table or view");
break;
case ATT_TABLE | ATT_VIEW | ATT_FOREIGN_TABLE:
- msg = _("\"%s\" is not a table, view or foreign table");
+ msg = _("\"%s\" is not a table, view
,
or foreign table");
break;
case ATT_TABLE | ATT_VIEW | ATT_MATVIEW | ATT_INDEX:
msg = _("\"%s\" is not a table, view, materialized view, or index");