You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Julian Hyde (Jira)" <ji...@apache.org> on 2019/12/04 20:00:00 UTC

[jira] [Commented] (CALCITE-3563) Convert function operand type to match implementation if necessary in runtime

    [ https://issues.apache.org/jira/browse/CALCITE-3563?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16988164#comment-16988164 ] 

Julian Hyde commented on CALCITE-3563:
--------------------------------------

Enumerable convention implements the {{DECIMAL}} type by working on shifted integers. Therefore the {{mod}} function should be called with a {{long}} argument, not a {{java.math.BigDecimal}}.

> Convert function operand type to match implementation if necessary in runtime
> -----------------------------------------------------------------------------
>
>                 Key: CALCITE-3563
>                 URL: https://issues.apache.org/jira/browse/CALCITE-3563
>             Project: Calcite
>          Issue Type: Sub-task
>          Components: core
>            Reporter: Feng Zhu
>            Assignee: Feng Zhu
>            Priority: Major
>
> Sub-task targets on following issue.
>  
> (1)Validation phase allows a wide range of operand types, but the runtime implementation does not cover all cases.
>  For example, _*SqlFunction(MOD)*_ adopts _*OperandTypes.EXACT_NUMERIC_EXACT_NUMERIC*_.
> {code:java}
> @Test public void test0() {
>  final String sql = "SELECT mod(12.5, cast(1 as bigint))";
>  CalciteAssert.that()
>  .query(sql)
>  .returns("EXPR$0=0.5\n");
>  }{code}
> We will get:
> {code:java}
> java.lang.RuntimeException: while resolving method 'mod[class java.math.BigDecimal, long]' in class class org.apache.calcite.runtime.SqlFunctions
>  at org.apache.calcite.linq4j.tree.Types.lookupMethod(Types.java:323)
>  at org.apache.calcite.linq4j.tree.Expressions.call(Expressions.java:445)
>  at org.apache.calcite.adapter.enumerable.RexImpTable$MethodNameImplementor.implement(RexImpTable.java:2253)
>  at org.apache.calcite.adapter.enumerable.RexImpTable.implementCall(RexImpTable.java:1195){code}
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)