mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
changed to moderm syntax (after merge fix)
This commit is contained in:
parent
7b6b03f340
commit
269f9f1f23
2 changed files with 2 additions and 4 deletions
|
@ -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` (
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue