From issues-return-159041-archive-asf-public=cust-asf.ponee.io@hive.apache.org Sat Jun 1 07:46:01 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 8B51A18061A for ; Sat, 1 Jun 2019 09:46:01 +0200 (CEST) Received: (qmail 83019 invoked by uid 500); 1 Jun 2019 07:46:01 -0000 Mailing-List: contact issues-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list issues@hive.apache.org Received: (qmail 83010 invoked by uid 99); 1 Jun 2019 07:46:00 -0000 Received: from mailrelay1-us-west.apache.org (HELO mailrelay1-us-west.apache.org) (209.188.14.139) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Jun 2019 07:46:00 +0000 Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 52223E29B6 for ; Sat, 1 Jun 2019 07:46:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 09ECB24599 for ; Sat, 1 Jun 2019 07:46:00 +0000 (UTC) Date: Sat, 1 Jun 2019 07:46:00 +0000 (UTC) From: "Laszlo Pinter (JIRA)" To: issues@hive.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (HIVE-21812) Implement get partition related methods on temporary tables MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HIVE-21812?page=3Dcom.atlassia= n.jira.plugin.system.issuetabpanels:all-tabpanel ] Laszlo Pinter updated HIVE-21812: --------------------------------- Attachment: HIVE-21812.03.patch > Implement get partition related methods on temporary tables > ----------------------------------------------------------- > > Key: HIVE-21812 > URL: https://issues.apache.org/jira/browse/HIVE-21812 > Project: Hive > Issue Type: Sub-task > Affects Versions: 4.0.0 > Reporter: Laszlo Pinter > Assignee: Laszlo Pinter > Priority: Major > Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch, HIVE-21812= .03.patch > > > IMetastoreClient exposes several=C2=A0APIs=C2=A0related to getting partit= ions. The definition of the APIs are: > {code:java} > Partition getPartition(String dbName, String tblName, List partVa= ls); > Partition getPartition(String catName, String dbName, String tblName, Lis= t partVals); > Partition getPartition(String dbName, String tblName, String name); > Partition getPartition(String catName, String dbName, String tblName, Str= ing name); > Partition getPartitionWithAuthInfo(String dbName, String tableName, List<= String> pvals, String userName, List groupNames); > Partition getPartitionWithAuthInfo(String catName, String dbName, String = tableName, List pvals, String userName, List groupNames); > List getPartitionsByNames(String db_name, String tbl_name, Lis= t part_names); > List getPartitionsByNames(String catName, String db_name, Stri= ng tbl_name, List part_names); > Partition getPartitionWithAuthInfo(String dbName, String tableName, List<= String> pvals, String userName, List groupNames); > Partition getPartitionWithAuthInfo(String catName, String dbName, String = tableName, List pvals, String userName, List groupNames); > {code} > In order to support partitions on temporary tables, the majority of these= methods must be implemented in SessionHiveMetastoreClient.=20 -- This message was sent by Atlassian JIRA (v7.6.3#76005)