Skip to content

Commit d17d512

Browse files
committed
Add missing serial comma, for consistency.
Amit Langote, per Etsuro Fujita
1 parent e53e2a1 commit d17d512

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/commands/tablecmds.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4340,7 +4340,7 @@ ATWrongRelkindError(Relation rel, int allowed_targets)
43404340
msg = _("\"%s\" is not a table or view");
43414341
break;
43424342
case ATT_TABLE | ATT_VIEW | ATT_FOREIGN_TABLE:
4343-
msg = _("\"%s\" is not a table, view or foreign table");
4343+
msg = _("\"%s\" is not a table, view, or foreign table");
43444344
break;
43454345
case ATT_TABLE | ATT_VIEW | ATT_MATVIEW | ATT_INDEX:
43464346
msg = _("\"%s\" is not a table, view, materialized view, or index");

0 commit comments

Comments
 (0)