Skip to content

Commit 1d45b3b

Browse files
committed
Merge 10.2 into 10.3
2 parents e82fe21 + c1cb5c1 commit 1d45b3b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

mysql-test/suite/innodb/t/page_id_innochecksum.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
--source include/have_innodb.inc
2+
--source include/not_embedded.inc
23
--echo # Set the environmental variables
34
let MYSQLD_BASEDIR= `SELECT @@basedir`;
45
let MYSQLD_DATADIR= `SELECT @@datadir`;

storage/innobase/handler/ha_innodb.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9531,9 +9531,9 @@ ha_innobase::change_active_index(
95319531
since FT search returns rank only. In addition engine should
95329532
be able to retrieve FTS_DOC_ID column value if necessary. */
95339533
if (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++) {
95359535
if (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)) {
95399539
m_prebuilt->fts_doc_id_in_read_set = true;

0 commit comments

Comments
 (0)