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

Typecast bug in Join operator

Log workAgile BoardRank to TopRank to BottomBulk Copy AttachmentsBulk Move AttachmentsVotersWatch issueWatchersCreate sub-taskConvert to sub-taskMoveLinkCloneLabelsUpdate Comment AuthorReplace String in CommentUpdate Comment VisibilityDelete Comments
    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 0.4.0
    • None
    • None
    • Reviewed
    • HIVE-626. Fix Column Pruner column order bug. (Yongqiang He via zshao)

    Description

      There is a type cast error in Join operator. Produced by the following steps:

      create table zshao_foo (foo_id int, foo_name string, foo_a string, foo_b string,
      foo_c string, foo_d string) row format delimited fields terminated by ','
      stored as textfile;
      
      create table zshao_bar (bar_id int, bar_0 int, foo_id int, bar_1 int, bar_name
      string, bar_a string, bar_b string, bar_c string, bar_d string) row format
      delimited fields terminated by ',' stored as textfile;
      
      create table zshao_count (bar_id int, n int) row format delimited fields
      terminated by ',' stored as textfile;
      
      
      Each table has a single row as follows:
      
      zshao_foo:
      1,foo1,a,b,c,d
      
      zshao_bar:
      10,0,1,1,bar10,a,b,c,d
      
      zshao_count:
      10,2
      
      load data local inpath 'zshao_foo' overwrite into table zshao_foo;
      load data local inpath 'zshao_bar' overwrite into table zshao_bar;
      load data local inpath 'zshao_count' overwrite into table zshao_count;
      
      explain extended
      select zshao_foo.foo_name, zshao_bar.bar_name, n from zshao_foo join zshao_bar on zshao_foo.foo_id =
      zshao_bar.foo_id join zshao_count on zshao_count.bar_id = zshao_bar.bar_id;
      

      The case is from David Lerman.

      Attachments

        1. HIVE-626.1.showinfo.patch
          2 kB
          Zheng Shao
        2. HIVE-626.2.showinfo_disable_cp.patch
          4 kB
          Zheng Shao
        3. hive-626-2009-07-13.patch
          928 kB
          He Yongqiang
        4. hive-626-2009-07-13-2.patch
          376 kB
          He Yongqiang

        Issue Links

        Activity

          This comment will be Viewable by All Users Viewable by All Users
          Cancel

          People

            he yongqiang He Yongqiang Assign to me
            zshao Zheng Shao
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Slack

                Issue deployment