| 1238 | } |
| 1239 | |
| 1240 | Future<std::shared_ptr<StreamingReader>> StreamingReader::MakeAsync( |
| 1241 | io::IOContext io_context, std::shared_ptr<io::InputStream> input, |
| 1242 | Executor* cpu_executor, const ReadOptions& read_options, |
| 1243 | const ParseOptions& parse_options, const ConvertOptions& convert_options) { |
| 1244 | return MakeStreamingReader(io_context, std::move(input), cpu_executor, read_options, |
| 1245 | parse_options, convert_options); |
| 1246 | } |
| 1247 | |
| 1248 | Future<int64_t> CountRowsAsync(io::IOContext io_context, |
| 1249 | std::shared_ptr<io::InputStream> input, |
nothing calls this directly
no test coverage detected