You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Laurent Goujon (JIRA)" <ji...@apache.org> on 2018/04/30 18:45:00 UTC

[jira] [Created] (CALCITE-2290) Type mismatch during flattening

Laurent Goujon created CALCITE-2290:
---------------------------------------

             Summary: Type mismatch during flattening
                 Key: CALCITE-2290
                 URL: https://issues.apache.org/jira/browse/CALCITE-2290
             Project: Calcite
          Issue Type: Bug
          Components: core
            Reporter: Laurent Goujon
            Assignee: Julian Hyde


The following query causes Calcite not being able to perform SQL to Rel conversion:
{code:sql}
select (res1 = 'qwe') res2 from (select (case when (false) then null else 'qwe' end) res1 from (values(1)))
{code}
 
While adding the query to {{SqlToRelConverTest}}, the test generates the following output:
{noformat}
java.lang.AssertionError: 
type mismatch:
ref:
CHAR(3) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary"
input:
CHAR(3) CHARACTER SET "ISO-8859-1" COLLATE "ISO-8859-1$en_US$primary" NOT NULL
	at org.apache.calcite.test.SqlToRelConverterTest.testCaseFlatten(SqlToRelConverterTest.java:2786)
{noformat}



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