[ 
https://issues.apache.org/jira/browse/HIVE-27253?focusedWorklogId=856486&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-856486
 ]

ASF GitHub Bot logged work on HIVE-27253:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 12/Apr/23 15:53
            Start Date: 12/Apr/23 15:53
    Worklog Time Spent: 10m 
      Work Description: amansinha100 commented on code in PR #4223:
URL: https://github.com/apache/hive/pull/4223#discussion_r1164333313


##########
ql/src/java/org/apache/hadoop/hive/ql/optimizer/calcite/translator/ASTConverter.java:
##########
@@ -218,6 +218,13 @@ private static ASTNode createNullField(RelDataType 
fieldType) {
       return mapCallNode.node();
     }
 
+    if (fieldType.getSqlTypeName() == SqlTypeName.ARRAY) {

Review Comment:
   Ah, missed that.  Can we add  q tests for struct and map as well ?





Issue Time Tracking
-------------------

    Worklog Id:     (was: 856486)
    Time Spent: 1h 10m  (was: 1h)

> Support array type when query does not produce any rows
> -------------------------------------------------------
>
>                 Key: HIVE-27253
>                 URL: https://issues.apache.org/jira/browse/HIVE-27253
>             Project: Hive
>          Issue Type: Improvement
>          Components: CBO
>            Reporter: Krisztian Kasa
>            Assignee: Krisztian Kasa
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> {code}
> CREATE TABLE T1 (c1 int, c2 array<int>);
> CREATE TABLE T2 AS SELECT * FROM T1 LIMIT 0;
> describe formatted t2;
> {code}
> The new {{t2}} table schema should be
> {code}
> POSTHOOK: Input: default@t2
> # col_name                    data_type               comment             
> c1                    int                                         
> c2                    array<int>                                  
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to