--disable_warnings drop table if exists t1 ; --enable_warnings let $type= 'BDB'; eval create table t1 ( a int, b varchar(30), primary key(a)) engine = $type ; insert into t1 values (1,'one'); commit ; --enable_info ; truncate t1 ; --disable_info ; select * from t1;