diff options
author | Thirunarayanan Balathandayuthapani <thiru@mariadb.com> | 2021-04-09 17:38:21 +0530 |
---|---|---|
committer | Thirunarayanan Balathandayuthapani <thiru@mariadb.com> | 2021-04-09 17:38:21 +0530 |
commit | 1ac4d0c168c3d438752e3a72c79d29a6cbd5a127 (patch) | |
tree | ae90af390ffc96ac26d002d4f59cf38e4e59dd31 /storage/innobase/include | |
parent | 5a3151bcda2f279091a1e2f049a7d11cd91065d6 (diff) | |
download | mariadb-git-1ac4d0c168c3d438752e3a72c79d29a6cbd5a127.tar.gz |
BtrBulk::table_name(): Return the table name while displaying
table name for fts diagnostics
Diffstat (limited to 'storage/innobase/include')
-rw-r--r-- | storage/innobase/include/btr0bulk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/include/btr0bulk.h b/storage/innobase/include/btr0bulk.h index 6687d29593a..911a2726422 100644 --- a/storage/innobase/include/btr0bulk.h +++ b/storage/innobase/include/btr0bulk.h @@ -326,7 +326,7 @@ public: /** Re-latch all latches */ void latch(); - dict_index_t* index() { return m_index; } + table_name_t table_name() { return m_index->table->name; } private: /** Insert a tuple to a page in a level |