diff options
author | unknown <mskold@mysql.com> | 2004-11-02 10:28:39 +0100 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2004-11-02 10:28:39 +0100 |
commit | 2bc1fab0b1b06981ddd4c12661c45579e4684f55 (patch) | |
tree | c815703a0f981dcd6072b14213eb0e1269767e04 /mysql-test/r/ndb_blob.result | |
parent | 5b3529001c5559cd226c47c8d02dacd2719623bb (diff) | |
download | mariadb-git-2bc1fab0b1b06981ddd4c12661c45579e4684f55.tar.gz |
Fixed difference in EXPLAIN output
Diffstat (limited to 'mysql-test/r/ndb_blob.result')
-rw-r--r-- | mysql-test/r/ndb_blob.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/ndb_blob.result b/mysql-test/r/ndb_blob.result index c590815b233..50c18961bf3 100644 --- a/mysql-test/r/ndb_blob.result +++ b/mysql-test/r/ndb_blob.result @@ -87,7 +87,7 @@ insert into t1 values(2,@b2,222,@d2); commit; explain select * from t1 where c = 111; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ref c c 4 const 10 Using where +1 SIMPLE t1 ref c c 4 const 10 select a,length(b),substr(b,1+2*900,2),length(d),substr(d,1+3*900,3) from t1 where c=111; a length(b) substr(b,1+2*900,2) length(d) substr(d,1+3*900,3) |