You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@phoenix.apache.org by "James Taylor (JIRA)" <ji...@apache.org> on 2016/01/13 17:52:39 UTC

[jira] [Commented] (PHOENIX-2593) Reference to array element in call to TO_DATE causes NoSuchMethodException

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

James Taylor commented on PHOENIX-2593:
---------------------------------------

[~ram_krish] - would you have some cycles to fix this?

> Reference to array element in call to TO_DATE causes NoSuchMethodException
> --------------------------------------------------------------------------
>
>                 Key: PHOENIX-2593
>                 URL: https://issues.apache.org/jira/browse/PHOENIX-2593
>             Project: Phoenix
>          Issue Type: Bug
>            Reporter: James Taylor
>             Fix For: 4.7.0
>
>
> Here's how to repro:
> {code}
> 0: jdbc:phoenix:localhost> create table a1 (k varchar primary key, v varchar[]);
> No rows affected (2.722 seconds)
> 0: jdbc:phoenix:localhost> select to_date(v[1]) from a1;
> java.lang.RuntimeException: java.lang.NoSuchMethodException: org.apache.phoenix.expression.function.ToDateFunction.<init>(java.util.List)
> 	at org.apache.phoenix.expression.function.ScalarFunction.clone(ScalarFunction.java:44)
> 	at org.apache.phoenix.expression.visitor.CloneExpressionVisitor.visitLeave(CloneExpressionVisitor.java:106)
> 	at org.apache.phoenix.expression.visitor.ReplaceArrayFunctionExpressionVisitor.visitLeave(ReplaceArrayFunctionExpressionVisitor.java:44)
> 	at org.apache.phoenix.expression.visitor.ReplaceArrayFunctionExpressionVisitor.visitLeave(ReplaceArrayFunctionExpressionVisitor.java:26)
> 	at org.apache.phoenix.expression.function.ScalarFunction.accept(ScalarFunction.java:58)
> 	at org.apache.phoenix.compile.ProjectionCompiler.compile(ProjectionCompiler.java:462)
> 	at org.apache.phoenix.compile.QueryCompiler.compileSingleFlatQuery(QueryCompiler.java:545)
> 	at org.apache.phoenix.compile.QueryCompiler.compileSingleQuery(QueryCompiler.java:495)
> 	at org.apache.phoenix.compile.QueryCompiler.compileSelect(QueryCompiler.java:201)
> 	at org.apache.phoenix.compile.QueryCompiler.compile(QueryCompiler.java:158)
> 	at org.apache.phoenix.jdbc.PhoenixStatement$ExecutableSelectStatement.compilePlan(PhoenixStatement.java:399)
> 	at org.apache.phoenix.jdbc.PhoenixStatement$ExecutableSelectStatement.compilePlan(PhoenixStatement.java:373)
> 	at org.apache.phoenix.jdbc.PhoenixStatement$1.call(PhoenixStatement.java:266)
> 	at org.apache.phoenix.jdbc.PhoenixStatement$1.call(PhoenixStatement.java:261)
> 	at org.apache.phoenix.call.CallRunner.run(CallRunner.java:53)
> 	at org.apache.phoenix.jdbc.PhoenixStatement.executeQuery(PhoenixStatement.java:260)
> 	at org.apache.phoenix.jdbc.PhoenixStatement.execute(PhoenixStatement.java:1349)
> 	at sqlline.Commands.execute(Commands.java:822)
> 	at sqlline.Commands.sql(Commands.java:732)
> 	at sqlline.SqlLine.dispatch(SqlLine.java:808)
> 	at sqlline.SqlLine.begin(SqlLine.java:681)
> 	at sqlline.SqlLine.start(SqlLine.java:398)
> 	at sqlline.SqlLine.main(SqlLine.java:292)
> Caused by: java.lang.NoSuchMethodException: org.apache.phoenix.expression.function.ToDateFunction.<init>(java.util.List)
> 	at java.lang.Class.getConstructor0(Class.java:2892)
> 	at java.lang.Class.getConstructor(Class.java:1723)
> 	at org.apache.phoenix.expression.function.ScalarFunction.clone(ScalarFunction.java:42)
> 	... 22 more
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)