gcc296.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

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