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 | 543d252e5ec596c06e2be3ca8fdba9c8f21ea25e (patch) | |
tree | c815703a0f981dcd6072b14213eb0e1269767e04 /mysql-test/r/ndb_blob.result | |
parent | 076420c8d5ebfcdb25ca9685f1635637a63c501c (diff) | |
download | mariadb-git-543d252e5ec596c06e2be3ca8fdba9c8f21ea25e.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) |