You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by jc...@apache.org on 2018/02/04 22:07:31 UTC

[04/16] hive git commit: HIVE-18546: Remove unnecessary code introduced in HIVE-14498 (Jesus Camacho Rodriguez, reviewed by Ashutosh Chauhan)

http://git-wip-us.apache.org/repos/asf/hive/blob/0a328f03/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore-remote
----------------------------------------------------------------------
diff --git a/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore-remote b/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore-remote
index a8fcea6..9b2aaff 100755
--- a/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore-remote
+++ b/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore-remote
@@ -176,8 +176,6 @@ if len(sys.argv) <= 1 or sys.argv[1] == '--help':
   print('  CompactionResponse compact2(CompactionRequest rqst)')
   print('  ShowCompactResponse show_compact(ShowCompactRequest rqst)')
   print('  void add_dynamic_partitions(AddDynamicPartitions rqst)')
-  print('   get_last_completed_transaction_for_tables( db_names,  table_names, TxnsSnapshot txns_snapshot)')
-  print('  BasicTxnInfo get_last_completed_transaction_for_table(string db_name, string table_name, TxnsSnapshot txns_snapshot)')
   print('  NotificationEventResponse get_next_notification(NotificationEventRequest rqst)')
   print('  CurrentNotificationEventId get_current_notificationEventId()')
   print('  NotificationEventsCountResponse get_notification_events_count(NotificationEventsCountRequest rqst)')
@@ -1188,18 +1186,6 @@ elif cmd == 'add_dynamic_partitions':
     sys.exit(1)
   pp.pprint(client.add_dynamic_partitions(eval(args[0]),))
 
-elif cmd == 'get_last_completed_transaction_for_tables':
-  if len(args) != 3:
-    print('get_last_completed_transaction_for_tables requires 3 args')
-    sys.exit(1)
-  pp.pprint(client.get_last_completed_transaction_for_tables(eval(args[0]),eval(args[1]),eval(args[2]),))
-
-elif cmd == 'get_last_completed_transaction_for_table':
-  if len(args) != 3:
-    print('get_last_completed_transaction_for_table requires 3 args')
-    sys.exit(1)
-  pp.pprint(client.get_last_completed_transaction_for_table(args[0],args[1],eval(args[2]),))
-
 elif cmd == 'get_next_notification':
   if len(args) != 1:
     print('get_next_notification requires 1 args')