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')

Reply via email to