mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
fixup MDEV-17556: fix mroonga
This commit is contained in:
@@ -20,17 +20,17 @@
|
||||
#include "mrn_debug_column_access.hpp"
|
||||
|
||||
namespace mrn {
|
||||
DebugColumnAccess::DebugColumnAccess(TABLE *table, MY_BITMAP *bitmap)
|
||||
DebugColumnAccess::DebugColumnAccess(TABLE *table, MY_BITMAP **bitmap)
|
||||
: table_(table),
|
||||
bitmap_(bitmap) {
|
||||
#ifdef DBUG_ASSERT_EXISTS
|
||||
map_ = dbug_tmp_use_all_columns(table_, &bitmap_);
|
||||
map_ = dbug_tmp_use_all_columns(table_, bitmap_);
|
||||
#endif
|
||||
}
|
||||
|
||||
DebugColumnAccess::~DebugColumnAccess() {
|
||||
#ifdef DBUG_ASSERT_EXISTS
|
||||
dbug_tmp_restore_column_map(&bitmap_, map_);
|
||||
dbug_tmp_restore_column_map(bitmap_, map_);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user