Returns true iff `a + b + c = a + (b + c)`
(&self)
| 1049 | |
| 1050 | /// Returns true iff `a + b + c = a + (b + c)` |
| 1051 | fn right_associative(&self) -> bool { |
| 1052 | matches!(self, Associativity::Right | Associativity::Both) |
| 1053 | } |
| 1054 | } |
| 1055 | |
| 1056 | trait SQLExpression { |