You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Zheng Shao (JIRA)" <ji...@apache.org> on 2009/09/26 02:51:16 UTC

[jira] Assigned: (HIVE-857) Transform should produce objects in the same type as specified at runtime

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

Zheng Shao reassigned HIVE-857:
-------------------------------

    Assignee: Zheng Shao

> Transform should produce objects in the same type as specified at runtime
> -------------------------------------------------------------------------
>
>                 Key: HIVE-857
>                 URL: https://issues.apache.org/jira/browse/HIVE-857
>             Project: Hadoop Hive
>          Issue Type: Bug
>    Affects Versions: 0.4.0, 0.4.1
>            Reporter: Zheng Shao
>            Assignee: Zheng Shao
>         Attachments: HIVE-857.1.patch
>
>
> The following code fails at runtime, because the "clicked" field produced by "transform" is actually of type String at runtime, instead of boolean.
> {code}
> INSERT OVERWRITE TABLE feature_index
> SELECT
>  temp.feature,
>  temp.ad_id,
>  sum(if(temp.clicked, 1, 0)) / cast(count(temp.clicked) as DOUBLE) as clicked_percent
> FROM (
>  SELECT concat('ua:', trim(lower(ua.feature))) as feature, ua.ad_id, ua.clicked
>  FROM (
>   MAP raw_logs.user_agent, raw_logs.ad_id, raw_logs.clicked
>   USING 'my.py' as (feature STRING, ad_id STRING, clicked BOOLEAN)
>   FROM raw_logs
>  ) ua
> ) temp
> GROUP BY temp.feature, temp.ad_id;
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.