Public interface function
| 344 | |
| 345 | // Public interface function |
| 346 | arrow::Result<Expression> ParseToExpression( |
| 347 | const std::string &sql_expr, const std::shared_ptr<arrow::Schema> &schema) { |
| 348 | Parser parser(sql_expr, schema); |
| 349 | return parser.Parse(); |
| 350 | } |
| 351 | |
| 352 | } // namespace zvec |