We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 337a7fc commit 8069cf6Copy full SHA for 8069cf6
Framework/Core/src/IndexBuilderHelpers.cxx
@@ -159,6 +159,10 @@ bool IndexColumnBuilder::findSingle(int idx)
159
}
160
161
162
+ if (mPosition < mSourceSize && valueAt(mPosition) < idx) {
163
+ ++mPosition;
164
+ }
165
+
166
return (mPosition < mSourceSize && valueAt(mPosition) == idx);
167
168
@@ -176,6 +180,10 @@ bool IndexColumnBuilder::findSlice(int idx)
176
180
177
181
178
182
183
+ if (mValuePos < mValuesArrow->length() && mValuesArrow->Value(mValuePos) <= idx) {
184
185
186
179
187
return (mValuePos < mValuesArrow->length() && mValuesArrow->Value(mValuePos) == idx);
188
189
0 commit comments