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