diff options
author | sasha@mysql.sashanet.com <> | 2001-11-30 22:09:44 -0700 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-11-30 22:09:44 -0700 |
commit | e57311045f772588ebac2ff313047506c94623f1 (patch) | |
tree | 727aa572ab6a5dc6d3b4834e8a3508633716a00a /mysql-test/t/gcc296.test | |
parent | 4b513347c4c5ca72c13ec42c499d243c0dfdcd1f (diff) | |
download | mariadb-git-e57311045f772588ebac2ff313047506c94623f1.tar.gz |
added build-tags
added test case that supposedly will crash mysqld built with 2.96
Diffstat (limited to 'mysql-test/t/gcc296.test')
-rw-r--r-- | mysql-test/t/gcc296.test | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mysql-test/t/gcc296.test b/mysql-test/t/gcc296.test new file mode 100644 index 00000000000..7c72b57ca54 --- /dev/null +++ b/mysql-test/t/gcc296.test @@ -0,0 +1,17 @@ +#try to crash gcc 2.96 +drop table if exists obory; +CREATE TABLE obory ( + kodoboru varchar(10) default NULL, + obor tinytext, + aobor tinytext, + UNIQUE INDEX kodoboru (kodoboru), + FULLTEXT KEY obor (obor), + FULLTEXT KEY aobor (aobor) +); +INSERT INTO obory VALUES ('0101000000','aaa','AAA'); +INSERT INTO obory VALUES ('0102000000','bbb','BBB'); +INSERT INTO obory VALUES ('0103000000','ccc','CCC'); +INSERT INTO obory VALUES ('0104000000','xxx','XXX'); + +select * from obory; +drop table obory; |