You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ha...@apache.org on 2014/03/05 01:20:57 UTC

svn commit: r1574266 [4/23] - in /hive/trunk: common/src/java/org/apache/hadoop/hive/conf/ itests/hive-unit/src/test/java/org/apache/hadoop/hive/metastore/ metastore/ metastore/if/ metastore/scripts/upgrade/derby/ metastore/scripts/upgrade/mysql/ metas...

Modified: hive/trunk/metastore/src/gen/thrift/gen-cpp/ThriftHiveMetastore_server.skeleton.cpp
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/src/gen/thrift/gen-cpp/ThriftHiveMetastore_server.skeleton.cpp?rev=1574266&r1=1574265&r2=1574266&view=diff
==============================================================================
--- hive/trunk/metastore/src/gen/thrift/gen-cpp/ThriftHiveMetastore_server.skeleton.cpp (original)
+++ hive/trunk/metastore/src/gen/thrift/gen-cpp/ThriftHiveMetastore_server.skeleton.cpp Wed Mar  5 00:20:53 2014
@@ -482,6 +482,66 @@ class ThriftHiveMetastoreHandler : virtu
     printf("cancel_delegation_token\n");
   }
 
+  void get_open_txns(GetOpenTxnsResponse& _return) {
+    // Your implementation goes here
+    printf("get_open_txns\n");
+  }
+
+  void get_open_txns_info(GetOpenTxnsInfoResponse& _return) {
+    // Your implementation goes here
+    printf("get_open_txns_info\n");
+  }
+
+  void open_txns(OpenTxnsResponse& _return, const OpenTxnRequest& rqst) {
+    // Your implementation goes here
+    printf("open_txns\n");
+  }
+
+  void abort_txn(const AbortTxnRequest& rqst) {
+    // Your implementation goes here
+    printf("abort_txn\n");
+  }
+
+  void commit_txn(const CommitTxnRequest& rqst) {
+    // Your implementation goes here
+    printf("commit_txn\n");
+  }
+
+  void lock(LockResponse& _return, const LockRequest& rqst) {
+    // Your implementation goes here
+    printf("lock\n");
+  }
+
+  void check_lock(LockResponse& _return, const CheckLockRequest& rqst) {
+    // Your implementation goes here
+    printf("check_lock\n");
+  }
+
+  void unlock(const UnlockRequest& rqst) {
+    // Your implementation goes here
+    printf("unlock\n");
+  }
+
+  void show_locks(ShowLocksResponse& _return, const ShowLocksRequest& rqst) {
+    // Your implementation goes here
+    printf("show_locks\n");
+  }
+
+  void heartbeat(const HeartbeatRequest& ids) {
+    // Your implementation goes here
+    printf("heartbeat\n");
+  }
+
+  void compact(const CompactionRequest& rqst) {
+    // Your implementation goes here
+    printf("compact\n");
+  }
+
+  void show_compact(ShowCompactResponse& _return, const ShowCompactRequest& rqst) {
+    // Your implementation goes here
+    printf("show_compact\n");
+  }
+
 };
 
 int main(int argc, char **argv) {