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 2010/01/21 00:24:55 UTC

[jira] Commented: (HIVE-1072) "show table extended like table partition(xxx) " will show the result of the whole table if the partition does not exist

    [ https://issues.apache.org/jira/browse/HIVE-1072?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12803047#action_12803047 ] 

Zheng Shao commented on HIVE-1072:
----------------------------------

If the partition does not exist, we should fail the query.
Can you add a negative test instead?


> "show table extended like table partition(xxx) " will show the result of the whole table if the partition does not exist
> ------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HIVE-1072
>                 URL: https://issues.apache.org/jira/browse/HIVE-1072
>             Project: Hadoop Hive
>          Issue Type: Bug
>            Reporter: Zheng Shao
>            Assignee: He Yongqiang
>         Attachments: hive-1072.patch
>
>
> See the following example, we should output an error for the second command.
> {code}
> hive> show table extended like member_count;
> OK
> tableName:member_count
> owner:null
> location:/user/hive/member_count
> inputformat:org.apache.hadoop.mapred.SequenceFileInputFormat
> outputformat:org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat
> columns:struct columns { string count}
> partitioned:true
> partitionColumns:struct partition_columns { string ds}
> totalNumberFiles:233933
> totalFileSize:32802665
> maxFileSize:257
> minFileSize:140
> lastAccessTime:1264017438860
> lastUpdateTime:1263949909703
> Time taken: 125.104 seconds
> hive> show table extended like member_count partition(ds = '2009-10-11');
> OK
> tableName:member_count
> owner:null
> location:/user/hive/member_count
> inputformat:org.apache.hadoop.mapred.SequenceFileInputFormat
> outputformat:org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat
> columns:struct columns { string count}
> partitioned:true
> partitionColumns:struct partition_columns { string ds}
> totalNumberFiles:233933
> totalFileSize:32802665
> maxFileSize:257
> minFileSize:140
> lastAccessTime:1264017438860
> lastUpdateTime:1263949909703
> Time taken: 24.618 seconds
> hive> show table extended like member_count partition(ds = '2009-12-11');
> OK
> tableName:member_count
> owner:null
> location:/user/hive/member_count
> inputformat:org.apache.hadoop.mapred.SequenceFileInputFormat
> outputformat:org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat
> columns:struct columns { string count}
> partitioned:true
> partitionColumns:struct partition_columns { string ds}
> totalNumberFiles:3495
> totalFileSize:489417
> maxFileSize:257
> minFileSize:140
> lastAccessTime:1262676533852
> lastUpdateTime:1263949909703
> Time taken: 0.549 seconds
> {code}

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