(&self, op: &BinaryOperator)
| 1059 | } |
| 1060 | |
| 1061 | fn sql_op_precedence(&self, op: &BinaryOperator) -> u8 { |
| 1062 | match self.sql_to_op(op) { |
| 1063 | Ok(op) => op.precedence(), |
| 1064 | Err(_) => 0, |
| 1065 | } |
| 1066 | } |
| 1067 | |
| 1068 | fn sql_to_op(&self, op: &BinaryOperator) -> Result<Operator> { |
| 1069 | match op { |
no test coverage detected