diff options
author | unknown <monty@mysql.com> | 2005-03-17 01:22:12 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2005-03-17 01:22:12 +0200 |
commit | 1c5ca8061deb2ba7aa9b4d20ed43df45ccbe4daf (patch) | |
tree | 975aabcce86d2711a7a2420e2dedab876b1144c8 /mysql-test/include/varchar.inc | |
parent | 06f59b28ab4e2c2d4a67c50d56b734c96750ed8b (diff) | |
download | mariadb-git-1c5ca8061deb2ba7aa9b4d20ed43df45ccbe4daf.tar.gz |
Move handler dependent tests to the specific handler (myisam, bdb, innodb)
Enabled VARCHAR testing for innodb
NOTE: innodb.test currently fails becasue of a bug in InnoDB.
I have informed Heikki about this and expect him to fix this ASAP
mysql-test/include/varchar.inc:
Move handler dependent tests to the specific handler (myisam, bdb, innodb)
mysql-test/r/innodb.result:
Added varchar tests
mysql-test/r/myisam.result:
Update results
mysql-test/t/bdb.test:
Move handler dependent tests to the specific handler (myisam, bdb, innodb)
mysql-test/t/innodb.test:
Enabled VARCHAR testing
mysql-test/t/myisam.test:
Move handler dependent tests to the specific handler (myisam, bdb, innodb)
sql/sql_parse.cc:
Indentation fixes
sql/sql_table.cc:
Fixed bug introduced when doing cleanup
Diffstat (limited to 'mysql-test/include/varchar.inc')
-rw-r--r-- | mysql-test/include/varchar.inc | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/mysql-test/include/varchar.inc b/mysql-test/include/varchar.inc index 060afbfb066..3ec9d00d05d 100644 --- a/mysql-test/include/varchar.inc +++ b/mysql-test/include/varchar.inc @@ -226,16 +226,3 @@ create table t1 (v varchar(65530), key(v(10))); insert into t1 values(repeat('a',65530)); select length(v) from t1 where v=repeat('a',65530); drop table t1; - -# -# Some errors/warnings on create -# - -create table t1 (v varchar(65530), key(v)); -drop table if exists t1; -create table t1 (v varchar(65536)); -show create table t1; -drop table t1; -create table t1 (v varchar(65530) character set utf8); -show create table t1; -drop table t1; |