We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 215dc72 + b6025e8 commit e0e0415Copy full SHA for e0e0415
expr.go
@@ -195,11 +195,7 @@ func subSortPriority(e ExprNode, isLeft bool) bool {
195
leftChanged := subSortPriority(e.LeftOperand(), true)
196
rightChanged := subSortPriority(e.RightOperand(), false)
197
if getPriority(e) > getPriority(e.LeftOperand()) {
198
- printf("before:\n")
199
- printExprNode(e)
200
leftOperandToParent(e, isLeft)
201
- printf("after:\n")
202
- printExprNode(e.Parent())
203
return true
204
}
205
return leftChanged || rightChanged
0 commit comments