From: Robert Haas Date: Wed, 28 Oct 2015 10:44:47 +0000 (+0100) Subject: Fix incorrect message in ATWrongRelkindError. X-Git-Tag: REL9_5_BETA2~23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e53e2a196887a60481bd0bb1b316062027c5f24d;p=postgresql Fix incorrect message in ATWrongRelkindError. Mistake introduced by commit 3bf3ab8c563699138be02f9dc305b7b77a724307. Etsuro Fujita --- diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index f359a9098e..f4a4599506 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -4361,7 +4361,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");