From 8109db02b5d4c0f986af77eb7aa5a442d72a8fd9 Mon Sep 17 00:00:00 2001 From: "Fabio B. Silva" Date: Sat, 6 Apr 2013 13:02:43 -0300 Subject: [PATCH] Document Parenthesis BC break. --- UPGRADE.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/UPGRADE.md b/UPGRADE.md index e80aa55ad..df174de76 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -11,6 +11,23 @@ Before 2.4 the postFlush and onFlush events were only called when there were actually entities that changed. Now these events are called no matter if there are entities in the UoW or changes are found. +## Parenthesis are now considered in arithmetic expression + +Before 2.4 parenthesis are not considered in arithmetic primary expression. +That's conceptually wrong, since it might result in wrong values. For example: + +The DQL: + + SELECT 100/(2*2) FROM MyEntity + +Before 2.4 it generates the SQL: + + SELECT 100/2*2 my_entity + +Now parenthesis are considered, the previous DQL will generate: + + SELECT (100/2*2) my_entity + # Upgrade to 2.3 ## EntityManager#find() not calls EntityRepository#find() anymore