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

[jira] [Updated] (CALCITE-2319) Druid Expressions - Output Type of Boolean expressions should be set to LONG.

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

Nishant Bangarwa updated CALCITE-2319:
--------------------------------------
    Summary: Druid Expressions - Output Type of Boolean expressions should be set to LONG.  (was: Druid Expressions - Output Type of Boolean expressions should be set to FLOAT.)

> Druid Expressions - Output Type of Boolean expressions should be set to LONG.
> -----------------------------------------------------------------------------
>
>                 Key: CALCITE-2319
>                 URL: https://issues.apache.org/jira/browse/CALCITE-2319
>             Project: Calcite
>          Issue Type: Bug
>            Reporter: Nishant Bangarwa
>            Assignee: Nishant Bangarwa
>            Priority: Major
>
> Sample Query - 
> {code} 
> SELECT \"product_id\" > 1000 as pid_category, COUNT(\"store_sales\") FROM FOODMART_TABLE GROUP BY \"product_id\" > 1000";
> {code}
> For the above query output type of virtual column is set to string whereas it should be set to float as druid expression return type is float. 
> {code}
> "{"queryType":"groupBy","dataSource":"foodmart","granularity":"all","dimensions":[{"type":"default","dimension":"vc","outputName":"vc","outputType":"STRING"}],"virtualColumns":[{"type":"expression","name":"vc","expression":"(CAST(\"product_id\", 'LONG') > 1000)","outputType":"FLOAT"}],"limitSpec":{"type":"default"},"aggregations":[{"type":"filtered","filter":{"type":"not","field":{"type":"selector","dimension":"store_sales","value":null}},"aggregator":{"type":"count","name":"EXPR$1","fieldName":"store_sales"}}],"intervals":["1900-01-09T00:00:00.000Z/2992-01-10T00:00:00.000Z"]}"
> {code} 



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