You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Zoltan Haindrich (JIRA)" <ji...@apache.org> on 2019/02/25 12:34:01 UTC

[jira] [Resolved] (CALCITE-2722) SqlImplementor createLeftCall method throws StackOverflowError

     [ https://issues.apache.org/jira/browse/CALCITE-2722?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Zoltan Haindrich resolved CALCITE-2722.
---------------------------------------
       Resolution: Fixed
    Fix Version/s: 1.19.0

fixed in [0e15ae669102ceffec49a6f99ac12106226a9ba9|https://github.com/apache/calcite/commit/0e15ae669102ceffec49a6f99ac12106226a9ba9]. Thank you [~hyuan] for taking care of this!

> SqlImplementor createLeftCall method throws StackOverflowError
> --------------------------------------------------------------
>
>                 Key: CALCITE-2722
>                 URL: https://issues.apache.org/jira/browse/CALCITE-2722
>             Project: Calcite
>          Issue Type: Bug
>          Components: core
>            Reporter: Mykola Zerniuk
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.19.0
>
>          Time Spent: 50m
>  Remaining Estimate: 0h
>
> SqlImplementor _createLeftCall_ method is implemented using recursion. In this case if sql has a lot of AND or OR operators it throws StackOverflowError.
> {code:java}
> Caused by: java.lang.StackOverflowError
> at org.apache.calcite.util.Util.skipLast(Util.java:1940)
> at org.apache.calcite.util.Util.skipLast(Util.java:1935)
> at org.apache.calcite.rel.rel2sql.SqlImplementor$Context.createLeftCall(SqlImplementor.java:763)
> at org.apache.calcite.rel.rel2sql.SqlImplementor$Context.createLeftCall(SqlImplementor.java:765)
> at org.apache.calcite.rel.rel2sql.SqlImplementor$Context.createLeftCall(SqlImplementor.java:765){code}
> Since calcite converts IN list to OR this bug is also reproduces on huge IN list.



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