Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
both classes have the following
if (prev1 == null) { prev1 = t1; prev1 = t2; }
most probably it should be
if (prev1 == null) { prev1 = t1; prev2 = t2; }
Attachments
Attachments
Issue Links
- is part of
-
HIVE-9809 Fix FindBugs found bugs in hive-exec
- Resolved
- links to