We currently don’t have consistent semantics for expression like 3/2:
- on, I believe, most databases, this does integer division and evaluates to 1, but
- on MySQL, it evaluates to 1.5, and
- on Oracle, the same, though for different reasons, I guess (Oracle number type).
So I wonder if we should be translating }} to {{div on these dbs. (At the risk of breaking existing queries.) |