You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Laszlo Pinter (Jira)" <ji...@apache.org> on 2019/09/17 14:36:00 UTC

[jira] [Created] (HIVE-22212) implement append partition related methods on temporary tables

Laszlo Pinter created HIVE-22212:
------------------------------------

             Summary: implement append partition related methods on temporary tables
                 Key: HIVE-22212
                 URL: https://issues.apache.org/jira/browse/HIVE-22212
             Project: Hive
          Issue Type: Sub-task
            Reporter: Laszlo Pinter
            Assignee: Laszlo Pinter


The following methods must be implemented in SessionHiveMetastoreClient, in order to support partition append on temporary tables:
{code:java}
  Partition appendPartition(String dbName, String tableName, List<String> partVals)
      throws InvalidObjectException, AlreadyExistsException, MetaException, TException;
  Partition appendPartition(String catName, String dbName, String tableName, List<String> partVals)
      throws InvalidObjectException, AlreadyExistsException, MetaException, TException;
  Partition appendPartition(String dbName, String tableName, String name)
      throws InvalidObjectException, AlreadyExistsException, MetaException, TException;
  Partition appendPartition(String catName, String dbName, String tableName, String name)
      throws InvalidObjectException, AlreadyExistsException, MetaException, TException;
{code}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)