aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2015-10-28 12:19:14 +0100
committerRobert Haas <rhaas@postgresql.org>2015-10-28 12:24:51 +0100
commitd17d5125f68da155e3a8e555c0699b7679b06e3b (patch)
tree9c2a162fc2c39fe336a7e5c0c5e646a7f2490175 /src/backend/commands/tablecmds.c
parente53e2a196887a60481bd0bb1b316062027c5f24d (diff)
downloadpostgresql-d17d5125f68da155e3a8e555c0699b7679b06e3b.tar.gz
postgresql-d17d5125f68da155e3a8e555c0699b7679b06e3b.zip
Add missing serial comma, for consistency.
Amit Langote, per Etsuro Fujita
Diffstat (limited to 'src/backend/commands/tablecmds.c')
-rw-r--r--src/backend/commands/tablecmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c
index f4a45995062..d7943505fe8 100644
--- a/src/backend/commands/tablecmds.c
+++ b/src/backend/commands/tablecmds.c
@@ -4340,7 +4340,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");