Hyunsik Choi created TAJO-146:
---------------------------------

             Summary: Complex expressions in group-by clause should be supported
                 Key: TAJO-146
                 URL: https://issues.apache.org/jira/browse/TAJO-146
             Project: Tajo
          Issue Type: Improvement
          Components: physical operator, planner/optimizer
            Reporter: Hyunsik Choi
             Fix For: 0.2-incubating


Complex expressions in group-by clause should be supported.
{code}
FROM
   table1
GROUP BY 
  col1,
  CASE upper(col2) 
      WHEN 'ABC' THEN 
          col2 
      ELSE 'XXX') 
  END,  
  col3, 
  trim(appindex), ...
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to