mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
fix case what VIEW have not tables (BUG#4614)
This commit is contained in:
@ -950,3 +950,9 @@ v1 CREATE VIEW test.v1 AS select `test`.`t1`.`a*b` AS `a*b` from `test`.`t1`
|
|||||||
drop view v1;
|
drop view v1;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
set sql_mode=default;
|
set sql_mode=default;
|
||||||
|
create table t1 (t_column int);
|
||||||
|
create view v1 as select 'a';
|
||||||
|
select * from v1, t1;
|
||||||
|
a t_column
|
||||||
|
drop view v1;
|
||||||
|
drop table t1;
|
||||||
|
@ -861,3 +861,12 @@ show create view v1;
|
|||||||
drop view v1;
|
drop view v1;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
set sql_mode=default;
|
set sql_mode=default;
|
||||||
|
|
||||||
|
#
|
||||||
|
# VIEW without tables
|
||||||
|
#
|
||||||
|
create table t1 (t_column int);
|
||||||
|
create view v1 as select 'a';
|
||||||
|
select * from v1, t1;
|
||||||
|
drop view v1;
|
||||||
|
drop table t1;
|
||||||
|
@ -677,6 +677,11 @@ mysql_make_view(File_parser *parser, TABLE_LIST *table)
|
|||||||
if ((tbl_end->next_global= old_next))
|
if ((tbl_end->next_global= old_next))
|
||||||
tbl_end->next_global->prev_global= &tbl_end->next_global;
|
tbl_end->next_global->prev_global= &tbl_end->next_global;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* VIEW do not contain tables */
|
||||||
|
table->next_global= old_next;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
table->derived= &lex->unit;
|
table->derived= &lex->unit;
|
||||||
|
Reference in New Issue
Block a user