summaryrefslogtreecommitdiff
path: root/mysql-test/r/ndb_subquery.result
diff options
context:
space:
mode:
authorunknown <pekka@orca.ndb.mysql.com>2006-10-16 16:13:03 +0200
committerunknown <pekka@orca.ndb.mysql.com>2006-10-16 16:13:03 +0200
commit10b4ae8d459a12a6ee6efec70cab7ea0d82d6f4b (patch)
tree5c899006199b4a2bed566d29c3451850e4784f4a /mysql-test/r/ndb_subquery.result
parent675e15a518f82bc44f7cc0a0a330d128c42d8f24 (diff)
downloadmariadb-git-10b4ae8d459a12a6ee6efec70cab7ea0d82d6f4b.tar.gz
ndb - replace explain 'rows' by '#' in ndb*.test - stats are not deterministic
mysql-test/r/ndb_basic.result: replace explain 'rows' by '#' since it depends usually on non-deterministic index stats or non-exact row count mysql-test/r/ndb_blob.result: replace explain 'rows' by '#' since it depends usually on non-deterministic index stats or non-exact row count mysql-test/r/ndb_charset.result: replace explain 'rows' by '#' since it depends usually on non-deterministic index stats or non-exact row count mysql-test/r/ndb_condition_pushdown.result: replace explain 'rows' by '#' since it depends usually on non-deterministic index stats or non-exact row count mysql-test/r/ndb_dd_sql_features.result: replace explain 'rows' by '#' since it depends usually on non-deterministic index stats or non-exact row count mysql-test/r/ndb_subquery.result: replace explain 'rows' by '#' since it depends usually on non-deterministic index stats or non-exact row count mysql-test/t/ndb_basic.test: replace explain 'rows' by '#' since it depends usually on non-deterministic index stats or non-exact row count mysql-test/t/ndb_blob.test: replace explain 'rows' by '#' since it depends usually on non-deterministic index stats or non-exact row count mysql-test/t/ndb_charset.test: replace explain 'rows' by '#' since it depends usually on non-deterministic index stats or non-exact row count mysql-test/t/ndb_condition_pushdown.test: replace explain 'rows' by '#' since it depends usually on non-deterministic index stats or non-exact row count mysql-test/t/ndb_dd_sql_features.test: replace explain 'rows' by '#' since it depends usually on non-deterministic index stats or non-exact row count mysql-test/t/ndb_subquery.test: replace explain 'rows' by '#' since it depends usually on non-deterministic index stats or non-exact row count
Diffstat (limited to 'mysql-test/r/ndb_subquery.result')
-rw-r--r--mysql-test/r/ndb_subquery.result16
1 files changed, 8 insertions, 8 deletions
diff --git a/mysql-test/r/ndb_subquery.result b/mysql-test/r/ndb_subquery.result
index b19571b05c1..312711ab4b7 100644
--- a/mysql-test/r/ndb_subquery.result
+++ b/mysql-test/r/ndb_subquery.result
@@ -8,32 +8,32 @@ insert into t1 values (1,1,1),(2,2,2),(3,3,3);
insert into t2 values (1,1,1),(2,2,2),(3,3,3), (4,4,4), (5,5,5);
explain select * from t2 where p NOT IN (select p from t1);
id select_type table type possible_keys key key_len ref rows Extra
-1 PRIMARY t2 ALL NULL NULL NULL NULL 5 Using where
-2 DEPENDENT SUBQUERY t1 unique_subquery PRIMARY PRIMARY 4 func 1 Using index
+1 PRIMARY t2 ALL NULL NULL NULL NULL # Using where
+2 DEPENDENT SUBQUERY t1 unique_subquery PRIMARY PRIMARY 4 func # Using index
select * from t2 where p NOT IN (select p from t1) order by p;
p u o
4 4 4
5 5 5
explain select * from t2 where p NOT IN (select u from t1);
id select_type table type possible_keys key key_len ref rows Extra
-1 PRIMARY t2 ALL NULL NULL NULL NULL 5 Using where
-2 DEPENDENT SUBQUERY t1 unique_subquery u u 4 func 1 Using index
+1 PRIMARY t2 ALL NULL NULL NULL NULL # Using where
+2 DEPENDENT SUBQUERY t1 unique_subquery u u 4 func # Using index
select * from t2 where p NOT IN (select u from t1) order by p;
p u o
4 4 4
5 5 5
explain select * from t2 where p NOT IN (select o from t1);
id select_type table type possible_keys key key_len ref rows Extra
-1 PRIMARY t2 ALL NULL NULL NULL NULL 5 Using where
-2 DEPENDENT SUBQUERY t1 index_subquery o o 4 func 1 Using index
+1 PRIMARY t2 ALL NULL NULL NULL NULL # Using where
+2 DEPENDENT SUBQUERY t1 index_subquery o o 4 func # Using index
select * from t2 where p NOT IN (select o from t1) order by p;
p u o
4 4 4
5 5 5
explain select * from t2 where p NOT IN (select p+0 from t1);
id select_type table type possible_keys key key_len ref rows Extra
-1 PRIMARY t2 ALL NULL NULL NULL NULL 5 Using where
-2 DEPENDENT SUBQUERY t1 ALL NULL NULL NULL NULL 3 Using where
+1 PRIMARY t2 ALL NULL NULL NULL NULL # Using where
+2 DEPENDENT SUBQUERY t1 ALL NULL NULL NULL NULL # Using where
select * from t2 where p NOT IN (select p+0 from t1) order by p;
p u o
4 4 4