mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge with 4.0.13
This commit is contained in:
@ -46,4 +46,15 @@ NULL d 7
|
||||
delete from t1 where misc > 5 and bool is null;
|
||||
select * from t1 where misc > 5 and bool is null;
|
||||
bool not_null misc
|
||||
select count(*) from t1;
|
||||
count(*)
|
||||
2
|
||||
delete from t1 where 1 > 2;
|
||||
select count(*) from t1;
|
||||
count(*)
|
||||
2
|
||||
delete from t1 where 3 > 2;
|
||||
select count(*) from t1;
|
||||
count(*)
|
||||
0
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user