Description
at line 160: https://github.com/apache/orc/blob/master/c%2B%2B/src/RLEv1.cc
notNull[i] should be (notNull[position + i]).
for (uint64_t i = 0 ; i < count; ++i) { if (notNull[i]) { data[position + i] = isSigned ? unZigZag(readLong()) : static_cast<int64_t>(readLong()); ++consumed; } }