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

Ambiguous column reference error on query

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 0.13.0
    • 0.14.0
    • None
    • None

    Description

      CREATE TABLE agg1 
        ( 
           col0 INT, 
           col1 STRING, 
           col2 DOUBLE 
        ); 
      
      explain SELECT single_use_subq11.a1 AS a1, 
             single_use_subq11.a2 AS a2 
      FROM   (SELECT Sum(agg1.col2) AS a1 
              FROM   agg1 
              GROUP  BY agg1.col0) single_use_subq12 
             JOIN (SELECT alias.a2 AS a0, 
                          alias.a1 AS a1, 
                          alias.a1 AS a2 
                   FROM   (SELECT agg1.col1 AS a0, 
                                  '42'      AS a1, 
                                  agg1.col0 AS a2 
                           FROM   agg1 
                           UNION ALL 
                           SELECT agg1.col1 AS a0, 
                                  '41'      AS a1, 
                                  agg1.col0 AS a2 
                           FROM   agg1) alias 
                   GROUP  BY alias.a2, 
                             alias.a1) single_use_subq11 
               ON ( single_use_subq11.a0 = single_use_subq11.a0 );
      

      Gets the following error:
      FAILED: SemanticException [Error 10007]: Ambiguous column reference a2
      Looks like this query had been working in 0.12 but starting failing with this error in 0.13

      Attachments

        1. HIVE-7733.1.patch.txt
          1 kB
          Navis Ryu
        2. HIVE-7733.2.patch.txt
          16 kB
          Navis Ryu
        3. HIVE-7733.3.patch.txt
          21 kB
          Navis Ryu
        4. HIVE-7733.4.patch.txt
          24 kB
          Navis Ryu
        5. HIVE-7733.5.patch.txt
          34 kB
          Navis Ryu
        6. HIVE-7733.6.patch.txt
          37 kB
          Navis Ryu
        7. HIVE-7733.7.patch.txt
          37 kB
          Navis Ryu

        Issue Links

          Activity

            People

              navis Navis Ryu
              jdere Jason Dere
              Votes:
              0 Vote for this issue
              Watchers:
              6 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: