diff options
author | Robert Haas <rhaas@postgresql.org> | 2015-10-28 12:19:14 +0100 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2015-10-28 12:19:14 +0100 |
commit | d45565162494c75eae91481eda17dc0c8ecab5db (patch) | |
tree | 41baee8f65fd62c53790345b9495d404191ed01c /src | |
parent | 9dcce7123e1b0012fcf7f8b8761b34aebb66986d (diff) | |
download | postgresql-d45565162494c75eae91481eda17dc0c8ecab5db.tar.gz postgresql-d45565162494c75eae91481eda17dc0c8ecab5db.zip |
Add missing serial comma, for consistency.
Amit Langote, per Etsuro Fujita
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/commands/tablecmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 6436d0cc04b..76793ef02a4 100644 --- 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"); |