1
by brian
clean slate |
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
|