diff options
author | evgen@moonbone.local <> | 2006-08-17 18:50:53 +0400 |
---|---|---|
committer | evgen@moonbone.local <> | 2006-08-17 18:50:53 +0400 |
commit | 270629a1589c1f813d79406389e4690270ace073 (patch) | |
tree | da0c3e59542392b61f87703d2a73520d61383a28 /mysql-test/r/ndb_condition_pushdown.result | |
parent | cabb55a64f0496a7a1a451e48e3342406ef77279 (diff) | |
download | mariadb-git-270629a1589c1f813d79406389e4690270ace073.tar.gz |
ndb_condition_pushdown.result:
Corrected test case result after fix for bug#18165
view.result, view.test:
Corrected test case for bug#21261
Diffstat (limited to 'mysql-test/r/ndb_condition_pushdown.result')
-rw-r--r-- | mysql-test/r/ndb_condition_pushdown.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/ndb_condition_pushdown.result b/mysql-test/r/ndb_condition_pushdown.result index 4e5597a4851..aefbcbf6ede 100644 --- a/mysql-test/r/ndb_condition_pushdown.result +++ b/mysql-test/r/ndb_condition_pushdown.result @@ -1307,7 +1307,7 @@ select auto from t1 where ('1901-01-01 01:01:01' between date_time and date_time) order by auto; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ALL NULL NULL NULL NULL 4 Using where with pushed condition; Using filesort +1 SIMPLE t1 range medium_index medium_index 3 NULL 10 Using where with pushed condition; Using filesort select auto from t1 where ("aaaa" between string and string) and ("aaaa" between vstring and vstring) and @@ -1409,7 +1409,7 @@ select auto from t1 where ('1901-01-01 01:01:01' not between date_time and date_time) order by auto; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ALL NULL NULL NULL NULL 4 Using where with pushed condition; Using filesort +1 SIMPLE t1 range medium_index medium_index 3 NULL 20 Using where with pushed condition; Using filesort select auto from t1 where ("aaaa" not between string and string) and ("aaaa" not between vstring and vstring) and |