internal RootNodeV(ARTImplV impl) { _impl = impl; _root = IntPtr.Zero; _writable = true; _referenceCount = 1; }
public ArtInMemoryKeyValueDB(IOffHeapAllocator allocator) { _lastCommited = ARTImplV.CreateEmptyRoot(allocator); _lastCommited.Commit(); }
public RootNodeVTests() { _allocator = new LeakDetectorWrapperAllocator(new HGlobalAllocator()); _impl = new ARTImplV(_allocator); }
public CursorTestsBase() { _allocator = new LeakDetectorWrapperAllocator(new HGlobalAllocator()); _root = Is12 ? ARTImpl12.CreateEmptyRoot(_allocator) : ARTImplV.CreateEmptyRoot(_allocator); _cursor = _root.CreateCursor(); }