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