Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.3.0, 2.0.0
-
None
Description
When parsing A OR B OR C, hive converts it into
(C OR B) OR A
instead of turning it into
A OR (B OR C)
GenericUDFOPOr or = new GenericUDFOPOr(); List<ExprNodeDesc> expressions = new ArrayList<ExprNodeDesc>(2); expressions.add(previous); expressions.add(current);
Attachments
Attachments
Issue Links
- is part of
-
HIVE-11315 Compilation performance issues for large queries
- Resolved