From d45565162494c75eae91481eda17dc0c8ecab5db Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Wed, 28 Oct 2015 12:19:14 +0100 Subject: [PATCH] Add missing serial comma, for consistency. Amit Langote, per Etsuro Fujita --- src/backend/commands/tablecmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 6436d0cc04..76793ef02a 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");