Bug #78886 evaluation of operators with equal precedence
Submitted: 20 Oct 2015 13:22 Modified: 2 Nov 2015 16:58
Reporter: Umesh Shastry Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Documentation Severity:S3 (Non-critical)
Version:5.6 OS:Any
Assigned to: CPU Architecture:Any

[20 Oct 2015 13:22] Umesh Shastry
Description:
While handling Bug #78879, it was not clear from the operator precedence documentation page on how MySQL server evaluates operators with equal precedence in an expression i.e  whether MySQL server evaluates operators with equal precedence from left to right within an expression or evaluates operators with equal precedence from right to left within an expression

 https://dev.mysql.com/doc/refman/5.6/en/operator-precedence.html

How to repeat:
See Bug #78879

Suggested fix:
Please explain in relevant section of the document.
[2 Nov 2015 16:58] Paul DuBois
Thank you for your bug report. This issue has been addressed in the documentation. The updated documentation will appear on our website shortly.

For operators that occur at the same precedence level within an
expression, evaluation proceeds left to right, with the exception
that assignments evaluate right to left.