Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mysql-test/suite/innodb_fts/r/index_table.result
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
title VARCHAR(200),
content TEXT
) ENGINE= InnoDB;
SET STATEMENT debug_dbug='+d,innodb_report_deadlock' FOR
SET STATEMENT debug_dbug='+d,fts_load_stopword_fail' FOR
CREATE FULLTEXT INDEX idx ON articles (title, content);
ERROR HY000: Got error 11 "Resource temporarily unavailable" from storage engine InnoDB
CREATE FULLTEXT INDEX idx ON articles (title, content);
Expand Down
2 changes: 1 addition & 1 deletion mysql-test/suite/innodb_fts/t/index_table.test
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ CREATE TABLE articles (
) ENGINE= InnoDB;

--error ER_GET_ERRNO
SET STATEMENT debug_dbug='+d,innodb_report_deadlock' FOR
SET STATEMENT debug_dbug='+d,fts_load_stopword_fail' FOR
CREATE FULLTEXT INDEX idx ON articles (title, content);
CREATE FULLTEXT INDEX idx ON articles (title, content);

Expand Down
5 changes: 4 additions & 1 deletion storage/innobase/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,10 @@ SET(INNOBASE_SOURCES
fts/fts0ast.cc
fts/fts0blex.cc
fts/fts0config.cc
fts/fts0exec.cc
fts/fts0opt.cc
fts/fts0pars.cc
fts/fts0que.cc
fts/fts0sql.cc
fts/fts0tlex.cc
gis/gis0geo.cc
gis/gis0rtree.cc
Expand Down Expand Up @@ -239,6 +239,7 @@ SET(INNOBASE_SOURCES
include/fsp0types.h
include/fts0ast.h
include/fts0blex.h
include/fts0exec.h
include/fts0fts.h
include/fts0opt.h
include/fts0pars.h
Expand Down Expand Up @@ -311,6 +312,7 @@ SET(INNOBASE_SOURCES
include/row0mysql.h
include/row0purge.h
include/row0quiesce.h
include/row0query.h
include/row0row.h
include/row0row.inl
include/row0sel.h
Expand Down Expand Up @@ -399,6 +401,7 @@ SET(INNOBASE_SOURCES
row/row0undo.cc
row/row0upd.cc
row/row0quiesce.cc
row/row0query.cc
row/row0vers.cc
srv/srv0mon.cc
srv/srv0srv.cc
Expand Down
Loading