Commit 9dcce712 authored by Robert Haas's avatar Robert Haas

Fix incorrect message in ATWrongRelkindError.

Mistake introduced by commit 3bf3ab8c.

Etsuro Fujita
parent dbe6f434
...@@ -4358,7 +4358,7 @@ ATWrongRelkindError(Relation rel, int allowed_targets) ...@@ -4358,7 +4358,7 @@ ATWrongRelkindError(Relation rel, int allowed_targets)
msg = _("\"%s\" is not a table, composite type, or foreign table"); msg = _("\"%s\" is not a table, composite type, or foreign table");
break; break;
case ATT_TABLE | ATT_MATVIEW | ATT_INDEX | ATT_FOREIGN_TABLE: case ATT_TABLE | ATT_MATVIEW | ATT_INDEX | ATT_FOREIGN_TABLE:
msg = _("\"%s\" is not a table, materialized view, composite type, or foreign table"); msg = _("\"%s\" is not a table, materialized view, index, or foreign table");
break; break;
case ATT_VIEW: case ATT_VIEW:
msg = _("\"%s\" is not a view"); msg = _("\"%s\" is not a view");
......
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