| 461 | TEST_F(TestParquetFileFormat, SingleThreadExecutor) { |
| 462 | // Reset capacity for io executor |
| 463 | struct PoolResetGuard { |
| 464 | int original_capacity = io::GetIOThreadPoolCapacity(); |
| 465 | ~PoolResetGuard() { DCHECK_OK(io::SetIOThreadPoolCapacity(original_capacity)); } |
| 466 | } guard; |
| 467 | ASSERT_OK(io::SetIOThreadPoolCapacity(1)); |
| 468 | |
| 469 | auto reader = GetRecordBatchReader(schema({field("utf8", utf8())})); |
nothing calls this directly
no test coverage detected