summaryrefslogtreecommitdiff
path: root/mysql-test/r/type_blob.result
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-02-20 20:38:34 +0100
committerunknown <serg@serg.mylan>2004-02-20 20:38:34 +0100
commit74fa5f09ef7ef6433423f93378bbc070c091d9b0 (patch)
tree40b5e6cdb83d2a91c45651388dc4d63cd2a3fa84 /mysql-test/r/type_blob.result
parente2244c94b1f29d176e441e86b7162f520eaa50b2 (diff)
downloadmariadb-git-74fa5f09ef7ef6433423f93378bbc070c091d9b0.tar.gz
longer myisam keys
mysql-test/r/ctype_utf8.result: updated mysql-test/r/key.result: updated mysql-test/r/myisam.result: updated mysql-test/r/type_blob.result: updated mysql-test/t/ctype_utf8.test: updated mysql-test/t/key.test: updated mysql-test/t/myisam.test: updated mysql-test/t/type_blob.test: updated
Diffstat (limited to 'mysql-test/r/type_blob.result')
-rw-r--r--mysql-test/r/type_blob.result10
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/type_blob.result b/mysql-test/r/type_blob.result
index a895325d1fc..d44face6512 100644
--- a/mysql-test/r/type_blob.result
+++ b/mysql-test/r/type_blob.result
@@ -346,16 +346,16 @@ HELLO MY 1
a 1
hello 1
drop table t1;
-create table t1 (a text, unique (a(300)));
-ERROR 42000: Specified key was too long; max key length is 255 bytes
-create table t1 (a text, key (a(300)));
+create table t1 (a text, unique (a(2100)));
+ERROR 42000: Specified key was too long; max key length is 1000 bytes
+create table t1 (a text, key (a(2100)));
Warnings:
-Warning 1071 Specified key was too long; max key length is 255 bytes
+Warning 1071 Specified key was too long; max key length is 1000 bytes
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` text,
- KEY `a` (`a`(255))
+ KEY `a` (`a`(1000))
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
CREATE TABLE t1 (