1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

fix(UT): added dummy RM ctor to be used with UTs

This commit is contained in:
drrtuy
2025-04-30 09:21:46 +00:00
parent 246c5775a3
commit d8bef9dc11
4 changed files with 19 additions and 3 deletions

View File

@ -124,7 +124,7 @@ TEST_F(STLPoolAllocatorTest, ResourceManagerIntegration)
using TestType = int8_t;
using Allocator = STLPoolAllocator<TestType>;
joblist::ResourceManager rm(true, nullptr);
joblist::ResourceManager rm;
// To set the memory allowance
rm.setMemory(MemoryAllowance);
Allocator alloc(&rm, 1024, 512);