()
| 130 | |
| 131 | |
| 132 | def multiple_column_table(): |
| 133 | return pa.Table.from_arrays([pa.array(['foo', 'bar', 'baz', 'qux']), |
| 134 | pa.array([1, 2, 3, 4])], |
| 135 | names=['a', 'b']) |
| 136 | |
| 137 | |
| 138 | class ConstantFlightServer(FlightServerBase): |
no test coverage detected