mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
6 lines
182 B
Text
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;
|