public interface SqlExprToRexConverter
RexNode.| Modifier and Type | Method and Description |
|---|---|
org.apache.calcite.rex.RexNode |
convertToRexNode(String expr)
Converts a SQL expression to a
RexNode expression. |
org.apache.calcite.rex.RexNode[] |
convertToRexNodes(String[] exprs)
Converts an array of SQL expressions to an array of
RexNode expressions. |
org.apache.calcite.rex.RexNode convertToRexNode(String expr)
RexNode expression.expr - a SQL expression which must be quoted and expanded, e.g.
"`my_catalog`.`my_database`.`my_udf`(`f0`) + 1".org.apache.calcite.rex.RexNode[] convertToRexNodes(String[] exprs)
RexNode expressions.exprs - SQL expressions which must be quoted and expanded, e.g.
"`my_catalog`.`my_database`.`my_udf`(`f0`) + 1".Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.