| 465 | constexpr int kRowsPerTestBatch = 16; |
| 466 | |
| 467 | std::shared_ptr<Schema> ScannerTestSchema() { |
| 468 | return schema({field("row_num", int32()), field("filterable", int16()), |
| 469 | field("nested", struct_({field("x", int32()), field("y", int32())}))}); |
| 470 | } |
| 471 | |
| 472 | std::shared_ptr<RecordBatch> MakeTestBatch(int idx) { |
| 473 | ArrayVector arrays; |
no test coverage detected