You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ga...@apache.org on 2015/07/17 22:03:03 UTC

hive git commit: HIVE-11230 IMetaStoreClient getPartition method arguments incorrectly named (Elliot West via gates)

Repository: hive
Updated Branches:
  refs/heads/master 7fe23aa1c -> b0247cffc


HIVE-11230 IMetaStoreClient getPartition method arguments incorrectly named (Elliot West via gates)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/b0247cff
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/b0247cff
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/b0247cff

Branch: refs/heads/master
Commit: b0247cffcd6f16de8923d14580c980bc9a6c0980
Parents: 7fe23aa
Author: Alan Gates <ga...@hortonworks.com>
Authored: Fri Jul 17 13:01:57 2015 -0700
Committer: Alan Gates <ga...@hortonworks.com>
Committed: Fri Jul 17 13:01:57 2015 -0700

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/b0247cff/metastore/src/java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java
----------------------------------------------------------------------
diff --git a/metastore/src/java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java b/metastore/src/java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java
index 147ffcc..9bf4bfb 100644
--- a/metastore/src/java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java
+++ b/metastore/src/java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java
@@ -417,8 +417,8 @@ public interface IMetaStoreClient {
       throws InvalidObjectException, AlreadyExistsException, MetaException, TException;
 
   /**
-   * @param tblName
    * @param dbName
+   * @param tblName
    * @param partVals
    * @return the partition object
    * @throws MetaException
@@ -426,7 +426,7 @@ public interface IMetaStoreClient {
    * @see org.apache.hadoop.hive.metastore.api.ThriftHiveMetastore.Iface#get_partition(java.lang.String,
    *      java.lang.String, java.util.List)
    */
-  Partition getPartition(String tblName, String dbName,
+  Partition getPartition(String dbName, String tblName,
       List<String> partVals) throws NoSuchObjectException, MetaException, TException;
 
   /**