You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Victoria Markman (JIRA)" <ji...@apache.org> on 2015/11/03 00:10:27 UTC

[jira] [Commented] (DRILL-4009) Assert in a query with concat function when wrapped in another subquery

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

Victoria Markman commented on DRILL-4009:
-----------------------------------------

And this could be even more generic, I can reproduce the same error with substr function:

{code}
0: jdbc:drill:schema=dfs> select * from ( select substr(b1, 1, 3) from t1 group by substr(b1, 1,3)) as foo;
Error: SYSTEM ERROR: AssertionError: Internal error: Type 'RecordType(ANY $f0)' has no field 'EXPR$0'
[Error Id: 3fd2e14e-5fa0-4971-b7aa-8eebf820b8e5 on atsqa4-133.qa.lab:31010] (state=,code=0)
{code}

> Assert in a query with concat function when wrapped in another subquery
> -----------------------------------------------------------------------
>
>                 Key: DRILL-4009
>                 URL: https://issues.apache.org/jira/browse/DRILL-4009
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Query Planning & Optimization
>    Affects Versions: 1.2.0
>            Reporter: Victoria Markman
>
> {code}
> 0: jdbc:drill:schema=dfs> select * from ( select concat(b1, '***') from t1 group by concat(b1, '***') ) limit 10;
> Error: SYSTEM ERROR: AssertionError: Internal error: Type 'RecordType(ANY $f0)' has no field 'EXPR$0'
> [Error Id: 3366119e-baec-4aa1-b4fe-a58947bba088 on atsqa4-133.qa.lab:31010] (state=,code=0)
> {code}
> Works:
> {code}
> 0: jdbc:drill:schema=dfs> select concat(b1, '***') from t1 group by concat(b1, '***') limit 10;
> +-----------+
> |  EXPR$0   |
> +-----------+
> | ***       |
> | aaaaa***  |
> | bbbbb***  |
> | ccccc***  |
> | eeeee***  |
> | fffff***  |
> | ggggg***  |
> | hhhhh***  |
> | iiiii***  |
> | jjjjj***  |
> +-----------+
> 10 rows selected (0.672 seconds)
> {code}
> Drill version:
> {code}
> #Sat Oct 31 01:10:06 UTC 2015
> git.commit.id.abbrev=e4b94a7
> {code}



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