Uploaded image for project: 'Tajo (Retired)'
  1. Tajo (Retired)
  2. TAJO-567

Expression projection bugs

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • None
    • 0.8.0
    • Planner/Optimizer
    • None

    Description

      This patch fixes two cases of expression projection bugs. Please take a look at two example cases:

      The point of this case is outer join and constant expression.

      select c_custkey, o.o_orderkey, 'val' as val from customer left outer join (select * from orders) o on c_custkey = o.o_orderkey
      

      The point of this case is non-column grouping keys.

      select upper(lower(l_orderkey::text)) as key, count(1) as total from lineitem group by upper(lower(l_orderkey::text)) order by upper(lower(l_orderkey::text)), total;
      

      Attachments

        1. TAJO-567.patch
          18 kB
          Hyunsik Choi

        Activity

          People

            hyunsik Hyunsik Choi
            hyunsik Hyunsik Choi
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: