diff options
author | Robert Haas <rhaas@postgresql.org> | 2015-10-22 17:00:53 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2015-10-22 17:04:18 -0400 |
commit | 17b07afae341c05f2dae1b6c588df6b267e699f2 (patch) | |
tree | 2a23f869af8bd0f077e7d8d586efb08e0a53ebe0 /src | |
parent | ac9a01615c5d45eb08e5b78c3d0155214e0ab498 (diff) | |
download | postgresql-17b07afae341c05f2dae1b6c588df6b267e699f2.tar.gz postgresql-17b07afae341c05f2dae1b6c588df6b267e699f2.zip |
Add two missing cases to ATWrongRelkindError.
This way, we produce a better error message if someone tries to do
something like ALTER INDEX .. ALTER COLUMN .. SET STORAGE.
Amit Langote
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/commands/tablecmds.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 3ed9c380fc2..f359a9098e7 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -4339,6 +4339,9 @@ ATWrongRelkindError(Relation rel, int allowed_targets) case ATT_TABLE | ATT_VIEW: msg = _("\"%s\" is not a table or view"); break; + case ATT_TABLE | ATT_VIEW | ATT_FOREIGN_TABLE: + msg = _("\"%s\" is not a table, view or foreign table"); + break; case ATT_TABLE | ATT_VIEW | ATT_MATVIEW | ATT_INDEX: msg = _("\"%s\" is not a table, view, materialized view, or index"); break; @@ -4348,6 +4351,9 @@ ATWrongRelkindError(Relation rel, int allowed_targets) case ATT_TABLE | ATT_MATVIEW | ATT_INDEX: msg = _("\"%s\" is not a table, materialized view, or index"); break; + case ATT_TABLE | ATT_MATVIEW | ATT_FOREIGN_TABLE: + msg = _("\"%s\" is not a table, materialized view, or foreign table"); + break; case ATT_TABLE | ATT_FOREIGN_TABLE: msg = _("\"%s\" is not a table or foreign table"); break; |