You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ay...@apache.org on 2023/01/07 00:39:36 UTC

[hive] branch master updated: HIVE-26065: Fix incorrect metric active_calls_alter_partitions and active_calls_alter_partition (#3919). (DongWei, reviewed by Ayush Saxena)

This is an automated email from the ASF dual-hosted git repository.

ayushsaxena pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new 6866cb475a0 HIVE-26065: Fix incorrect metric active_calls_alter_partitions and active_calls_alter_partition (#3919). (DongWei, reviewed by Ayush Saxena)
6866cb475a0 is described below

commit 6866cb475a0903ac9f2421a15ea9febf4f21b882
Author: Tuan <ji...@hotmail.com>
AuthorDate: Sat Jan 7 08:39:28 2023 +0800

    HIVE-26065: Fix incorrect metric active_calls_alter_partitions and active_calls_alter_partition (#3919). (DongWei, reviewed by Ayush Saxena)
---
 .../src/main/java/org/apache/hadoop/hive/metastore/HMSHandler.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/HMSHandler.java b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/HMSHandler.java
index d23e9d1629c..222ff14f061 100644
--- a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/HMSHandler.java
+++ b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/HMSHandler.java
@@ -5987,7 +5987,7 @@ public class HMSHandler extends FacebookBase implements IHMSHandler {
           .defaultMetaException();
     } finally {
       tableLock.unlock();
-      endFunction("alter_partition", oldParts != null, ex, tbl_name);
+      endFunction("alter_partitions", oldParts != null, ex, tbl_name);
     }
   }