| 152 | } |
| 153 | |
| 154 | std::shared_ptr<Schema> ExampleLargeSchema() { |
| 155 | std::vector<std::shared_ptr<arrow::Field>> fields; |
| 156 | for (int i = 0; i < 128; i++) { |
| 157 | const auto field_name = "f" + std::to_string(i); |
| 158 | fields.push_back(arrow::field(field_name, arrow::float64())); |
| 159 | } |
| 160 | return arrow::schema(fields); |
| 161 | } |
| 162 | |
| 163 | std::vector<FlightInfo> ExampleFlightInfo() { |
| 164 | Location location1 = *Location::ForGrpcTcp("foo1.bar.com", 12345); |
no test coverage detected