| 366 | } |
| 367 | |
| 368 | static expr make_column_ref(std::string name, std::string table) |
| 369 | { |
| 370 | return expr(column_ref_expr(std::move(name), std::move(table))); |
| 371 | } |
| 372 | |
| 373 | static expr make_function_ref(std::string name, std::vector<expr> args) |
| 374 | { |
nothing calls this directly
no test coverage detected