| 140 | } |
| 141 | |
| 142 | std::shared_ptr<Schema> ExampleStringSchema() { |
| 143 | auto f0 = field("f0", utf8()); |
| 144 | auto f1 = field("f1", binary()); |
| 145 | return ::arrow::schema({f0, f1}); |
| 146 | } |
| 147 | |
| 148 | std::shared_ptr<Schema> ExampleDictSchema() { |
| 149 | std::shared_ptr<RecordBatch> batch; |
no test coverage detected