Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
0.12.0
-
None
Description
set hive.auto.convert.join=true; set hive.auto.convert.join.noconditionaltask=true; EXPLAIN SELECT x1.key AS key FROM src x1 JOIN src1 y1 ON (x1.key = y1.key) JOIN src1 y2 ON (x1.value = y2.value) GROUP BY x1.key;
We will get a NPE from MetadataOnlyOptimizer. The reason is that the operator tree of the MapRedTask evaluating two MapJoins is
TS1->MapJoin1->TS2->MapJoin2->...
We should remove the TS2...
Attachments
Attachments
Issue Links
- relates to
-
HIVE-4827 Merge a Map-only task to its child task
- Closed
- links to