diff options
author | Noah Misch <noah@leadboat.com> | 2013-07-05 15:25:51 -0400 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2013-07-05 15:37:51 -0400 |
commit | 02d2b694ee42a9e241d37ce67df122fff43d5bb9 (patch) | |
tree | eaf287ab19600a27a1c1304d108241326d6e3e3d /src/backend/parser/parse_utilcmd.c | |
parent | 269e780822abb2e44189afaccd6b0ee7aefa7ddd (diff) | |
download | postgresql-02d2b694ee42a9e241d37ce67df122fff43d5bb9.tar.gz postgresql-02d2b694ee42a9e241d37ce67df122fff43d5bb9.zip |
Update messages, comments and documentation for materialized views.
All instances of the verbiage lagging the code. Back-patch to 9.3,
where materialized views were introduced.
Diffstat (limited to 'src/backend/parser/parse_utilcmd.c')
-rw-r--r-- | src/backend/parser/parse_utilcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/parser/parse_utilcmd.c b/src/backend/parser/parse_utilcmd.c index 40e3717b75d..ac662549e90 100644 --- a/src/backend/parser/parse_utilcmd.c +++ b/src/backend/parser/parse_utilcmd.c @@ -683,7 +683,7 @@ transformTableLikeClause(CreateStmtContext *cxt, TableLikeClause *table_like_cla relation->rd_rel->relkind != RELKIND_FOREIGN_TABLE) ereport(ERROR, (errcode(ERRCODE_WRONG_OBJECT_TYPE), - errmsg("\"%s\" is not a table, view, composite type, or foreign table", + errmsg("\"%s\" is not a table, view, materialized view, composite type, or foreign table", RelationGetRelationName(relation)))); cancel_parser_errposition_callback(&pcbstate); |