[[arrow::export]]
| 199 | |
| 200 | // [[arrow::export]] |
| 201 | std::shared_ptr<arrow::Table> csv___TableReader__Read( |
| 202 | const std::shared_ptr<arrow::csv::TableReader>& table_reader) { |
| 203 | auto result = RunWithCapturedRIfPossible<std::shared_ptr<arrow::Table>>( |
| 204 | [&]() { return table_reader->Read(); }); |
| 205 | return ValueOrStop(result); |
| 206 | } |
| 207 | |
| 208 | // [[arrow::export]] |
| 209 | std::string TimestampParser__kind(const std::shared_ptr<arrow::TimestampParser>& parser) { |
no test coverage detected