| 1218 | // Factory functions |
| 1219 | |
| 1220 | Result<std::shared_ptr<TableReader>> TableReader::Make( |
| 1221 | io::IOContext io_context, std::shared_ptr<io::InputStream> input, |
| 1222 | const ReadOptions& read_options, const ParseOptions& parse_options, |
| 1223 | const ConvertOptions& convert_options) { |
| 1224 | return MakeTableReader(io_context.pool(), io_context, std::move(input), read_options, |
| 1225 | parse_options, convert_options); |
| 1226 | } |
| 1227 | |
| 1228 | Result<std::shared_ptr<StreamingReader>> StreamingReader::Make( |
| 1229 | io::IOContext io_context, std::shared_ptr<io::InputStream> input, |
nothing calls this directly
no test coverage detected