mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
10 lines
237 B
Text
10 lines
237 B
Text
|
#
|
||
|
# MDEV-4665 crash when referencing missing function in a subquery
|
||
|
#
|
||
|
create table t (a int);
|
||
|
create or replace view v as select 1 from t where a;
|
||
|
--error ER_SP_DOES_NOT_EXIST
|
||
|
delete from v where (select g());
|
||
|
drop view v;
|
||
|
drop table t;
|