(self, context, ticket)
| 163 | ) |
| 164 | |
| 165 | def do_get(self, context, ticket): |
| 166 | # Return a fresh table, so that Flight is the only one keeping a |
| 167 | # reference. |
| 168 | table = self.table_factories[ticket.ticket]() |
| 169 | return flight.RecordBatchStream(table, options=self.options) |
| 170 | |
| 171 | |
| 172 | class MetadataFlightServer(FlightServerBase): |
nothing calls this directly
no test coverage detected