| 73 | Compression::type GetCompression() { return GetParam().compression_type; } |
| 74 | |
| 75 | void SetUp() { |
| 76 | internal::Initialize(); |
| 77 | auto fragment_scan_options = std::make_shared<CsvFragmentScanOptions>(); |
| 78 | fragment_scan_options->parse_options.ignore_empty_lines = false; |
| 79 | opts_->fragment_scan_options = fragment_scan_options; |
| 80 | } |
| 81 | |
| 82 | std::unique_ptr<FileSource> GetFileSource(std::string csv) { |
| 83 | if (GetCompression() == Compression::UNCOMPRESSED) { |
nothing calls this directly
no test coverage detected