Add missing serial comma, for consistency.

Amit Langote, per Etsuro Fujita
This commit is contained in:
Robert Haas 2015-10-28 12:19:14 +01:00
parent 9dcce7123e
commit d455651624
1 changed files with 1 additions and 1 deletions

View File

@ -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");