~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create_not_windows.test

merge with latest from the trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Non-windows specific create tests.
2
 
 
3
 
--source include/not_windows.inc
4
 
 
5
1
#
6
2
# Bug#19479:mysqldump creates invalid dump
7
3
#
12
8
_id int not null auto_increment,
13
9
`about:text` varchar(255) not null default '',
14
10
primary key (_id)
15
 
);
 
11
) ENGINE=MyISAM;
16
12
 
17
13
show create table `about:text`; 
18
14
drop table `about:text`;
27
23
--disable_warnings
28
24
drop table if exists t1;
29
25
--enable_warnings
30
 
create table t1(a int) engine=myisam;
31
 
insert into t1 values(1);
32
 
--system rm -f $MYSQLTEST_VARDIR/master-data/test/t1.frm
 
26
create table break_frm(a int) engine=myisam;
 
27
insert into break_frm values(1);
 
28
--system rm -f $MYSQLTEST_VARDIR/master-data/test/break_frm.frm
33
29
--echo "We get an error because the table is in the definition cache"
34
30
--error ER_TABLE_EXISTS_ERROR
35
 
create table t1(a int, b int);
 
31
create table break_frm(a int, b int);
36
32
--echo "Flush the cache and recreate the table anew to be able to drop it"
37
33
flush tables;
38
 
show open tables like "t%";
39
 
create table t1(a int, b int, c int);
 
34
show open tables like "break_frm%";
 
35
create table break_frm(a int, b int, c int);
40
36
--echo "Try to select from the table. This should not crash the server"
41
 
select count(a) from t1;
42
 
drop table t1;
 
37
select count(a) from break_frm;
 
38
drop table break_frm;
 
39
--system rm -f $MYSQLTEST_VARDIR/master-data/test/break_frm.*
 
40
create table break_frm(a int) engine=myisam;
 
41
drop table if exists break_frm;