summaryrefslogtreecommitdiff
path: root/mysql-test/r/delete.result
diff options
context:
space:
mode:
authorserg@serg.mylan <>2003-05-04 11:00:45 +0200
committerserg@serg.mylan <>2003-05-04 11:00:45 +0200
commit86da817cec6c708dc1d6e0d2d0d22df0b4660266 (patch)
tree1188c49df4cf5d9f045af92c5359178cf21cc6f1 /mysql-test/r/delete.result
parent528a24720fb8876edb7c945113597e4671515252 (diff)
downloadmariadb-git-86da817cec6c708dc1d6e0d2d0d22df0b4660266.tar.gz
result updated
Diffstat (limited to 'mysql-test/r/delete.result')
-rw-r--r--mysql-test/r/delete.result11
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;