diff options
Diffstat (limited to 'mysql-test/r/gcc296.result')
-rw-r--r-- | mysql-test/r/gcc296.result | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/mysql-test/r/gcc296.result b/mysql-test/r/gcc296.result deleted file mode 100644 index 628bbbf3f93..00000000000 --- a/mysql-test/r/gcc296.result +++ /dev/null @@ -1,20 +0,0 @@ -drop table if exists t1; -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; -kodoboru obor aobor -0101000000 aaa AAA -0102000000 bbb BBB -0103000000 ccc CCC -0104000000 xxx XXX -drop table t1; |