Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Framework/Core/include/Framework/ASoA.h
Original file line number Diff line number Diff line change
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