summaryrefslogtreecommitdiff
path: root/mysql-test/r/endspace.result
diff options
context:
space:
mode:
authorheikki@hundin.mysql.fi <>2005-03-16 14:28:54 +0200
committerheikki@hundin.mysql.fi <>2005-03-16 14:28:54 +0200
commitcb88409e07fb951515ddbe9b61f7ae9142271160 (patch)
treeb63b8324e33c17a2ebdeadff74cc03b5045e204e /mysql-test/r/endspace.result
parent5fe0884f5e202991fad546440fbb776a89ee4a52 (diff)
downloadmariadb-git-cb88409e07fb951515ddbe9b61f7ae9142271160.tar.gz
data0type.h, row0sel.c:
Fix a crash in a simple search with a key: the dtype->len of a true VARCHAR is the payload maximum len in bytes: it does not include the 2 bytes MySQL uses to store the string length ha_innodb.cc: Fix a crash in true VARCHARs in test-innodb: we passed a wrong pointer to the column conversion in an UPDATE rowid_order_innodb.result, ps_3innodb.result, innodb.result, endspace.result: Edit InnoDB test results to reflect the arrival of true VARCHARs
Diffstat (limited to 'mysql-test/r/endspace.result')
-rw-r--r--mysql-test/r/endspace.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/endspace.result b/mysql-test/r/endspace.result
index b1942409c91..e9396c9a6ed 100644
--- a/mysql-test/r/endspace.result
+++ b/mysql-test/r/endspace.result
@@ -178,7 +178,7 @@ teststring
teststring
explain select * from t1 order by text1;
id select_type table type possible_keys key key_len ref rows Extra
-1 SIMPLE t1 index NULL key1 32 NULL 3 Using index
+1 SIMPLE t1 index NULL key1 34 NULL 3 Using index
alter table t1 modify text1 char(32) binary not null;
select * from t1 order by text1;
text1