mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
merged
sql/ha_innodb.cc: Auto merged
This commit is contained in:
commit
71da21b2e9
3 changed files with 31 additions and 11 deletions
|
|
@ -295,3 +295,14 @@ insert into t1 (s) values ('p
|
|||
select * from t1 where match(s) against('para' in boolean mode);
|
||||
select * from t1 where match(s) against('par*' in boolean mode);
|
||||
DROP TABLE t1;
|
||||
|
||||
#
|
||||
# icc -ip bug (ip = interprocedural optimization)
|
||||
# bug#5528
|
||||
#
|
||||
CREATE TABLE t1 (h text, FULLTEXT (h));
|
||||
INSERT INTO t1 VALUES ('Jesses Hasse Ling and his syncopators of Swing');
|
||||
REPAIR TABLE t1;
|
||||
select count(*) from t1;
|
||||
drop table t1;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue