diff options
author | Michael Widenius <monty@mariadb.org> | 2018-03-09 14:05:35 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2018-03-29 13:59:44 +0300 |
commit | a7abddeffa6a760ce948c2dfb007cdf3f1a369d5 (patch) | |
tree | 70eb743fa965a17380bbc0ac88ae79ca1075b896 /mysql-test/t/gcc296.test | |
parent | ab1941266c59a19703a74b5593cf3f508a5752d7 (diff) | |
download | mariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz |
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/t/gcc296.test')
-rw-r--r-- | mysql-test/t/gcc296.test | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/mysql-test/t/gcc296.test b/mysql-test/t/gcc296.test deleted file mode 100644 index bfcd56ff396..00000000000 --- a/mysql-test/t/gcc296.test +++ /dev/null @@ -1,22 +0,0 @@ -#try to crash gcc 2.96 ---disable_warnings -drop table if exists t1; ---enable_warnings - -CREATE TABLE t1 ( - kodoboru varchar(10) default NULL, - obor tinytext, - aobor tinytext, - UNIQUE INDEX kodoboru (kodoboru), - FULLTEXT KEY obor (obor), - FULLTEXT KEY aobor (aobor) -); -INSERT INTO t1 VALUES ('0101000000','aaa','AAA'); -INSERT INTO t1 VALUES ('0102000000','bbb','BBB'); -INSERT INTO t1 VALUES ('0103000000','ccc','CCC'); -INSERT INTO t1 VALUES ('0104000000','xxx','XXX'); - -select * from t1; -drop table t1; - -# End of 4.1 tests |