File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
mysql-test/suite/innodb/t Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11--source include/have_innodb.inc
2+ --source include/not_embedded.inc
23--echo # Set the environmental variables
34let MYSQLD_BASEDIR= `SELECT @@basedir`;
45let MYSQLD_DATADIR= `SELECT @@datadir`;
Original file line number Diff line number Diff line change @@ -9531,9 +9531,9 @@ ha_innobase::change_active_index(
95319531since FT search returns rank only. In addition engine should
95329532be able to retrieve FTS_DOC_ID column value if necessary. */
95339533if (m_prebuilt->index->type & DICT_FTS) {
9534- for (ulint i = 0; i < table->s->fields; i++) {
9534+ for (uint i = 0; i < table->s->fields; i++) {
95359535if (m_prebuilt->read_just_key
9536- && bitmap_get_next_set (table->read_set, i)
9536+ && bitmap_is_set (table->read_set, i)
95379537 && !strcmp(table->s->field[i]->field_name.str,
95389538 FTS_DOC_ID_COL_NAME)) {
95399539m_prebuilt->fts_doc_id_in_read_set = true;
You can’t perform that action at this time.
0 commit comments