diff options
author | joreland@mysql.com <> | 2004-08-27 01:01:47 +0200 |
---|---|---|
committer | joreland@mysql.com <> | 2004-08-27 01:01:47 +0200 |
commit | 6df66180bdecd943b91f6a813520d2a8395a7aab (patch) | |
tree | 72d7c35808f62c237f964103b9ae41c8d82ea960 /mysql-test/r | |
parent | 0cde6e4dcb48fb3b5186b17ca67f41e34d039be3 (diff) | |
parent | 95e5b457b876e06ec94f02050b79a392fd6cc358 (diff) | |
download | mariadb-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.result | 6 |
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; |