| 318 | } |
| 319 | |
| 320 | std::unique_ptr<ColumnChunkMetaData> GetOnlyColumnChunk( |
| 321 | const FileMetaData& metadata, ColumnOrder::type expected_order) { |
| 322 | EXPECT_EQ(expected_order, metadata.schema()->Column(0)->column_order().get_order()); |
| 323 | return metadata.RowGroup(0)->ColumnChunk(0); |
| 324 | } |
| 325 | |
| 326 | void AssertColumnChunkHasNoMinMax(const FileMetaData& metadata, |
| 327 | ColumnOrder::type expected_order) { |
no test coverage detected