You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ke...@apache.org on 2012/11/07 21:06:20 UTC

svn commit: r1406783 - /hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java

Author: kevinwilfong
Date: Wed Nov  7 20:06:20 2012
New Revision: 1406783

URL: http://svn.apache.org/viewvc?rev=1406783&view=rev
Log:
HIVE-3686. Fix compile errors introduced by the interaction of HIVE-1362 and HIVE-3524. (Shreepadma Venugopalan via kevinwilfong)

Modified:
    hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java

Modified: hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java?rev=1406783&r1=1406782&r2=1406783&view=diff
==============================================================================
--- hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java (original)
+++ hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java Wed Nov  7 20:06:20 2012
@@ -3104,7 +3104,7 @@ public class HiveMetaStore extends Thrif
       try {
         statsObj = getMS().getTableColumnStatistics(dbName, tableName, colName);
       } finally {
-        endFunction("get_column_statistics_by_table: ", statsObj != null);
+        endFunction("get_column_statistics_by_table: ", statsObj != null, null);
       }
       return statsObj;
     }
@@ -3126,7 +3126,7 @@ public class HiveMetaStore extends Thrif
         statsObj = getMS().getPartitionColumnStatistics(dbName, tableName, convertedPartName,
                                                             partVals, colName);
       } finally {
-        endFunction("get_column_statistics_by_partition: ", statsObj != null);
+        endFunction("get_column_statistics_by_partition: ", statsObj != null, null);
       }
       return statsObj;
    }
@@ -3165,7 +3165,7 @@ public class HiveMetaStore extends Thrif
         ret = getMS().updateTableColumnStatistics(colStats);
         return ret;
       } finally {
-        endFunction("write_column_statistics: ", ret != false);
+        endFunction("write_column_statistics: ", ret != false, null);
       }
     }
 
@@ -3211,7 +3211,7 @@ public class HiveMetaStore extends Thrif
         ret = getMS().updatePartitionColumnStatistics(colStats, partVals);
         return ret;
       } finally {
-        endFunction("write_partition_column_statistics: ", ret != false);
+        endFunction("write_partition_column_statistics: ", ret != false, null);
       }
     }
 
@@ -3234,7 +3234,7 @@ public class HiveMetaStore extends Thrif
         ret = getMS().deletePartitionColumnStatistics(dbName, tableName,
                                                       convertedPartName, partVals, colName);
       } finally {
-        endFunction("delete_column_statistics_by_partition: ", ret != false);
+        endFunction("delete_column_statistics_by_partition: ", ret != false, null);
       }
       return ret;
     }
@@ -3256,7 +3256,7 @@ public class HiveMetaStore extends Thrif
       try {
         ret = getMS().deleteTableColumnStatistics(dbName, tableName, colName);
       } finally {
-        endFunction("delete_column_statistics_by_table: ", ret != false);
+        endFunction("delete_column_statistics_by_table: ", ret != false, null);
       }
       return ret;
    }