summaryrefslogtreecommitdiff
path: root/mysql-test/r/heap.result
diff options
context:
space:
mode:
authorevgen@sunlight.local <>2006-08-01 09:24:19 +0400
committerevgen@sunlight.local <>2006-08-01 09:24:19 +0400
commitdda7a95c59dcaa87dc58c1db8b86245494652609 (patch)
tree175eff6178bdfc623e26353bfcc955d7997c6025 /mysql-test/r/heap.result
parent799ecc9f2abeb19db7d2409ac756f627b25b75a3 (diff)
parent6056f7714e0d86b34d87048315b0fc03a8c03f61 (diff)
downloadmariadb-git-dda7a95c59dcaa87dc58c1db8b86245494652609.tar.gz
Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.1-opt
into sunlight.local:/local_work/tmp_merge-5.1-opt-mysql
Diffstat (limited to 'mysql-test/r/heap.result')
-rw-r--r--mysql-test/r/heap.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/heap.result b/mysql-test/r/heap.result
index a75f6c96b20..29bdfcbef7a 100644
--- a/mysql-test/r/heap.result
+++ b/mysql-test/r/heap.result
@@ -166,7 +166,7 @@ alter table t1 add column new_col char(1) not null, add key (btn,new_col), drop
update t1 set new_col=left(btn,1);
explain select * from t1 where btn="a";
id select_type table type possible_keys key key_len ref rows Extra
-1 SIMPLE t1 ALL btn NULL NULL NULL 11 Using where
+1 SIMPLE t1 ALL btn NULL NULL NULL 14 Using where
explain select * from t1 where btn="a" and new_col="a";
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref btn btn 11 const,const 2 Using where