summaryrefslogtreecommitdiff
path: root/mysql-test/r/ndb_blob.result
diff options
context:
space:
mode:
authortomas@poseidon.(none) <>2004-09-14 08:52:21 +0000
committertomas@poseidon.(none) <>2004-09-14 08:52:21 +0000
commit21a4b1b4e60ae67304197c9030d11c33d7ebbde7 (patch)
tree831e0140e9ce404765e5a139b988a78d6a7d1f54 /mysql-test/r/ndb_blob.result
parent74336d596f9056994c9418d707459e227cf94c06 (diff)
downloadmariadb-git-21a4b1b4e60ae67304197c9030d11c33d7ebbde7.tar.gz
moved all ndb thread specific data into new placeholder
new methods to keep "records" up to date unset flag HA_NOT_EXACT_COUNT to make handler read "records" field, for count() optim and join optimization new methods to keep "records" up to datecorrect record field in ndbcluster handler new method for ndbcluster handler to store/retrieve table and thread specific data changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl hanged deleteKey to return ponter to deleted object moved heavy global cache fetch from inline to separate method
Diffstat (limited to 'mysql-test/r/ndb_blob.result')
-rw-r--r--mysql-test/r/ndb_blob.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/ndb_blob.result b/mysql-test/r/ndb_blob.result
index 45b003e6967..004713be718 100644
--- a/mysql-test/r/ndb_blob.result
+++ b/mysql-test/r/ndb_blob.result
@@ -150,7 +150,7 @@ insert into t1 values(9,'b9',999,'dd9');
commit;
explain select * from t1;
id select_type table type possible_keys key key_len ref rows Extra
-1 SIMPLE t1 ALL NULL NULL NULL NULL 100
+1 SIMPLE t1 ALL NULL NULL NULL NULL 9
select * from t1 order by a;
a b c d
1 b1 111 dd1
@@ -185,7 +185,7 @@ insert into t1 values(2,@b2,222,@d2);
commit;
explain select * from t1;
id select_type table type possible_keys key key_len ref rows Extra
-1 SIMPLE t1 ALL NULL NULL NULL NULL 100
+1 SIMPLE t1 ALL NULL NULL NULL NULL 2
select a,length(b),substr(b,1+2*900,2),length(d),substr(d,1+3*900,3)
from t1 order by a;
a length(b) substr(b,1+2*900,2) length(d) substr(d,1+3*900,3)