Details
Description
Currently it is not allowed to nest AND and OR conditions in themselves. However, this comes in handy if you try to do a dynamic query rewriting, where you want to add some more conditions without knowing the original query before.
The fix is trivial, just allow to add AND in AND. The same needs to be done for OR. Patch will follow in a second...
This can lead to unpredictable situations inside QueryBuilder.
Maybe we can add a "merge" function to Expr\Composite, I'm not sure.
I need to actually test it on every driver to make sure if it doesn't break anything. It was not originally designed to hold same instances. If you pay attention:
Is the same as:
Can't you make a check internally and use addMultiple?
In the meantime, I can make tests to check if it doesn't break anything else.