1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-03 22:24:49 +03:00

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 e53e2a1968
commit d17d5125f6

View File

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