summaryrefslogtreecommitdiff
path: root/mysql-test/r/delete.result
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2003-05-04 11:00:45 +0200
committerunknown <serg@serg.mylan>2003-05-04 11:00:45 +0200
commit6b1d89b1c9cae92d31c73ba3818fb3ec9b2de13d (patch)
tree1188c49df4cf5d9f045af92c5359178cf21cc6f1 /mysql-test/r/delete.result
parent18409f75dc3dc5f36fc0a60d6f3eea83f20ee434 (diff)
downloadmariadb-git-6b1d89b1c9cae92d31c73ba3818fb3ec9b2de13d.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;