Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-2120

auto convert map join may miss good candidates

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 0.8.0
    • Query Processor
    • None
    • Reviewed

    Description

      In case in a join, there is a subquery which does a simple select, the auto convert map join may miss a good candidate at run time. The plan generated is correct, but the selection at runtime has a bug.

      For example:
      set hive.smalltable.filesize=1000;
      create table src_one as select * from src where key=100;
      select count(1)
      from
      (
      select * from src
      ) subq
      join
      src_small on src.key = subq.key;

      The table src_small can be a small table. This is in the plan, but at runtime it gets filtered out.

      Attachments

        1. HIVE-2120.1.patch
          0.8 kB
          He Yongqiang

        Activity

          People

            he yongqiang He Yongqiang
            he yongqiang He Yongqiang
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: