From 5d36430624c1d6c276cbdaabeb888a48c44204d6 Mon Sep 17 00:00:00 2001 From: jgrosseo Date: Thu, 14 Jan 2021 13:10:29 +0100 Subject: [PATCH] fix to allow iteratorAt on filtered tables (#5159) --- 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