(set_op: &SetOperation, indent: usize)
| 241 | } |
| 242 | |
| 243 | fn print_set_operation(set_op: &SetOperation, indent: usize) { |
| 244 | debug!("{}{:?}", get_indent(indent), set_op.operation); |
| 245 | debug!("{}Left Query:", get_indent(indent)); |
| 246 | print_query(&set_op.left, indent + 1); |
| 247 | debug!("{}Right Query:", get_indent(indent)); |
| 248 | print_query(&set_op.right, indent + 1); |
| 249 | } |
| 250 | |
| 251 | fn print_call_statement(call_stmt: &CallStatement, indent: usize) { |
| 252 | debug!( |
no test coverage detected