You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2020/06/09 16:04:00 UTC

[jira] [Work logged] (HIVE-20827) Inconsistent results for empty arrays

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

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

                Author: ASF GitHub Bot
            Created on: 09/Jun/20 16:03
            Start Date: 09/Jun/20 16:03
    Worklog Time Spent: 10m 
      Work Description: github-actions[bot] commented on pull request #480:
URL: https://github.com/apache/hive/pull/480#issuecomment-641144265


   This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
   Feel free to reach out on the dev@hive.apache.org list if the patch is in need of reviews.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


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

            Worklog Id:     (was: 442834)
    Remaining Estimate: 0h
            Time Spent: 10m

> Inconsistent results for empty arrays
> -------------------------------------
>
>                 Key: HIVE-20827
>                 URL: https://issues.apache.org/jira/browse/HIVE-20827
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Teddy Choi
>            Assignee: Teddy Choi
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 4.0.0
>
>         Attachments: HIVE-20827.1.patch
>
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> LazySimpleDeserializeRead parses an empty array wrong. For example, a line ',' in a text file table with a delimiter ',' and schema 'array<int>, array<array<string>>' shows \[null\], \[\[""\]\], instead of \[\], \[\] with MapReduce engine and vectorized execution enabled. LazySimpleDeserializeRead has following code; 
> {code:java}
> switch (complexField.complexCategory) {
> case LIST:
>   {
>     // Allow for empty string, etc.
>     final boolean isNext = (fieldPosition <= complexFieldEnd);
> {code}
> Empty string value read should be only applied to string families, not to other data types. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)