You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tajo.apache.org by "Hyunsik Choi (JIRA)" <ji...@apache.org> on 2013/10/17 08:40:41 UTC

[jira] [Created] (TAJO-260) Add between predicate

Hyunsik Choi created TAJO-260:
---------------------------------

             Summary: Add between predicate
                 Key: TAJO-260
                 URL: https://issues.apache.org/jira/browse/TAJO-260
             Project: Tajo
          Issue Type: New Feature
          Components: planner/optimizer
            Reporter: Hyunsik Choi
            Assignee: Hyunsik Choi
             Fix For: 0.2-incubating


This patch adds between predicate. It has the grammar as follows:
{code}
between_predicate
  : predicand=row_value_predicand between_predicate_part_2
  ;

between_predicate_part_2
  : (NOT)? BETWEEN (ASYMMETRIC | SYMMETRIC)? begin=row_value_predicand AND end=row_value_predicand
  ;
{code}



--
This message was sent by Atlassian JIRA
(v6.1#6144)