mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
wording changed (postreview fix)
mysql-test/r/view.result: wording changed sql/sql_base.cc: wording changed
This commit is contained in:
parent
d8f599bcdc
commit
367d882bb3
2 changed files with 2 additions and 2 deletions
|
@ -1049,7 +1049,7 @@ drop view v1;
|
|||
create table t1 (col1 int,col2 char(22));
|
||||
create view v1 as select * from t1;
|
||||
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 table t1;
|
||||
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,
|
|||
{
|
||||
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;
|
||||
}
|
||||
if (mysql_make_view(parser, table_desc))
|
||||
|
|
Loading…
Reference in a new issue