Ensure clients are configured to allow large messages by default Tests a 32 MiB batch
| 277 | // Ensure clients are configured to allow large messages by default |
| 278 | // Tests a 32 MiB batch |
| 279 | void DataTest::TestDoGetLargeBatch() { |
| 280 | RecordBatchVector expected_batches; |
| 281 | ASSERT_OK(ExampleLargeBatches(&expected_batches)); |
| 282 | Ticket ticket{"ticket-large-batch-1"}; |
| 283 | CheckDoGet(ticket, expected_batches); |
| 284 | } |
| 285 | // Ensure FlightDataStream/RecordBatchStream::Close errors are propagated |
| 286 | void DataTest::TestFlightDataStreamError() { |
| 287 | Ticket ticket{"ticket-stream-error"}; |
nothing calls this directly
no test coverage detected