mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 23:44:01 +01:00
ircd::db: Align column cache allocations to block size.
This commit is contained in:
parent
026cce95b7
commit
27fcfb3175
1 changed files with 1 additions and 1 deletions
|
@ -2006,7 +2006,7 @@ ircd::db::database::column::column(database &d,
|
|||
,allocator
|
||||
{
|
||||
#ifdef IRCD_DB_HAS_ALLOCATOR
|
||||
std::make_shared<struct database::allocator>(this->d, this, database::allocator::cache_arena)
|
||||
std::make_shared<struct database::allocator>(this->d, this, database::allocator::cache_arena, descriptor.block_size)
|
||||
#endif
|
||||
}
|
||||
,handle
|
||||
|
|
Loading…
Reference in a new issue