Ensure the server is configured to allow large messages by default Tests a 32 MiB batch
| 816 | // Ensure the server is configured to allow large messages by default |
| 817 | // Tests a 32 MiB batch |
| 818 | void DoPutTest::TestLargeBatch() { |
| 819 | auto descr = FlightDescriptor::Path({"large-batches"}); |
| 820 | auto schema = ExampleLargeSchema(); |
| 821 | RecordBatchVector batches; |
| 822 | ASSERT_OK(ExampleLargeBatches(&batches)); |
| 823 | CheckDoPut(descr, schema, batches); |
| 824 | } |
| 825 | |
| 826 | void DoPutTest::TestSizeLimit() { |
| 827 | const int64_t size_limit = 4096; |
nothing calls this directly
no test coverage detected