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