Commit f157f01e authored by unknown's avatar unknown

wording changed (postreview fix)


mysql-test/r/view.result:
  wording changed
sql/sql_base.cc:
  wording changed
parent f766837f
...@@ -1049,7 +1049,7 @@ drop view v1; ...@@ -1049,7 +1049,7 @@ drop view v1;
create table t1 (col1 int,col2 char(22)); create table t1 (col1 int,col2 char(22));
create view v1 as select * from t1; create view v1 as select * from t1;
create index i1 on v1 (col1); create index i1 on v1 (col1);
ERROR HY000: 'test.v1' is not BASIC TABLE ERROR HY000: 'test.v1' is not BASE TABLE
drop view v1; drop view v1;
drop table t1; drop table t1;
CREATE VIEW v1 (f1,f2,f3,f4) AS SELECT connection_id(), pi(), current_user(), version(); CREATE VIEW v1 (f1,f2,f3,f4) AS SELECT connection_id(), pi(), current_user(), version();
......
...@@ -3242,7 +3242,7 @@ open_new_frm(const char *path, const char *alias, ...@@ -3242,7 +3242,7 @@ open_new_frm(const char *path, const char *alias,
{ {
if (table_desc == 0 || table_desc->required_type == FRMTYPE_TABLE) if (table_desc == 0 || table_desc->required_type == FRMTYPE_TABLE)
{ {
my_error(ER_WRONG_OBJECT, MYF(0), db, table_name, "BASIC TABLE"); my_error(ER_WRONG_OBJECT, MYF(0), db, table_name, "BASE TABLE");
goto err; goto err;
} }
if (mysql_make_view(parser, table_desc)) if (mysql_make_view(parser, table_desc))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment