1
0
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:
Nikita Malyavin
2021-01-08 22:09:26 +10:00
parent bdae8bb6fd
commit c88fcf07d9
3 changed files with 19 additions and 19 deletions

View File

@@ -25,12 +25,12 @@
namespace mrn {
class DebugColumnAccess {
TABLE *table_;
MY_BITMAP *bitmap_;
MY_BITMAP **bitmap_;
#ifdef DBUG_ASSERT_EXISTS
MY_BITMAP *map_;
#endif
public:
DebugColumnAccess(TABLE *table, MY_BITMAP *bitmap);
DebugColumnAccess(TABLE *table, MY_BITMAP **bitmap);
~DebugColumnAccess();
};
}