summaryrefslogtreecommitdiff
path: root/mysql-test/t/type_blob.test
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/t/type_blob.test
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/t/type_blob.test')
-rw-r--r--mysql-test/t/type_blob.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/type_blob.test b/mysql-test/t/type_blob.test
index 97c38057e72..cae64b9dd27 100644
--- a/mysql-test/t/type_blob.test
+++ b/mysql-test/t/type_blob.test
@@ -122,8 +122,8 @@ select d,count(*) from t1 group by d;
drop table t1;
-- error 1071
-create table t1 (a text, unique (a(300))); # should give an error
-create table t1 (a text, key (a(300))); # key is auto-truncated
+create table t1 (a text, unique (a(2100))); # should give an error
+create table t1 (a text, key (a(2100))); # key is auto-truncated
show create table t1;
drop table t1;