(body: sql_ast::SetExpr)
| 626 | } |
| 627 | |
| 628 | fn default_query(body: sql_ast::SetExpr) -> sql_ast::Query { |
| 629 | sql_ast::Query { |
| 630 | with: None, |
| 631 | body: Box::new(body), |
| 632 | order_by: None, |
| 633 | limit_clause: None, |
| 634 | fetch: None, |
| 635 | locks: Vec::new(), |
| 636 | for_clause: None, |
| 637 | settings: None, |
| 638 | format_clause: None, |
| 639 | pipe_operators: Vec::new(), |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | fn default_select() -> Select { |
| 644 | Select { |
no outgoing calls
no test coverage detected