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/t/bdb.test | |
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/t/bdb.test')
-rw-r--r-- | mysql-test/t/bdb.test | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/t/bdb.test b/mysql-test/t/bdb.test index af38be98151..f4895318818 100644 --- a/mysql-test/t/bdb.test +++ b/mysql-test/t/bdb.test @@ -954,4 +954,19 @@ drop table t1; let $default=`select @@storage_engine`; set storage_engine=bdb; source include/varchar.inc; + +# +# 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; + +# End varchar test eval set storage_engine=$default; |