Parse an expression string into SqlExpr.
(text: &str)
| 44 | |
| 45 | /// Parse an expression string into SqlExpr. |
| 46 | fn parse_expr(text: &str) -> nodedb::bridge::expr_eval::SqlExpr { |
| 47 | let (expr, _) = nodedb_query::expr_parse::parse_generated_expr(text).unwrap(); |
| 48 | expr |
| 49 | } |
| 50 | |
| 51 | fn get_doc( |
| 52 | core: &mut nodedb::data::executor::core_loop::CoreLoop, |
nothing calls this directly
no test coverage detected