summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorjoreland@mysql.com <>2004-08-27 01:01:47 +0200
committerjoreland@mysql.com <>2004-08-27 01:01:47 +0200
commit6df66180bdecd943b91f6a813520d2a8395a7aab (patch)
tree72d7c35808f62c237f964103b9ae41c8d82ea960 /mysql-test/r
parent0cde6e4dcb48fb3b5186b17ca67f41e34d039be3 (diff)
parent95e5b457b876e06ec94f02050b79a392fd6cc358 (diff)
downloadmariadb-git-6df66180bdecd943b91f6a813520d2a8395a7aab.tar.gz
Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/jonas/src/mysql-4.1
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/ndb_index_ordered.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/ndb_index_ordered.result b/mysql-test/r/ndb_index_ordered.result
index 75de1ac4a7f..1441e53e935 100644
--- a/mysql-test/r/ndb_index_ordered.result
+++ b/mysql-test/r/ndb_index_ordered.result
@@ -205,4 +205,10 @@ a b c
select * from t1 where b<=5 and c=0 or b<=5 and c=2;
a b c
19 4 0
+select count(*) from t1 where b = 0;
+count(*)
+0
+select count(*) from t1 where b = 1;
+count(*)
+1
drop table t1;