mirror of
https://github.com/postgres/postgres.git
synced 2025-05-03 22:24:49 +03:00
Fix incorrect message in ATWrongRelkindError.
Mistake introduced by commit 3bf3ab8c563699138be02f9dc305b7b77a724307. Etsuro Fujita
This commit is contained in:
parent
fa171654f2
commit
589017eb5d
@ -4148,7 +4148,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");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user