| 54 | class ReaderTest : public ::testing::TestWithParam<bool> { |
| 55 | public: |
| 56 | void SetUpReader() { |
| 57 | read_options_.use_threads = GetParam(); |
| 58 | ASSERT_OK_AND_ASSIGN(reader_, TableReader::Make(default_memory_pool(), input_, |
| 59 | read_options_, parse_options_)); |
| 60 | } |
| 61 | |
| 62 | void SetUpReader(std::string_view input) { |
| 63 | ASSERT_OK(MakeStream(input, &input_)); |
nothing calls this directly
no test coverage detected