You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Sergey Shelukhin (JIRA)" <ji...@apache.org> on 2018/01/25 01:42:00 UTC

[jira] [Created] (HIVE-18534) null partition values may be output as the magic string in query results

Sergey Shelukhin created HIVE-18534:
---------------------------------------

             Summary: null partition values may be output as the magic string in query results
                 Key: HIVE-18534
                 URL: https://issues.apache.org/jira/browse/HIVE-18534
             Project: Hive
          Issue Type: Bug
            Reporter: Sergey Shelukhin


Found while looking at smth else
{noformat}
create table if not exists tbll (key string)  partitioned by (value string);
insert overwrite table tbll partition(value) select 'k1' as key, cast(null as string) as value from src limit 2
select * from tbll
k1    __HIVE_DEFAULT_PARTITION__
k1    __HIVE_DEFAULT_PARTITION__{noformat}



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