diff options
author | serg@serg.mylan <> | 2003-05-04 11:00:45 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2003-05-04 11:00:45 +0200 |
commit | 86da817cec6c708dc1d6e0d2d0d22df0b4660266 (patch) | |
tree | 1188c49df4cf5d9f045af92c5359178cf21cc6f1 /mysql-test/r/delete.result | |
parent | 528a24720fb8876edb7c945113597e4671515252 (diff) | |
download | mariadb-git-86da817cec6c708dc1d6e0d2d0d22df0b4660266.tar.gz |
result updated
Diffstat (limited to 'mysql-test/r/delete.result')
-rw-r--r-- | mysql-test/r/delete.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/delete.result b/mysql-test/r/delete.result index 582ab894233..abc8245e69f 100644 --- a/mysql-test/r/delete.result +++ b/mysql-test/r/delete.result @@ -38,4 +38,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; |