Skip to content

Commit

Permalink
fix to allow iteratorAt on filtered tables (#5159)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrosseo committed Jan 14, 2021
1 parent 08e681e commit 5d36430
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Framework/Core/include/Framework/ASoA.h
Expand Up @@ -1127,6 +1127,10 @@ class Table
return t;
}

protected:
/// Offset of the table within a larger table.
uint64_t mOffset;

private:
template <typename T>
arrow::ChunkedArray* lookupColumn()
Expand All @@ -1149,8 +1153,6 @@ class Table
unfiltered_iterator mBegin;
/// Cached end iterator for this table.
RowViewSentinel mEnd;
/// Offset of the table within a larger table.
uint64_t mOffset;
};

template <typename T>
Expand Down

0 comments on commit 5d36430

Please sign in to comment.