Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aziz-mu committed Aug 9, 2023
1 parent 09af014 commit aa131ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage/store/node_column.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ void NodeColumn::batchLookup(const offset_t* nodeOffsets, size_t size, uint8_t*
void BoolNodeColumn::batchLookup(const offset_t* nodeOffsets, size_t size, uint8_t* result) {
for (auto i = 0u; i < size; ++i) {
auto nodeOffset = nodeOffsets[i];
auto nodeGroupIdx = getNodeGroupIdxFromNodeOffset(nodeOffset);
auto nodeGroupIdx = StorageUtils::getNodeGroupIdxFromNodeOffset(nodeOffset);
auto cursor = PageUtils::getPageElementCursorForPos(nodeOffset, numValuesPerPage);
auto dummyReadOnlyTransaction = Transaction::getDummyReadOnlyTrx();
cursor.pageIdx +=
Expand Down

0 comments on commit aa131ef

Please sign in to comment.