You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Venki Korukanti (JIRA)" <ji...@apache.org> on 2014/05/28 04:50:01 UTC

[jira] [Comment Edited] (DRILL-665) Drill throw NPE or UnsupportedOperationException when case expression contains null value

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

Venki Korukanti edited comment on DRILL-665 at 5/28/14 2:48 AM:
----------------------------------------------------------------

Includes related changes by Tim in DRILL-705 plus the following.

1. Added functions for converting REQUIRED holder into NULLABLE holder where the minorType is same.
2. Update in Optiq->Drill literal conversion. First check if it is a null type, before parsing the literal value. Parsing literal value will cause NPE if the type is NULL.
3. Changed getReturnType of IfExpression to consider the nullable types of THEN and ELSE expressions.
4. Added testcases.


was (Author: vkorukanti):
Includes related changes by Tim in DRILL-705 plus the following.

1. Added functions for converting REQUIRED holder into NULLABLE holder where the minorType is same.
2. Update in Optiq->Drill literal conversion. First check if it null type, before parsing the literal value. Parsing literal valu
3. Changed getReturnType of IfExpression to consider the nullable types of THEN and ELSE expressions.
4. Added testcases.

> Drill throw NPE or UnsupportedOperationException when case expression contains null value
> -----------------------------------------------------------------------------------------
>
>                 Key: DRILL-665
>                 URL: https://issues.apache.org/jira/browse/DRILL-665
>             Project: Apache Drill
>          Issue Type: Bug
>            Reporter: Jinfeng Ni
>            Assignee: Timothy Chen
>         Attachments: DRILL-665-1.patch
>
>
> Hi Tim,
> Per discussion yesterday,  we found Drill will throw NPE or UnsupportedOperationException when case expression contains null value.  (null value is added for the optional 'else' branch).  
> Q1:
> select case when n_nationkey < 100 then 100 end from cp.`tpch/nation.parquet`;
> java.lang.NullPointerException
> 	org.apache.drill.exec.planner.logical.DrillOptiq$RexToDrill.visitLiteral(DrillOptiq.java:330) ~[drill-java-exec-1.0.0-m2-incubating-SNAPSHOT-rebuffed.jar:1.0.0-m2-incubating-SNAPSHOT]
> ......
> Q2.
> select case when n_nationkey < 100 then n_name end from cp.`tpch/nation.parquet`;
> java.lang.UnsupportedOperationException: Unable to convert the value of null and type NULL to a Drill constant expression.
> 	org.apache.drill.exec.planner.logical.DrillOptiq$RexToDrill.visitLiteral(DrillOptiq.java:367) ~[drill-java-exec-1.0.0-m2-incubating-SNAPSHOT-rebuffed.jar:1.0.0-m2-incubating-SNAPSHOT]
> ......
> Our conclusion is Drill need create proper TypedNullConstant in DrillOptiq when the null value is associated with regular SQL type, or resolve to proper SQL typed null constant, in IExpressionTreeMaterializer.visitIfExpression. ( case/if expression requires all the branches return the type of value).



--
This message was sent by Atlassian JIRA
(v6.2#6252)