~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/t/gcc296.test

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#try to crash gcc 2.96
 
2
--disable_warnings
 
3
drop table if exists t1;
 
4
--enable_warnings
 
5
 
 
6
CREATE TABLE t1 (
 
7
  kodoboru varchar(10) default NULL,
 
8
  obor tinytext,
 
9
  aobor tinytext,
 
10
  UNIQUE INDEX kodoboru (kodoboru),
 
11
  FULLTEXT KEY obor (obor),
 
12
  FULLTEXT KEY aobor (aobor)
 
13
);
 
14
INSERT INTO t1 VALUES ('0101000000','aaa','AAA');
 
15
INSERT INTO t1 VALUES ('0102000000','bbb','BBB');
 
16
INSERT INTO t1 VALUES ('0103000000','ccc','CCC');
 
17
INSERT INTO t1 VALUES ('0104000000','xxx','XXX');
 
18
 
 
19
select * from t1;
 
20
drop table t1;
 
21
 
 
22
# End of 4.1 tests