summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThirunarayanan Balathandayuthapani <thiru@mariadb.com>2023-01-13 19:10:50 +0530
committerThirunarayanan Balathandayuthapani <thiru@mariadb.com>2023-01-13 19:10:50 +0530
commit666149485fef2f51cd5685cc2172f561b2679209 (patch)
treeaa362867857b6bebabe2e52dcc78bea2854671ce
parent1e04cafcba88e1801e828a5bbab7fe9fdd7ca61c (diff)
downloadmariadb-git-bb-10.7-thiru.tar.gz
MDEV-30341 ASAN failure in row_merge_bulk_t::~row_merge_bulk_t()bb-10.7-thiru
- InnoDB fails to apply the bulk insert operation during fts_commit.
-rw-r--r--storage/innobase/fts/fts0fts.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/storage/innobase/fts/fts0fts.cc b/storage/innobase/fts/fts0fts.cc
index e26aebedfaa..376950d2e73 100644
--- a/storage/innobase/fts/fts0fts.cc
+++ b/storage/innobase/fts/fts0fts.cc
@@ -2963,6 +2963,10 @@ fts_commit_table(
}
}
+ if (error == DB_SUCCESS) {
+ error = trx->bulk_insert_apply();
+ }
+
fts_sql_commit(trx);
trx->free();