bit-reference.patch 565 B

12345678910111213
  1. --- a/cpp/src/generated/parquet_types.cpp (index)
  2. +++ b/cpp/src/generated/parquet_types.cpp (working tree)
  3. @@ -6347,7 +6347,9 @@ uint32_t ColumnIndex::read(::apache::thrift::protocol::TProtocol* iprot) {
  4. uint32_t _i156;
  5. for (_i156 = 0; _i156 < _size152; ++_i156)
  6. {
  7. - xfer += iprot->readBool(this->null_pages[_i156]);
  8. + bool result;
  9. + xfer += iprot->readBool(result);
  10. + this->null_pages[_i156] = result;
  11. }
  12. xfer += iprot->readListEnd();
  13. }