~drizzle-pbxt/drizzle/drizzle-pbxt-2

« back to all changes in this revision

Viewing changes to tests/t/create_not_windows.test

  • Committer: Paul McCullagh
  • Date: 2009-11-10 14:18:39 UTC
  • mfrom: (1038.1.7 drizzle-pbxt-pre-merge)
  • Revision ID: paul.mccullagh@primebase.org-20091110141839-2j3k43b17ag6f605
Merged Drizzle trunk and PBXT 1.0.09

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
--disable_warnings
5
5
drop table if exists `about:text`;
6
6
--enable_warnings
7
 
create table `about:text` ( 
 
7
create TEMPORARY table `about:text` ( 
8
8
_id int not null auto_increment,
9
9
`about:text` varchar(255) not null default '',
10
10
primary key (_id)
23
23
--disable_warnings
24
24
drop table if exists t1;
25
25
--enable_warnings
26
 
create table break_frm(a int) engine=myisam;
 
26
create TEMPORARY table break_frm(a int) engine=myisam;
27
27
insert into break_frm values(1);
28
28
--system rm -f $MYSQLTEST_VARDIR/master-data/test/break_frm.frm
29
29
--system rm -f $MYSQLTEST_VARDIR/master-data/test/break_frm.dfe
30
30
--echo "We get an error because the table is in the definition cache"
31
31
--error ER_TABLE_EXISTS_ERROR
32
 
create table break_frm(a int, b int);
 
32
create TEMPORARY table break_frm(a int, b int);
33
33
--echo "Flush the cache and recreate the table anew to be able to drop it"
34
34
flush tables;
35
35
show open tables like "break_frm%";
38
38
select count(a) from break_frm;
39
39
drop table break_frm;
40
40
--system rm -f $MYSQLTEST_VARDIR/master-data/test/break_frm.*
41
 
create table break_frm(a int) engine=myisam;
 
41
create TEMPORARY table break_frm(a int) engine=myisam;
42
42
drop table if exists break_frm;