Avoid additional brackets in sql if many same operators are chained
-------------------------------------------------------------------

                 Key: TORQUE-176
                 URL: https://issues.apache.org/jira/browse/TORQUE-176
             Project: Torque
          Issue Type: Improvement
            Reporter: Thomas Fox


Currently, if I have
criterion.and(condition1).and(condition2).and(condition3)
the sql output will look like
((condition1 and condition2) and condition3)

Instead the sql output should look like
(condition1 and condition2 and condition3)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to