| 133 | } |
| 134 | |
| 135 | std::shared_ptr<Schema> ExampleFloatSchema() { |
| 136 | auto f0 = field("f0", float16()); |
| 137 | auto f1 = field("f1", float32()); |
| 138 | auto f2 = field("f2", float64()); |
| 139 | return ::arrow::schema({f0, f1, f2}); |
| 140 | } |
| 141 | |
| 142 | std::shared_ptr<Schema> ExampleStringSchema() { |
| 143 | auto f0 = field("f0", utf8()); |
no test coverage detected