Commit d4556516 authored by Robert Haas's avatar Robert Haas

Add missing serial comma, for consistency.

Amit Langote, per Etsuro Fujita
parent 9dcce712
...@@ -4337,7 +4337,7 @@ ATWrongRelkindError(Relation rel, int allowed_targets) ...@@ -4337,7 +4337,7 @@ ATWrongRelkindError(Relation rel, int allowed_targets)
msg = _("\"%s\" is not a table or view"); msg = _("\"%s\" is not a table or view");
break; break;
case ATT_TABLE | ATT_VIEW | ATT_FOREIGN_TABLE: 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; break;
case ATT_TABLE | ATT_VIEW | ATT_MATVIEW | ATT_INDEX: case ATT_TABLE | ATT_VIEW | ATT_MATVIEW | ATT_INDEX:
msg = _("\"%s\" is not a table, view, materialized view, or index"); msg = _("\"%s\" is not a table, view, materialized view, or index");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment