changed to moderm syntax (after merge fix)

This commit is contained in:
unknown 2004-02-17 02:26:35 +02:00
parent 7b6b03f340
commit 269f9f1f23
2 changed files with 2 additions and 4 deletions

View file

@ -64,9 +64,7 @@ t9 CREATE TABLE `t9` (
PRIMARY KEY (`a`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='TEST_DIR/var/tmp/' INDEX DIRECTORY='TEST_DIR/var/run/'
drop database mysqltest;
create table t1 (a int not null) type=myisam;
Warnings:
Warning 1286 'TYPE=storage_engine' is deprecated. Use 'ENGINE=storage_engine' instead.
create table t1 (a int not null) engine=myisam;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (

View file

@ -98,7 +98,7 @@ drop database mysqltest;
# Test changing data dir (Bug #1662)
#
create table t1 (a int not null) type=myisam;
create table t1 (a int not null) engine=myisam;
disable_query_log;
eval alter table t1 data directory="$MYSQL_TEST_DIR/var/tmp";
enable_query_log;