mirror of
https://github.com/MariaDB/server.git
synced 2025-05-28 13:01:41 +03:00
7 lines
182 B
Plaintext
7 lines
182 B
Plaintext
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;
|