| 2991 | } |
| 2992 | |
| 2993 | std::shared_ptr<Schema> MakeBooleanInt32Int64Schema() { |
| 2994 | auto f0 = field("f0", boolean()); |
| 2995 | auto f1 = field("f1", int32()); |
| 2996 | auto f2 = field("f2", int64()); |
| 2997 | return ::arrow::schema({f0, f1, f2}); |
| 2998 | } |
| 2999 | |
| 3000 | Status MakeBooleanInt32Int64Batch(const int length, std::shared_ptr<RecordBatch>* out) { |
| 3001 | auto schema_ = MakeBooleanInt32Int64Schema(); |
no test coverage detected