mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -04:00
Fix incorrect message in ATWrongRelkindError.
Mistake introduced by commit 3bf3ab8c56.
Etsuro Fujita
This commit is contained in:
parent
7cecabca8f
commit
71b1a0ab5f
1 changed files with 1 additions and 1 deletions
|
|
@ -4034,7 +4034,7 @@ ATWrongRelkindError(Relation rel, int allowed_targets)
|
|||
msg = _("\"%s\" is not a table, composite type, or foreign table");
|
||||
break;
|
||||
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;
|
||||
case ATT_VIEW:
|
||||
msg = _("\"%s\" is not a view");
|
||||
|
|
|
|||
Loading…
Reference in a new issue