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