diff options
author | monty@mashka.mysql.fi <> | 2003-05-13 11:15:11 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-05-13 11:15:11 +0300 |
commit | 60dfb25be3806eefb26504fdf17a0ba1fcb11673 (patch) | |
tree | 69892a7f220c327725015304f7314967001536d6 /mysql-test/r/bdb.result | |
parent | 091d6f3b731d94128d3f35942126a29e2cadae49 (diff) | |
download | mariadb-git-60dfb25be3806eefb26504fdf17a0ba1fcb11673.tar.gz |
Give warning if MySQL doesn't honor given storage engine
Allow syntax CREATE TABLE t1 (LIKE t2)
Diffstat (limited to 'mysql-test/r/bdb.result')
-rw-r--r-- | mysql-test/r/bdb.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/bdb.result b/mysql-test/r/bdb.result index 2c7d3136369..7f0612a011f 100644 --- a/mysql-test/r/bdb.result +++ b/mysql-test/r/bdb.result @@ -203,7 +203,7 @@ a 2 check table t1; Table Op Msg_type Msg_text -test.t1 check error The handler for the table doesn't support check +test.t1 check error The storage enginge for the table doesn't support check drop table t1; create table t1 (a int,b varchar(20)) type=bdb; insert into t1 values (1,""), (2,"testing"); |