diff options
Diffstat (limited to 'mysql-test/t/bdb.test')
-rw-r--r-- | mysql-test/t/bdb.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/bdb.test b/mysql-test/t/bdb.test index 744706bb5e4..01d82c0ba16 100644 --- a/mysql-test/t/bdb.test +++ b/mysql-test/t/bdb.test @@ -939,3 +939,12 @@ alter table t1 add b int; select * from t1; drop table t1; + +# +# Test varchar +# + +let $default=`select @@storage_engine`; +set storage_engine=bdb; +source include/varchar.inc; +eval set storage_engine=$default; |