mariadb/mysql-test/main/sp_missing_4665.result
2018-03-29 13:59:44 +03:00

6 lines
182 B
Text

create table t (a int);
create or replace view v as select 1 from t where a;
delete from v where (select g());
ERROR 42000: FUNCTION test.g does not exist
drop view v;
drop table t;