| 317 | } |
| 318 | |
| 319 | void SchemaORCWriteReadTest(const std::shared_ptr<Schema>& schema, int64_t size, |
| 320 | int64_t min_num_chunks, int64_t max_num_chunks, |
| 321 | double null_probability, |
| 322 | int64_t max_size = kDefaultSmallMemStreamSize) { |
| 323 | const std::shared_ptr<Table> table = |
| 324 | GenerateRandomTable(schema, size, min_num_chunks, max_num_chunks, null_probability); |
| 325 | AssertTableWriteReadEqual(table, table, max_size); |
| 326 | } |
| 327 | |
| 328 | std::unique_ptr<liborc::Writer> CreateWriter(uint64_t stripe_size, |
| 329 | const liborc::Type& type, |
no test coverage detected