From 499d5b605d7fa75fe93c6751316216b7ece546a2 Mon Sep 17 00:00:00 2001 From: Jan Fiete Grosse-Oetringhaus Date: Tue, 12 Jan 2021 15:44:15 +0100 Subject: [PATCH] fix to allow iteratorAt on filtered tables --- Framework/Core/include/Framework/ASoA.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Framework/Core/include/Framework/ASoA.h b/Framework/Core/include/Framework/ASoA.h index 42193623aa93d..ec776aa31c271 100644 --- a/Framework/Core/include/Framework/ASoA.h +++ b/Framework/Core/include/Framework/ASoA.h @@ -1127,6 +1127,10 @@ class Table return t; } + protected: + /// Offset of the table within a larger table. + uint64_t mOffset; + private: template arrow::ChunkedArray* lookupColumn() @@ -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