You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@calcite.apache.org by "Chunwei Lei (JIRA)" <ji...@apache.org> on 2019/04/14 12:57:00 UTC

[jira] [Created] (CALCITE-2998) RexCopier should support all rex types

Chunwei Lei created CALCITE-2998:
------------------------------------

             Summary: RexCopier should support all rex types
                 Key: CALCITE-2998
                 URL: https://issues.apache.org/jira/browse/CALCITE-2998
             Project: Calcite
          Issue Type: Improvement
            Reporter: Chunwei Lei
            Assignee: Chunwei Lei


RexCopier don't support some rex types such as RexOver, RexDynamicParam and so on as follows.

//RexCopier.java

public RexNode visitOver(RexOver over) {
{color:#FF0000}    throw new UnsupportedOperationException();{color}
 }

public RexWindow visitWindow(RexWindow window) {
{color:#FF0000}    throw new UnsupportedOperationException();{color}
 }

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)