You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Xurenhe (JIRA)" <ji...@apache.org> on 2019/07/22 13:20:00 UTC

[jira] [Created] (CALCITE-3207) Bug of 'JoinRelNode Convert SqlStatement'

Xurenhe created CALCITE-3207:
--------------------------------

             Summary: Bug of 'JoinRelNode Convert SqlStatement'
                 Key: CALCITE-3207
                 URL: https://issues.apache.org/jira/browse/CALCITE-3207
             Project: Calcite
          Issue Type: Bug
          Components: core
            Reporter: Xurenhe


Hi all
I have a problem when using calcite, which is 'relnode convert sql statement'

example:
```
Input relNode: 
LogicalProject(name=[$1], score=[$4])
 LogicalJoin(condition=[AND(=($0, $3), LIKE($0, 'lucy'))], joinType=[left])
 LogicalTableScan(table=[[db0, user_table]])
 LogicalTableScan(table=[[db0, score_table]])


Expect output sql statement: 
select name, score
from user_table
left join on score_table
and name like 'lucy'

```
this relNode cannot convert sql statement.

I try to debug it, `org.apache.calcite.rel.rel2sql.SqlImplementor#convertConditionToSqlNode` may forgot to handle this case, which sqlKind is SqlKind.LIKE.

If it is a bug, I am willing to fix it.

Thanks.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)