From 9d4f2aa8c119a72f7ef853560215b8ccac494192 Mon Sep 17 00:00:00 2001 From: dorahorvath Date: Tue, 21 Sep 2021 14:28:20 +0200 Subject: [PATCH 1/5] HBASE-26284 Add HBase Thrift API to get all table names along with whether it is enabled or not --- .../hadoop/hbase/thrift/DemoClient.java | 15 +- .../thrift/ThriftHBaseServiceHandler.java | 15 + .../hbase/thrift/generated/AlreadyExists.java | 2 +- .../hbase/thrift/generated/BatchMutation.java | 2 +- .../thrift/generated/ColumnDescriptor.java | 2 +- .../hadoop/hbase/thrift/generated/Hbase.java | 5686 ++++++++++------- .../hbase/thrift/generated/IOError.java | 2 +- .../thrift/generated/IllegalArgument.java | 2 +- .../hbase/thrift/generated/Mutation.java | 2 +- .../generated/TAccessControlEntity.java | 2 +- .../hbase/thrift/generated/TAppend.java | 2 +- .../hadoop/hbase/thrift/generated/TCell.java | 2 +- .../hbase/thrift/generated/TColumn.java | 2 +- .../hbase/thrift/generated/TIncrement.java | 2 +- .../thrift/generated/TPermissionScope.java | 2 +- .../hbase/thrift/generated/TRegionInfo.java | 2 +- .../hbase/thrift/generated/TRowResult.java | 2 +- .../hadoop/hbase/thrift/generated/TScan.java | 2 +- .../thrift/generated/TThriftServerType.java | 2 +- .../generated/TAccessControlEntity.java | 2 +- .../hbase/thrift2/generated/TAppend.java | 2 +- .../thrift2/generated/TAuthorization.java | 2 +- .../thrift2/generated/TBloomFilterType.java | 2 +- .../thrift2/generated/TCellVisibility.java | 2 +- .../hbase/thrift2/generated/TColumn.java | 2 +- .../generated/TColumnFamilyDescriptor.java | 2 +- .../thrift2/generated/TColumnIncrement.java | 2 +- .../hbase/thrift2/generated/TColumnValue.java | 2 +- .../thrift2/generated/TCompareOperator.java | 2 +- .../generated/TCompressionAlgorithm.java | 2 +- .../hbase/thrift2/generated/TConsistency.java | 2 +- .../thrift2/generated/TDataBlockEncoding.java | 2 +- .../hbase/thrift2/generated/TDelete.java | 2 +- .../hbase/thrift2/generated/TDeleteType.java | 2 +- .../hbase/thrift2/generated/TDurability.java | 2 +- .../thrift2/generated/TFilterByOperator.java | 2 +- .../hadoop/hbase/thrift2/generated/TGet.java | 2 +- .../thrift2/generated/THBaseService.java | 2 +- .../hbase/thrift2/generated/THRegionInfo.java | 2 +- .../thrift2/generated/THRegionLocation.java | 2 +- .../hbase/thrift2/generated/TIOError.java | 2 +- .../thrift2/generated/TIllegalArgument.java | 2 +- .../hbase/thrift2/generated/TIncrement.java | 2 +- .../thrift2/generated/TKeepDeletedCells.java | 2 +- .../thrift2/generated/TLogQueryFilter.java | 2 +- .../hbase/thrift2/generated/TLogType.java | 2 +- .../hbase/thrift2/generated/TMutation.java | 2 +- .../generated/TNamespaceDescriptor.java | 2 +- .../thrift2/generated/TOnlineLogRecord.java | 2 +- .../thrift2/generated/TPermissionScope.java | 2 +- .../hadoop/hbase/thrift2/generated/TPut.java | 2 +- .../hbase/thrift2/generated/TReadType.java | 2 +- .../hbase/thrift2/generated/TResult.java | 2 +- .../thrift2/generated/TRowMutations.java | 2 +- .../hadoop/hbase/thrift2/generated/TScan.java | 2 +- .../hbase/thrift2/generated/TServerName.java | 2 +- .../thrift2/generated/TTableDescriptor.java | 2 +- .../hbase/thrift2/generated/TTableName.java | 2 +- .../thrift2/generated/TThriftServerType.java | 2 +- .../hbase/thrift2/generated/TTimeRange.java | 2 +- .../apache/hadoop/hbase/thrift/Hbase.thrift | 8 + .../hadoop/hbase/thrift/TestThriftServer.java | 30 + test.txt | 965 +++ 63 files changed, 4405 insertions(+), 2428 deletions(-) create mode 100644 test.txt diff --git a/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/DemoClient.java b/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/DemoClient.java index 8bdff58cff8e..e4d9d0ec6945 100644 --- a/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/DemoClient.java +++ b/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/DemoClient.java @@ -124,6 +124,7 @@ private void run() throws Exception { Hbase.Client client = new Hbase.Client(protocol); byte[] t = bytes("demo_table"); + ByteBuffer disabledTable = ByteBuffer.wrap(bytes("disabled_table")); // Scan all tables, look for the demo table and delete it. System.out.println("scanning tables..."); @@ -131,7 +132,7 @@ private void run() throws Exception { for (ByteBuffer name : client.getTableNames()) { System.out.println(" found: " + ClientUtils.utf8(name.array())); - if (ClientUtils.utf8(name.array()).equals(ClientUtils.utf8(t))) { + if (ClientUtils.utf8(name.array()).equals(ClientUtils.utf8(t)) || name.equals(disabledTable)) { if (client.isTableEnabled(name)) { System.out.println(" disabling table: " + ClientUtils.utf8(name.array())); client.disableTable(name); @@ -159,6 +160,7 @@ private void run() throws Exception { try { client.createTable(ByteBuffer.wrap(t), columns); + client.createTable(disabledTable, columns); } catch (AlreadyExists ae) { System.out.println("WARN: " + ae.message); } @@ -171,6 +173,17 @@ private void run() throws Exception { + col2.maxVersions); } + if (client.isTableEnabled(disabledTable)){ + client.disableTable(disabledTable); + } + System.out.println("list tables with enabled statuses : "); + Map statusMap = client.getTableNamesWithIsTableEnabled(); + + for (Map.Entry entry : statusMap.entrySet()) { + System.out.println(" Table: " + ClientUtils.utf8(entry.getKey().array()) + + ", is enabled: " + entry.getValue()); + } + Map dummyAttributes = null; boolean writeToWal = false; diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftHBaseServiceHandler.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftHBaseServiceHandler.java index 9147ea5dba67..37cf8d692665 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftHBaseServiceHandler.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftHBaseServiceHandler.java @@ -28,6 +28,7 @@ import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.Collections; +import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.TreeMap; @@ -203,6 +204,20 @@ public boolean isTableEnabled(ByteBuffer tableName) throws IOError { } } + @Override + public Map getTableNamesWithIsTableEnabled() throws IOError { + try { + HashMap tables = new HashMap<>(); + for (ByteBuffer tableName: this.getTableNames()) { + tables.put(tableName, this.isTableEnabled(tableName)); + } + return tables; + } catch (IOError e) { + LOG.warn(e.getMessage(), e); + throw getIOError(e); + } + } + // ThriftServerRunner.compact should be deprecated and replaced with methods specific to // table and region. @Override diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/AlreadyExists.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/AlreadyExists.java index 612a3ce50083..0e51f9b115de 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/AlreadyExists.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/AlreadyExists.java @@ -11,7 +11,7 @@ * An AlreadyExists exceptions signals that a table with the specified * name already exists */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class AlreadyExists extends org.apache.thrift.TException implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("AlreadyExists"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/BatchMutation.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/BatchMutation.java index e1ec71d12549..2740f747a9e5 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/BatchMutation.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/BatchMutation.java @@ -10,7 +10,7 @@ /** * A BatchMutation object is used to apply a number of Mutations to a single row. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class BatchMutation implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("BatchMutation"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/ColumnDescriptor.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/ColumnDescriptor.java index 58cdc9db506c..99824164b63f 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/ColumnDescriptor.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/ColumnDescriptor.java @@ -12,7 +12,7 @@ * such as the number of versions, compression settings, etc. It is * used as input when creating a table or adding a column. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class ColumnDescriptor implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("ColumnDescriptor"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java index 52b63806bff5..568acf4299dc 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class Hbase { public interface Iface { @@ -45,6 +45,13 @@ public interface Iface { */ public java.util.List getTableNames() throws IOError, org.apache.thrift.TException; + /** + * List all the userspace tables and their enabled or disabled flags. + * + * @return list of tables with is enabled flags + */ + public java.util.Map getTableNamesWithIsTableEnabled() throws IOError, org.apache.thrift.TException; + /** * List all the column families assoicated with a table. * @@ -657,6 +664,8 @@ public interface AsyncIface { public void getTableNames(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; + public void getTableNamesWithIsTableEnabled(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; + public void getColumnDescriptors(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; public void getTableRegions(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; @@ -906,6 +915,31 @@ public java.util.List recv_getTableNames() throws IOError, throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getTableNames failed: unknown result"); } + public java.util.Map getTableNamesWithIsTableEnabled() throws IOError, org.apache.thrift.TException + { + send_getTableNamesWithIsTableEnabled(); + return recv_getTableNamesWithIsTableEnabled(); + } + + public void send_getTableNamesWithIsTableEnabled() throws org.apache.thrift.TException + { + getTableNamesWithIsTableEnabled_args args = new getTableNamesWithIsTableEnabled_args(); + sendBase("getTableNamesWithIsTableEnabled", args); + } + + public java.util.Map recv_getTableNamesWithIsTableEnabled() throws IOError, org.apache.thrift.TException + { + getTableNamesWithIsTableEnabled_result result = new getTableNamesWithIsTableEnabled_result(); + receiveBase(result, "getTableNamesWithIsTableEnabled"); + if (result.isSetSuccess()) { + return result.success; + } + if (result.io != null) { + throw result.io; + } + throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getTableNamesWithIsTableEnabled failed: unknown result"); + } + public java.util.Map getColumnDescriptors(java.nio.ByteBuffer tableName) throws IOError, org.apache.thrift.TException { send_getColumnDescriptors(tableName); @@ -2282,6 +2316,35 @@ public java.util.List getResult() throws IOError, org.apach } } + public void getTableNamesWithIsTableEnabled(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + checkReady(); + getTableNamesWithIsTableEnabled_call method_call = new getTableNamesWithIsTableEnabled_call(resultHandler, this, ___protocolFactory, ___transport); + this.___currentMethod = method_call; + ___manager.call(method_call); + } + + public static class getTableNamesWithIsTableEnabled_call extends org.apache.thrift.async.TAsyncMethodCall> { + public getTableNamesWithIsTableEnabled_call(org.apache.thrift.async.AsyncMethodCallback> resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException { + super(client, protocolFactory, transport, resultHandler, false); + } + + public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { + prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getTableNamesWithIsTableEnabled", org.apache.thrift.protocol.TMessageType.CALL, 0)); + getTableNamesWithIsTableEnabled_args args = new getTableNamesWithIsTableEnabled_args(); + args.write(prot); + prot.writeMessageEnd(); + } + + public java.util.Map getResult() throws IOError, org.apache.thrift.TException { + if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { + throw new java.lang.IllegalStateException("Method call not finished!"); + } + org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); + org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + return (new Client(prot)).recv_getTableNamesWithIsTableEnabled(); + } + } + public void getColumnDescriptors(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getColumnDescriptors_call method_call = new getColumnDescriptors_call(tableName, resultHandler, this, ___protocolFactory, ___transport); @@ -3912,6 +3975,7 @@ protected Processor(I iface, java.util.Map extends org.apache.thrift.ProcessFunction { + public getTableNamesWithIsTableEnabled() { + super("getTableNamesWithIsTableEnabled"); + } + + public getTableNamesWithIsTableEnabled_args getEmptyArgsInstance() { + return new getTableNamesWithIsTableEnabled_args(); + } + + protected boolean isOneway() { + return false; + } + + @Override + protected boolean rethrowUnhandledExceptions() { + return false; + } + + public getTableNamesWithIsTableEnabled_result getResult(I iface, getTableNamesWithIsTableEnabled_args args) throws org.apache.thrift.TException { + getTableNamesWithIsTableEnabled_result result = new getTableNamesWithIsTableEnabled_result(); + try { + result.success = iface.getTableNamesWithIsTableEnabled(); + } catch (IOError io) { + result.io = io; + } + return result; + } + } + public static class getColumnDescriptors extends org.apache.thrift.ProcessFunction { public getColumnDescriptors() { super("getColumnDescriptors"); @@ -5393,6 +5486,7 @@ protected AsyncProcessor(I iface, java.util.Map extends org.apache.thrift.AsyncProcessFunction> { - public getColumnDescriptors() { - super("getColumnDescriptors"); + public static class getTableNamesWithIsTableEnabled extends org.apache.thrift.AsyncProcessFunction> { + public getTableNamesWithIsTableEnabled() { + super("getTableNamesWithIsTableEnabled"); } - public getColumnDescriptors_args getEmptyArgsInstance() { - return new getColumnDescriptors_args(); + public getTableNamesWithIsTableEnabled_args getEmptyArgsInstance() { + return new getTableNamesWithIsTableEnabled_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.Map o) { - getColumnDescriptors_result result = new getColumnDescriptors_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.Map o) { + getTableNamesWithIsTableEnabled_result result = new getTableNamesWithIsTableEnabled_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -5853,7 +5947,7 @@ public void onComplete(java.util.Map o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getColumnDescriptors_result result = new getColumnDescriptors_result(); + getTableNamesWithIsTableEnabled_result result = new getTableNamesWithIsTableEnabled_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -5885,25 +5979,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getColumnDescriptors_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getColumnDescriptors(args.tableName,resultHandler); + public void start(I iface, getTableNamesWithIsTableEnabled_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getTableNamesWithIsTableEnabled(resultHandler); } } - public static class getTableRegions extends org.apache.thrift.AsyncProcessFunction> { - public getTableRegions() { - super("getTableRegions"); + public static class getColumnDescriptors extends org.apache.thrift.AsyncProcessFunction> { + public getColumnDescriptors() { + super("getColumnDescriptors"); } - public getTableRegions_args getEmptyArgsInstance() { - return new getTableRegions_args(); + public getColumnDescriptors_args getEmptyArgsInstance() { + return new getColumnDescriptors_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getTableRegions_result result = new getTableRegions_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.Map o) { + getColumnDescriptors_result result = new getColumnDescriptors_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -5918,7 +6012,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getTableRegions_result result = new getTableRegions_result(); + getColumnDescriptors_result result = new getColumnDescriptors_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -5950,25 +6044,26 @@ protected boolean isOneway() { return false; } - public void start(I iface, getTableRegions_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getTableRegions(args.tableName,resultHandler); + public void start(I iface, getColumnDescriptors_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getColumnDescriptors(args.tableName,resultHandler); } } - public static class createTable extends org.apache.thrift.AsyncProcessFunction { - public createTable() { - super("createTable"); + public static class getTableRegions extends org.apache.thrift.AsyncProcessFunction> { + public getTableRegions() { + super("getTableRegions"); } - public createTable_args getEmptyArgsInstance() { - return new createTable_args(); + public getTableRegions_args getEmptyArgsInstance() { + return new getTableRegions_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - createTable_result result = new createTable_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getTableRegions_result result = new getTableRegions_result(); + result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -5982,19 +6077,11 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - createTable_result result = new createTable_result(); + getTableRegions_result result = new getTableRegions_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; - } else if (e instanceof AlreadyExists) { - result.exist = (AlreadyExists) e; - result.setExistIsSet(true); - msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -6022,25 +6109,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, createTable_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.createTable(args.tableName, args.columnFamilies,resultHandler); + public void start(I iface, getTableRegions_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getTableRegions(args.tableName,resultHandler); } } - public static class deleteTable extends org.apache.thrift.AsyncProcessFunction { - public deleteTable() { - super("deleteTable"); + public static class createTable extends org.apache.thrift.AsyncProcessFunction { + public createTable() { + super("createTable"); } - public deleteTable_args getEmptyArgsInstance() { - return new deleteTable_args(); + public createTable_args getEmptyArgsInstance() { + return new createTable_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - deleteTable_result result = new deleteTable_result(); + createTable_result result = new createTable_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6054,140 +6141,18 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - deleteTable_result result = new deleteTable_result(); + createTable_result result = new createTable_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof org.apache.thrift.transport.TTransportException) { - _LOGGER.error("TTransportException inside handler", e); - fb.close(); - return; - } else if (e instanceof org.apache.thrift.TApplicationException) { - _LOGGER.error("TApplicationException inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = (org.apache.thrift.TApplicationException)e; - } else { - _LOGGER.error("Exception inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); - } - try { - fcall.sendResponse(fb,msg,msgType,seqid); - } catch (java.lang.Exception ex) { - _LOGGER.error("Exception writing to internal frame buffer", ex); - fb.close(); - } - } - }; - } - - protected boolean isOneway() { - return false; - } - - public void start(I iface, deleteTable_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteTable(args.tableName,resultHandler); - } - } - - public static class get extends org.apache.thrift.AsyncProcessFunction> { - public get() { - super("get"); - } - - public get_args getEmptyArgsInstance() { - return new get_args(); - } - - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { - final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - get_result result = new get_result(); - result.success = o; - try { - fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); - } catch (org.apache.thrift.transport.TTransportException e) { - _LOGGER.error("TTransportException writing to internal frame buffer", e); - fb.close(); - } catch (java.lang.Exception e) { - _LOGGER.error("Exception writing to internal frame buffer", e); - onError(e); - } - } - public void onError(java.lang.Exception e) { - byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; - org.apache.thrift.TSerializable msg; - get_result result = new get_result(); - if (e instanceof IOError) { - result.io = (IOError) e; - result.setIoIsSet(true); + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); msg = result; - } else if (e instanceof org.apache.thrift.transport.TTransportException) { - _LOGGER.error("TTransportException inside handler", e); - fb.close(); - return; - } else if (e instanceof org.apache.thrift.TApplicationException) { - _LOGGER.error("TApplicationException inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = (org.apache.thrift.TApplicationException)e; - } else { - _LOGGER.error("Exception inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); - } - try { - fcall.sendResponse(fb,msg,msgType,seqid); - } catch (java.lang.Exception ex) { - _LOGGER.error("Exception writing to internal frame buffer", ex); - fb.close(); - } - } - }; - } - - protected boolean isOneway() { - return false; - } - - public void start(I iface, get_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.get(args.tableName, args.row, args.column, args.attributes,resultHandler); - } - } - - public static class getVer extends org.apache.thrift.AsyncProcessFunction> { - public getVer() { - super("getVer"); - } - - public getVer_args getEmptyArgsInstance() { - return new getVer_args(); - } - - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { - final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getVer_result result = new getVer_result(); - result.success = o; - try { - fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); - } catch (org.apache.thrift.transport.TTransportException e) { - _LOGGER.error("TTransportException writing to internal frame buffer", e); - fb.close(); - } catch (java.lang.Exception e) { - _LOGGER.error("Exception writing to internal frame buffer", e); - onError(e); - } - } - public void onError(java.lang.Exception e) { - byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; - org.apache.thrift.TSerializable msg; - getVer_result result = new getVer_result(); - if (e instanceof IOError) { - result.io = (IOError) e; - result.setIoIsSet(true); + } else if (e instanceof AlreadyExists) { + result.exist = (AlreadyExists) e; + result.setExistIsSet(true); msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); @@ -6216,25 +6181,89 @@ protected boolean isOneway() { return false; } - public void start(I iface, getVer_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getVer(args.tableName, args.row, args.column, args.numVersions, args.attributes,resultHandler); + public void start(I iface, createTable_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.createTable(args.tableName, args.columnFamilies,resultHandler); } } - public static class getVerTs extends org.apache.thrift.AsyncProcessFunction> { - public getVerTs() { - super("getVerTs"); + public static class deleteTable extends org.apache.thrift.AsyncProcessFunction { + public deleteTable() { + super("deleteTable"); } - public getVerTs_args getEmptyArgsInstance() { - return new getVerTs_args(); + public deleteTable_args getEmptyArgsInstance() { + return new deleteTable_args(); + } + + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + deleteTable_result result = new deleteTable_result(); + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + deleteTable_result result = new deleteTable_result(); + if (e instanceof IOError) { + result.io = (IOError) e; + result.setIoIsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; + } + + protected boolean isOneway() { + return false; + } + + public void start(I iface, deleteTable_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteTable(args.tableName,resultHandler); + } + } + + public static class get extends org.apache.thrift.AsyncProcessFunction> { + public get() { + super("get"); + } + + public get_args getEmptyArgsInstance() { + return new get_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getVerTs_result result = new getVerTs_result(); + get_result result = new get_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6249,7 +6278,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getVerTs_result result = new getVerTs_result(); + get_result result = new get_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6281,25 +6310,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getVerTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getVerTs(args.tableName, args.row, args.column, args.timestamp, args.numVersions, args.attributes,resultHandler); + public void start(I iface, get_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.get(args.tableName, args.row, args.column, args.attributes,resultHandler); } } - public static class getRow extends org.apache.thrift.AsyncProcessFunction> { - public getRow() { - super("getRow"); + public static class getVer extends org.apache.thrift.AsyncProcessFunction> { + public getVer() { + super("getVer"); } - public getRow_args getEmptyArgsInstance() { - return new getRow_args(); + public getVer_args getEmptyArgsInstance() { + return new getVer_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getRow_result result = new getRow_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getVer_result result = new getVer_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6314,7 +6343,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRow_result result = new getRow_result(); + getVer_result result = new getVer_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6346,25 +6375,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRow_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRow(args.tableName, args.row, args.attributes,resultHandler); + public void start(I iface, getVer_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getVer(args.tableName, args.row, args.column, args.numVersions, args.attributes,resultHandler); } } - public static class getRowWithColumns extends org.apache.thrift.AsyncProcessFunction> { - public getRowWithColumns() { - super("getRowWithColumns"); + public static class getVerTs extends org.apache.thrift.AsyncProcessFunction> { + public getVerTs() { + super("getVerTs"); } - public getRowWithColumns_args getEmptyArgsInstance() { - return new getRowWithColumns_args(); + public getVerTs_args getEmptyArgsInstance() { + return new getVerTs_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getRowWithColumns_result result = new getRowWithColumns_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getVerTs_result result = new getVerTs_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6379,7 +6408,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowWithColumns_result result = new getRowWithColumns_result(); + getVerTs_result result = new getVerTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6411,25 +6440,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowWithColumns_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowWithColumns(args.tableName, args.row, args.columns, args.attributes,resultHandler); + public void start(I iface, getVerTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getVerTs(args.tableName, args.row, args.column, args.timestamp, args.numVersions, args.attributes,resultHandler); } } - public static class getRowTs extends org.apache.thrift.AsyncProcessFunction> { - public getRowTs() { - super("getRowTs"); + public static class getRow extends org.apache.thrift.AsyncProcessFunction> { + public getRow() { + super("getRow"); } - public getRowTs_args getEmptyArgsInstance() { - return new getRowTs_args(); + public getRow_args getEmptyArgsInstance() { + return new getRow_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowTs_result result = new getRowTs_result(); + getRow_result result = new getRow_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6444,7 +6473,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowTs_result result = new getRowTs_result(); + getRow_result result = new getRow_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6476,25 +6505,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowTs(args.tableName, args.row, args.timestamp, args.attributes,resultHandler); + public void start(I iface, getRow_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRow(args.tableName, args.row, args.attributes,resultHandler); } } - public static class getRowWithColumnsTs extends org.apache.thrift.AsyncProcessFunction> { - public getRowWithColumnsTs() { - super("getRowWithColumnsTs"); + public static class getRowWithColumns extends org.apache.thrift.AsyncProcessFunction> { + public getRowWithColumns() { + super("getRowWithColumns"); } - public getRowWithColumnsTs_args getEmptyArgsInstance() { - return new getRowWithColumnsTs_args(); + public getRowWithColumns_args getEmptyArgsInstance() { + return new getRowWithColumns_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowWithColumnsTs_result result = new getRowWithColumnsTs_result(); + getRowWithColumns_result result = new getRowWithColumns_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6509,7 +6538,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowWithColumnsTs_result result = new getRowWithColumnsTs_result(); + getRowWithColumns_result result = new getRowWithColumns_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6541,25 +6570,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowWithColumnsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowWithColumnsTs(args.tableName, args.row, args.columns, args.timestamp, args.attributes,resultHandler); + public void start(I iface, getRowWithColumns_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowWithColumns(args.tableName, args.row, args.columns, args.attributes,resultHandler); } } - public static class getRows extends org.apache.thrift.AsyncProcessFunction> { - public getRows() { - super("getRows"); + public static class getRowTs extends org.apache.thrift.AsyncProcessFunction> { + public getRowTs() { + super("getRowTs"); } - public getRows_args getEmptyArgsInstance() { - return new getRows_args(); + public getRowTs_args getEmptyArgsInstance() { + return new getRowTs_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRows_result result = new getRows_result(); + getRowTs_result result = new getRowTs_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6574,7 +6603,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRows_result result = new getRows_result(); + getRowTs_result result = new getRowTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6606,25 +6635,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRows_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRows(args.tableName, args.rows, args.attributes,resultHandler); + public void start(I iface, getRowTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowTs(args.tableName, args.row, args.timestamp, args.attributes,resultHandler); } } - public static class getRowsWithColumns extends org.apache.thrift.AsyncProcessFunction> { - public getRowsWithColumns() { - super("getRowsWithColumns"); + public static class getRowWithColumnsTs extends org.apache.thrift.AsyncProcessFunction> { + public getRowWithColumnsTs() { + super("getRowWithColumnsTs"); } - public getRowsWithColumns_args getEmptyArgsInstance() { - return new getRowsWithColumns_args(); + public getRowWithColumnsTs_args getEmptyArgsInstance() { + return new getRowWithColumnsTs_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowsWithColumns_result result = new getRowsWithColumns_result(); + getRowWithColumnsTs_result result = new getRowWithColumnsTs_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6639,7 +6668,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowsWithColumns_result result = new getRowsWithColumns_result(); + getRowWithColumnsTs_result result = new getRowWithColumnsTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6671,25 +6700,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowsWithColumns_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowsWithColumns(args.tableName, args.rows, args.columns, args.attributes,resultHandler); + public void start(I iface, getRowWithColumnsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowWithColumnsTs(args.tableName, args.row, args.columns, args.timestamp, args.attributes,resultHandler); } } - public static class getRowsTs extends org.apache.thrift.AsyncProcessFunction> { - public getRowsTs() { - super("getRowsTs"); + public static class getRows extends org.apache.thrift.AsyncProcessFunction> { + public getRows() { + super("getRows"); } - public getRowsTs_args getEmptyArgsInstance() { - return new getRowsTs_args(); + public getRows_args getEmptyArgsInstance() { + return new getRows_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowsTs_result result = new getRowsTs_result(); + getRows_result result = new getRows_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6704,7 +6733,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowsTs_result result = new getRowsTs_result(); + getRows_result result = new getRows_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6736,25 +6765,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowsTs(args.tableName, args.rows, args.timestamp, args.attributes,resultHandler); + public void start(I iface, getRows_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRows(args.tableName, args.rows, args.attributes,resultHandler); } } - public static class getRowsWithColumnsTs extends org.apache.thrift.AsyncProcessFunction> { - public getRowsWithColumnsTs() { - super("getRowsWithColumnsTs"); + public static class getRowsWithColumns extends org.apache.thrift.AsyncProcessFunction> { + public getRowsWithColumns() { + super("getRowsWithColumns"); } - public getRowsWithColumnsTs_args getEmptyArgsInstance() { - return new getRowsWithColumnsTs_args(); + public getRowsWithColumns_args getEmptyArgsInstance() { + return new getRowsWithColumns_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowsWithColumnsTs_result result = new getRowsWithColumnsTs_result(); + getRowsWithColumns_result result = new getRowsWithColumns_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6769,7 +6798,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowsWithColumnsTs_result result = new getRowsWithColumnsTs_result(); + getRowsWithColumns_result result = new getRowsWithColumns_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6801,25 +6830,26 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowsWithColumnsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowsWithColumnsTs(args.tableName, args.rows, args.columns, args.timestamp, args.attributes,resultHandler); + public void start(I iface, getRowsWithColumns_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowsWithColumns(args.tableName, args.rows, args.columns, args.attributes,resultHandler); } } - public static class mutateRow extends org.apache.thrift.AsyncProcessFunction { - public mutateRow() { - super("mutateRow"); + public static class getRowsTs extends org.apache.thrift.AsyncProcessFunction> { + public getRowsTs() { + super("getRowsTs"); } - public mutateRow_args getEmptyArgsInstance() { - return new mutateRow_args(); + public getRowsTs_args getEmptyArgsInstance() { + return new getRowsTs_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - mutateRow_result result = new mutateRow_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getRowsTs_result result = new getRowsTs_result(); + result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6833,15 +6863,11 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - mutateRow_result result = new mutateRow_result(); + getRowsTs_result result = new getRowsTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -6869,25 +6895,26 @@ protected boolean isOneway() { return false; } - public void start(I iface, mutateRow_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.mutateRow(args.tableName, args.row, args.mutations, args.attributes,resultHandler); + public void start(I iface, getRowsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowsTs(args.tableName, args.rows, args.timestamp, args.attributes,resultHandler); } } - public static class mutateRowTs extends org.apache.thrift.AsyncProcessFunction { - public mutateRowTs() { - super("mutateRowTs"); + public static class getRowsWithColumnsTs extends org.apache.thrift.AsyncProcessFunction> { + public getRowsWithColumnsTs() { + super("getRowsWithColumnsTs"); } - public mutateRowTs_args getEmptyArgsInstance() { - return new mutateRowTs_args(); + public getRowsWithColumnsTs_args getEmptyArgsInstance() { + return new getRowsWithColumnsTs_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - mutateRowTs_result result = new mutateRowTs_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getRowsWithColumnsTs_result result = new getRowsWithColumnsTs_result(); + result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6901,15 +6928,11 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - mutateRowTs_result result = new mutateRowTs_result(); + getRowsWithColumnsTs_result result = new getRowsWithColumnsTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -6937,25 +6960,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, mutateRowTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.mutateRowTs(args.tableName, args.row, args.mutations, args.timestamp, args.attributes,resultHandler); + public void start(I iface, getRowsWithColumnsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowsWithColumnsTs(args.tableName, args.rows, args.columns, args.timestamp, args.attributes,resultHandler); } } - public static class mutateRows extends org.apache.thrift.AsyncProcessFunction { - public mutateRows() { - super("mutateRows"); + public static class mutateRow extends org.apache.thrift.AsyncProcessFunction { + public mutateRow() { + super("mutateRow"); } - public mutateRows_args getEmptyArgsInstance() { - return new mutateRows_args(); + public mutateRow_args getEmptyArgsInstance() { + return new mutateRow_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - mutateRows_result result = new mutateRows_result(); + mutateRow_result result = new mutateRow_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6969,7 +6992,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - mutateRows_result result = new mutateRows_result(); + mutateRow_result result = new mutateRow_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7005,25 +7028,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, mutateRows_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.mutateRows(args.tableName, args.rowBatches, args.attributes,resultHandler); + public void start(I iface, mutateRow_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.mutateRow(args.tableName, args.row, args.mutations, args.attributes,resultHandler); } } - public static class mutateRowsTs extends org.apache.thrift.AsyncProcessFunction { - public mutateRowsTs() { - super("mutateRowsTs"); + public static class mutateRowTs extends org.apache.thrift.AsyncProcessFunction { + public mutateRowTs() { + super("mutateRowTs"); } - public mutateRowsTs_args getEmptyArgsInstance() { - return new mutateRowsTs_args(); + public mutateRowTs_args getEmptyArgsInstance() { + return new mutateRowTs_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - mutateRowsTs_result result = new mutateRowsTs_result(); + mutateRowTs_result result = new mutateRowTs_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7037,7 +7060,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - mutateRowsTs_result result = new mutateRowsTs_result(); + mutateRowTs_result result = new mutateRowTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7073,27 +7096,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, mutateRowsTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.mutateRowsTs(args.tableName, args.rowBatches, args.timestamp, args.attributes,resultHandler); + public void start(I iface, mutateRowTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.mutateRowTs(args.tableName, args.row, args.mutations, args.timestamp, args.attributes,resultHandler); } } - public static class atomicIncrement extends org.apache.thrift.AsyncProcessFunction { - public atomicIncrement() { - super("atomicIncrement"); + public static class mutateRows extends org.apache.thrift.AsyncProcessFunction { + public mutateRows() { + super("mutateRows"); } - public atomicIncrement_args getEmptyArgsInstance() { - return new atomicIncrement_args(); + public mutateRows_args getEmptyArgsInstance() { + return new mutateRows_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(java.lang.Long o) { - atomicIncrement_result result = new atomicIncrement_result(); - result.success = o; - result.setSuccessIsSet(true); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + mutateRows_result result = new mutateRows_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7107,7 +7128,7 @@ public void onComplete(java.lang.Long o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - atomicIncrement_result result = new atomicIncrement_result(); + mutateRows_result result = new mutateRows_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7143,25 +7164,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, atomicIncrement_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.atomicIncrement(args.tableName, args.row, args.column, args.value,resultHandler); + public void start(I iface, mutateRows_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.mutateRows(args.tableName, args.rowBatches, args.attributes,resultHandler); } } - public static class deleteAll extends org.apache.thrift.AsyncProcessFunction { - public deleteAll() { - super("deleteAll"); + public static class mutateRowsTs extends org.apache.thrift.AsyncProcessFunction { + public mutateRowsTs() { + super("mutateRowsTs"); } - public deleteAll_args getEmptyArgsInstance() { - return new deleteAll_args(); + public mutateRowsTs_args getEmptyArgsInstance() { + return new mutateRowsTs_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - deleteAll_result result = new deleteAll_result(); + mutateRowsTs_result result = new mutateRowsTs_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7175,74 +7196,14 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - deleteAll_result result = new deleteAll_result(); + mutateRowsTs_result result = new mutateRowsTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof org.apache.thrift.transport.TTransportException) { - _LOGGER.error("TTransportException inside handler", e); - fb.close(); - return; - } else if (e instanceof org.apache.thrift.TApplicationException) { - _LOGGER.error("TApplicationException inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = (org.apache.thrift.TApplicationException)e; - } else { - _LOGGER.error("Exception inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); - } - try { - fcall.sendResponse(fb,msg,msgType,seqid); - } catch (java.lang.Exception ex) { - _LOGGER.error("Exception writing to internal frame buffer", ex); - fb.close(); - } - } - }; - } - - protected boolean isOneway() { - return false; - } - - public void start(I iface, deleteAll_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteAll(args.tableName, args.row, args.column, args.attributes,resultHandler); - } - } - - public static class deleteAllTs extends org.apache.thrift.AsyncProcessFunction { - public deleteAllTs() { - super("deleteAllTs"); - } - - public deleteAllTs_args getEmptyArgsInstance() { - return new deleteAllTs_args(); - } - - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { - final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - deleteAllTs_result result = new deleteAllTs_result(); - try { - fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); - } catch (org.apache.thrift.transport.TTransportException e) { - _LOGGER.error("TTransportException writing to internal frame buffer", e); - fb.close(); - } catch (java.lang.Exception e) { - _LOGGER.error("Exception writing to internal frame buffer", e); - onError(e); - } - } - public void onError(java.lang.Exception e) { - byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; - org.apache.thrift.TSerializable msg; - deleteAllTs_result result = new deleteAllTs_result(); - if (e instanceof IOError) { - result.io = (IOError) e; - result.setIoIsSet(true); + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); @@ -7271,25 +7232,27 @@ protected boolean isOneway() { return false; } - public void start(I iface, deleteAllTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteAllTs(args.tableName, args.row, args.column, args.timestamp, args.attributes,resultHandler); + public void start(I iface, mutateRowsTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.mutateRowsTs(args.tableName, args.rowBatches, args.timestamp, args.attributes,resultHandler); } } - public static class deleteAllRow extends org.apache.thrift.AsyncProcessFunction { - public deleteAllRow() { - super("deleteAllRow"); + public static class atomicIncrement extends org.apache.thrift.AsyncProcessFunction { + public atomicIncrement() { + super("atomicIncrement"); } - public deleteAllRow_args getEmptyArgsInstance() { - return new deleteAllRow_args(); + public atomicIncrement_args getEmptyArgsInstance() { + return new atomicIncrement_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - deleteAllRow_result result = new deleteAllRow_result(); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(java.lang.Long o) { + atomicIncrement_result result = new atomicIncrement_result(); + result.success = o; + result.setSuccessIsSet(true); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7303,11 +7266,15 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - deleteAllRow_result result = new deleteAllRow_result(); + atomicIncrement_result result = new atomicIncrement_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); + msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -7335,25 +7302,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, deleteAllRow_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteAllRow(args.tableName, args.row, args.attributes,resultHandler); + public void start(I iface, atomicIncrement_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.atomicIncrement(args.tableName, args.row, args.column, args.value,resultHandler); } } - public static class increment extends org.apache.thrift.AsyncProcessFunction { - public increment() { - super("increment"); + public static class deleteAll extends org.apache.thrift.AsyncProcessFunction { + public deleteAll() { + super("deleteAll"); } - public increment_args getEmptyArgsInstance() { - return new increment_args(); + public deleteAll_args getEmptyArgsInstance() { + return new deleteAll_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - increment_result result = new increment_result(); + deleteAll_result result = new deleteAll_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7367,7 +7334,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - increment_result result = new increment_result(); + deleteAll_result result = new deleteAll_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7399,25 +7366,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, increment_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.increment(args.increment,resultHandler); + public void start(I iface, deleteAll_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteAll(args.tableName, args.row, args.column, args.attributes,resultHandler); } } - public static class incrementRows extends org.apache.thrift.AsyncProcessFunction { - public incrementRows() { - super("incrementRows"); + public static class deleteAllTs extends org.apache.thrift.AsyncProcessFunction { + public deleteAllTs() { + super("deleteAllTs"); } - public incrementRows_args getEmptyArgsInstance() { - return new incrementRows_args(); + public deleteAllTs_args getEmptyArgsInstance() { + return new deleteAllTs_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - incrementRows_result result = new incrementRows_result(); + deleteAllTs_result result = new deleteAllTs_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7431,7 +7398,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - incrementRows_result result = new incrementRows_result(); + deleteAllTs_result result = new deleteAllTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7463,25 +7430,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, incrementRows_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.incrementRows(args.increments,resultHandler); + public void start(I iface, deleteAllTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteAllTs(args.tableName, args.row, args.column, args.timestamp, args.attributes,resultHandler); } } - public static class deleteAllRowTs extends org.apache.thrift.AsyncProcessFunction { - public deleteAllRowTs() { - super("deleteAllRowTs"); + public static class deleteAllRow extends org.apache.thrift.AsyncProcessFunction { + public deleteAllRow() { + super("deleteAllRow"); } - public deleteAllRowTs_args getEmptyArgsInstance() { - return new deleteAllRowTs_args(); + public deleteAllRow_args getEmptyArgsInstance() { + return new deleteAllRow_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - deleteAllRowTs_result result = new deleteAllRowTs_result(); + deleteAllRow_result result = new deleteAllRow_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7495,7 +7462,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - deleteAllRowTs_result result = new deleteAllRowTs_result(); + deleteAllRow_result result = new deleteAllRow_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7527,27 +7494,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, deleteAllRowTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteAllRowTs(args.tableName, args.row, args.timestamp, args.attributes,resultHandler); + public void start(I iface, deleteAllRow_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteAllRow(args.tableName, args.row, args.attributes,resultHandler); } } - public static class scannerOpenWithScan extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenWithScan() { - super("scannerOpenWithScan"); + public static class increment extends org.apache.thrift.AsyncProcessFunction { + public increment() { + super("increment"); } - public scannerOpenWithScan_args getEmptyArgsInstance() { - return new scannerOpenWithScan_args(); + public increment_args getEmptyArgsInstance() { + return new increment_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(java.lang.Integer o) { - scannerOpenWithScan_result result = new scannerOpenWithScan_result(); - result.success = o; - result.setSuccessIsSet(true); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + increment_result result = new increment_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7561,7 +7526,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenWithScan_result result = new scannerOpenWithScan_result(); + increment_result result = new increment_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7593,27 +7558,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenWithScan_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenWithScan(args.tableName, args.scan, args.attributes,resultHandler); + public void start(I iface, increment_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.increment(args.increment,resultHandler); } } - public static class scannerOpen extends org.apache.thrift.AsyncProcessFunction { - public scannerOpen() { - super("scannerOpen"); + public static class incrementRows extends org.apache.thrift.AsyncProcessFunction { + public incrementRows() { + super("incrementRows"); } - public scannerOpen_args getEmptyArgsInstance() { - return new scannerOpen_args(); + public incrementRows_args getEmptyArgsInstance() { + return new incrementRows_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(java.lang.Integer o) { - scannerOpen_result result = new scannerOpen_result(); - result.success = o; - result.setSuccessIsSet(true); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + incrementRows_result result = new incrementRows_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7627,7 +7590,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpen_result result = new scannerOpen_result(); + incrementRows_result result = new incrementRows_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7659,25 +7622,89 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpen_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpen(args.tableName, args.startRow, args.columns, args.attributes,resultHandler); + public void start(I iface, incrementRows_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.incrementRows(args.increments,resultHandler); } } - public static class scannerOpenWithStop extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenWithStop() { - super("scannerOpenWithStop"); + public static class deleteAllRowTs extends org.apache.thrift.AsyncProcessFunction { + public deleteAllRowTs() { + super("deleteAllRowTs"); } - public scannerOpenWithStop_args getEmptyArgsInstance() { - return new scannerOpenWithStop_args(); + public deleteAllRowTs_args getEmptyArgsInstance() { + return new deleteAllRowTs_args(); + } + + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + deleteAllRowTs_result result = new deleteAllRowTs_result(); + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + deleteAllRowTs_result result = new deleteAllRowTs_result(); + if (e instanceof IOError) { + result.io = (IOError) e; + result.setIoIsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; + } + + protected boolean isOneway() { + return false; + } + + public void start(I iface, deleteAllRowTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteAllRowTs(args.tableName, args.row, args.timestamp, args.attributes,resultHandler); + } + } + + public static class scannerOpenWithScan extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenWithScan() { + super("scannerOpenWithScan"); + } + + public scannerOpenWithScan_args getEmptyArgsInstance() { + return new scannerOpenWithScan_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(java.lang.Integer o) { - scannerOpenWithStop_result result = new scannerOpenWithStop_result(); + scannerOpenWithScan_result result = new scannerOpenWithScan_result(); result.success = o; result.setSuccessIsSet(true); try { @@ -7693,7 +7720,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenWithStop_result result = new scannerOpenWithStop_result(); + scannerOpenWithScan_result result = new scannerOpenWithScan_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7725,25 +7752,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenWithStop_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenWithStop(args.tableName, args.startRow, args.stopRow, args.columns, args.attributes,resultHandler); + public void start(I iface, scannerOpenWithScan_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenWithScan(args.tableName, args.scan, args.attributes,resultHandler); } } - public static class scannerOpenWithPrefix extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenWithPrefix() { - super("scannerOpenWithPrefix"); + public static class scannerOpen extends org.apache.thrift.AsyncProcessFunction { + public scannerOpen() { + super("scannerOpen"); } - public scannerOpenWithPrefix_args getEmptyArgsInstance() { - return new scannerOpenWithPrefix_args(); + public scannerOpen_args getEmptyArgsInstance() { + return new scannerOpen_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(java.lang.Integer o) { - scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result(); + scannerOpen_result result = new scannerOpen_result(); result.success = o; result.setSuccessIsSet(true); try { @@ -7759,7 +7786,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result(); + scannerOpen_result result = new scannerOpen_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7791,25 +7818,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenWithPrefix_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenWithPrefix(args.tableName, args.startAndPrefix, args.columns, args.attributes,resultHandler); + public void start(I iface, scannerOpen_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpen(args.tableName, args.startRow, args.columns, args.attributes,resultHandler); } } - public static class scannerOpenTs extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenTs() { - super("scannerOpenTs"); + public static class scannerOpenWithStop extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenWithStop() { + super("scannerOpenWithStop"); } - public scannerOpenTs_args getEmptyArgsInstance() { - return new scannerOpenTs_args(); + public scannerOpenWithStop_args getEmptyArgsInstance() { + return new scannerOpenWithStop_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(java.lang.Integer o) { - scannerOpenTs_result result = new scannerOpenTs_result(); + scannerOpenWithStop_result result = new scannerOpenWithStop_result(); result.success = o; result.setSuccessIsSet(true); try { @@ -7825,7 +7852,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenTs_result result = new scannerOpenTs_result(); + scannerOpenWithStop_result result = new scannerOpenWithStop_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7857,25 +7884,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenTs(args.tableName, args.startRow, args.columns, args.timestamp, args.attributes,resultHandler); + public void start(I iface, scannerOpenWithStop_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenWithStop(args.tableName, args.startRow, args.stopRow, args.columns, args.attributes,resultHandler); } } - public static class scannerOpenWithStopTs extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenWithStopTs() { - super("scannerOpenWithStopTs"); + public static class scannerOpenWithPrefix extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenWithPrefix() { + super("scannerOpenWithPrefix"); } - public scannerOpenWithStopTs_args getEmptyArgsInstance() { - return new scannerOpenWithStopTs_args(); + public scannerOpenWithPrefix_args getEmptyArgsInstance() { + return new scannerOpenWithPrefix_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(java.lang.Integer o) { - scannerOpenWithStopTs_result result = new scannerOpenWithStopTs_result(); + scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result(); result.success = o; result.setSuccessIsSet(true); try { @@ -7891,7 +7918,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenWithStopTs_result result = new scannerOpenWithStopTs_result(); + scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7923,26 +7950,27 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenWithStopTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenWithStopTs(args.tableName, args.startRow, args.stopRow, args.columns, args.timestamp, args.attributes,resultHandler); + public void start(I iface, scannerOpenWithPrefix_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenWithPrefix(args.tableName, args.startAndPrefix, args.columns, args.attributes,resultHandler); } } - public static class scannerGet extends org.apache.thrift.AsyncProcessFunction> { - public scannerGet() { - super("scannerGet"); + public static class scannerOpenTs extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenTs() { + super("scannerOpenTs"); } - public scannerGet_args getEmptyArgsInstance() { - return new scannerGet_args(); + public scannerOpenTs_args getEmptyArgsInstance() { + return new scannerOpenTs_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - scannerGet_result result = new scannerGet_result(); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(java.lang.Integer o) { + scannerOpenTs_result result = new scannerOpenTs_result(); result.success = o; + result.setSuccessIsSet(true); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7956,15 +7984,11 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerGet_result result = new scannerGet_result(); + scannerOpenTs_result result = new scannerOpenTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -7992,26 +8016,27 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerGet_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.scannerGet(args.id,resultHandler); + public void start(I iface, scannerOpenTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenTs(args.tableName, args.startRow, args.columns, args.timestamp, args.attributes,resultHandler); } } - public static class scannerGetList extends org.apache.thrift.AsyncProcessFunction> { - public scannerGetList() { - super("scannerGetList"); + public static class scannerOpenWithStopTs extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenWithStopTs() { + super("scannerOpenWithStopTs"); } - public scannerGetList_args getEmptyArgsInstance() { - return new scannerGetList_args(); + public scannerOpenWithStopTs_args getEmptyArgsInstance() { + return new scannerOpenWithStopTs_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - scannerGetList_result result = new scannerGetList_result(); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(java.lang.Integer o) { + scannerOpenWithStopTs_result result = new scannerOpenWithStopTs_result(); result.success = o; + result.setSuccessIsSet(true); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -8025,15 +8050,11 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerGetList_result result = new scannerGetList_result(); + scannerOpenWithStopTs_result result = new scannerOpenWithStopTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -8061,25 +8082,26 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerGetList_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.scannerGetList(args.id, args.nbRows,resultHandler); + public void start(I iface, scannerOpenWithStopTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenWithStopTs(args.tableName, args.startRow, args.stopRow, args.columns, args.timestamp, args.attributes,resultHandler); } } - public static class scannerClose extends org.apache.thrift.AsyncProcessFunction { - public scannerClose() { - super("scannerClose"); + public static class scannerGet extends org.apache.thrift.AsyncProcessFunction> { + public scannerGet() { + super("scannerGet"); } - public scannerClose_args getEmptyArgsInstance() { - return new scannerClose_args(); + public scannerGet_args getEmptyArgsInstance() { + return new scannerGet_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - scannerClose_result result = new scannerClose_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + scannerGet_result result = new scannerGet_result(); + result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -8093,7 +8115,144 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerClose_result result = new scannerClose_result(); + scannerGet_result result = new scannerGet_result(); + if (e instanceof IOError) { + result.io = (IOError) e; + result.setIoIsSet(true); + msg = result; + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; + } + + protected boolean isOneway() { + return false; + } + + public void start(I iface, scannerGet_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.scannerGet(args.id,resultHandler); + } + } + + public static class scannerGetList extends org.apache.thrift.AsyncProcessFunction> { + public scannerGetList() { + super("scannerGetList"); + } + + public scannerGetList_args getEmptyArgsInstance() { + return new scannerGetList_args(); + } + + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + scannerGetList_result result = new scannerGetList_result(); + result.success = o; + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + scannerGetList_result result = new scannerGetList_result(); + if (e instanceof IOError) { + result.io = (IOError) e; + result.setIoIsSet(true); + msg = result; + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; + } + + protected boolean isOneway() { + return false; + } + + public void start(I iface, scannerGetList_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.scannerGetList(args.id, args.nbRows,resultHandler); + } + } + + public static class scannerClose extends org.apache.thrift.AsyncProcessFunction { + public scannerClose() { + super("scannerClose"); + } + + public scannerClose_args getEmptyArgsInstance() { + return new scannerClose_args(); + } + + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + scannerClose_result result = new scannerClose_result(); + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + scannerClose_result result = new scannerClose_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -9294,7 +9453,764 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, enableTable_result struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, enableTable_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, enableTable_result struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.io != null) { + oprot.writeFieldBegin(IO_FIELD_DESC); + struct.io.write(oprot); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class enableTable_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public enableTable_resultTupleScheme getScheme() { + return new enableTable_resultTupleScheme(); + } + } + + private static class enableTable_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, enableTable_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetIo()) { + optionals.set(0); + } + oprot.writeBitSet(optionals, 1); + if (struct.isSetIo()) { + struct.io.write(oprot); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, enableTable_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(1); + if (incoming.get(0)) { + struct.io = new IOError(); + struct.io.read(iprot); + struct.setIoIsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class disableTable_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("disableTable_args"); + + private static final org.apache.thrift.protocol.TField TABLE_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableName", org.apache.thrift.protocol.TType.STRING, (short)1); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new disableTable_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new disableTable_argsTupleSchemeFactory(); + + /** + * name of the table + */ + public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName; // required + + /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ + public enum _Fields implements org.apache.thrift.TFieldIdEnum { + /** + * name of the table + */ + TABLE_NAME((short)1, "tableName"); + + private static final java.util.Map byName = new java.util.HashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 1: // TABLE_NAME + return TABLE_NAME; + default: + return null; + } + } + + /** + * Find the _Fields constant that matches fieldId, throwing an exception + * if it is not found. + */ + public static _Fields findByThriftIdOrThrow(int fieldId) { + _Fields fields = findByThriftId(fieldId); + if (fields == null) throw new java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + public short getThriftFieldId() { + return _thriftId; + } + + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.TABLE_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableName", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(disableTable_args.class, metaDataMap); + } + + public disableTable_args() { + } + + public disableTable_args( + java.nio.ByteBuffer tableName) + { + this(); + this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); + } + + /** + * Performs a deep copy on other. + */ + public disableTable_args(disableTable_args other) { + if (other.isSetTableName()) { + this.tableName = org.apache.thrift.TBaseHelper.copyBinary(other.tableName); + } + } + + public disableTable_args deepCopy() { + return new disableTable_args(this); + } + + @Override + public void clear() { + this.tableName = null; + } + + /** + * name of the table + */ + public byte[] getTableName() { + setTableName(org.apache.thrift.TBaseHelper.rightSize(tableName)); + return tableName == null ? null : tableName.array(); + } + + public java.nio.ByteBuffer bufferForTableName() { + return org.apache.thrift.TBaseHelper.copyBinary(tableName); + } + + /** + * name of the table + */ + public disableTable_args setTableName(byte[] tableName) { + this.tableName = tableName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableName.clone()); + return this; + } + + public disableTable_args setTableName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName) { + this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); + return this; + } + + public void unsetTableName() { + this.tableName = null; + } + + /** Returns true if field tableName is set (has been assigned a value) and false otherwise */ + public boolean isSetTableName() { + return this.tableName != null; + } + + public void setTableNameIsSet(boolean value) { + if (!value) { + this.tableName = null; + } + } + + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case TABLE_NAME: + if (value == null) { + unsetTableName(); + } else { + if (value instanceof byte[]) { + setTableName((byte[])value); + } else { + setTableName((java.nio.ByteBuffer)value); + } + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case TABLE_NAME: + return getTableName(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case TABLE_NAME: + return isSetTableName(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof disableTable_args) + return this.equals((disableTable_args)that); + return false; + } + + public boolean equals(disableTable_args that) { + if (that == null) + return false; + if (this == that) + return true; + + boolean this_present_tableName = true && this.isSetTableName(); + boolean that_present_tableName = true && that.isSetTableName(); + if (this_present_tableName || that_present_tableName) { + if (!(this_present_tableName && that_present_tableName)) + return false; + if (!this.tableName.equals(that.tableName)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + ((isSetTableName()) ? 131071 : 524287); + if (isSetTableName()) + hashCode = hashCode * 8191 + tableName.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(disableTable_args other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTableName()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableName, other.tableName); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("disableTable_args("); + boolean first = true; + + sb.append("tableName:"); + if (this.tableName == null) { + sb.append("null"); + } else { + org.apache.thrift.TBaseHelper.toString(this.tableName, sb); + } + first = false; + sb.append(")"); + return sb.toString(); + } + + public void validate() throws org.apache.thrift.TException { + // check for required fields + // check for sub-struct validity + } + + private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { + try { + write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out))); + } catch (org.apache.thrift.TException te) { + throw new java.io.IOException(te); + } + } + + private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException { + try { + read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); + } catch (org.apache.thrift.TException te) { + throw new java.io.IOException(te); + } + } + + private static class disableTable_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public disableTable_argsStandardScheme getScheme() { + return new disableTable_argsStandardScheme(); + } + } + + private static class disableTable_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TField schemeField; + iprot.readStructBegin(); + while (true) + { + schemeField = iprot.readFieldBegin(); + if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { + break; + } + switch (schemeField.id) { + case 1: // TABLE_NAME + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.tableName = iprot.readBinary(); + struct.setTableNameIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + default: + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + iprot.readFieldEnd(); + } + iprot.readStructEnd(); + + // check for required fields of primitive type, which can't be checked in the validate method + struct.validate(); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_args struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.tableName != null) { + oprot.writeFieldBegin(TABLE_NAME_FIELD_DESC); + oprot.writeBinary(struct.tableName); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class disableTable_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public disableTable_argsTupleScheme getScheme() { + return new disableTable_argsTupleScheme(); + } + } + + private static class disableTable_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetTableName()) { + optionals.set(0); + } + oprot.writeBitSet(optionals, 1); + if (struct.isSetTableName()) { + oprot.writeBinary(struct.tableName); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, disableTable_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(1); + if (incoming.get(0)) { + struct.tableName = iprot.readBinary(); + struct.setTableNameIsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class disableTable_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("disableTable_result"); + + private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new disableTable_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new disableTable_resultTupleSchemeFactory(); + + public @org.apache.thrift.annotation.Nullable IOError io; // required + + /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ + public enum _Fields implements org.apache.thrift.TFieldIdEnum { + IO((short)1, "io"); + + private static final java.util.Map byName = new java.util.HashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 1: // IO + return IO; + default: + return null; + } + } + + /** + * Find the _Fields constant that matches fieldId, throwing an exception + * if it is not found. + */ + public static _Fields findByThriftIdOrThrow(int fieldId) { + _Fields fields = findByThriftId(fieldId); + if (fields == null) throw new java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + public short getThriftFieldId() { + return _thriftId; + } + + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(disableTable_result.class, metaDataMap); + } + + public disableTable_result() { + } + + public disableTable_result( + IOError io) + { + this(); + this.io = io; + } + + /** + * Performs a deep copy on other. + */ + public disableTable_result(disableTable_result other) { + if (other.isSetIo()) { + this.io = new IOError(other.io); + } + } + + public disableTable_result deepCopy() { + return new disableTable_result(this); + } + + @Override + public void clear() { + this.io = null; + } + + @org.apache.thrift.annotation.Nullable + public IOError getIo() { + return this.io; + } + + public disableTable_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + this.io = io; + return this; + } + + public void unsetIo() { + this.io = null; + } + + /** Returns true if field io is set (has been assigned a value) and false otherwise */ + public boolean isSetIo() { + return this.io != null; + } + + public void setIoIsSet(boolean value) { + if (!value) { + this.io = null; + } + } + + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case IO: + if (value == null) { + unsetIo(); + } else { + setIo((IOError)value); + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case IO: + return getIo(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case IO: + return isSetIo(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof disableTable_result) + return this.equals((disableTable_result)that); + return false; + } + + public boolean equals(disableTable_result that) { + if (that == null) + return false; + if (this == that) + return true; + + boolean this_present_io = true && this.isSetIo(); + boolean that_present_io = true && that.isSetIo(); + if (this_present_io || that_present_io) { + if (!(this_present_io && that_present_io)) + return false; + if (!this.io.equals(that.io)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + ((isSetIo()) ? 131071 : 524287); + if (isSetIo()) + hashCode = hashCode * 8191 + io.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(disableTable_result other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetIo(), other.isSetIo()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetIo()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.io, other.io); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("disableTable_result("); + boolean first = true; + + sb.append("io:"); + if (this.io == null) { + sb.append("null"); + } else { + sb.append(this.io); + } + first = false; + sb.append(")"); + return sb.toString(); + } + + public void validate() throws org.apache.thrift.TException { + // check for required fields + // check for sub-struct validity + } + + private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { + try { + write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out))); + } catch (org.apache.thrift.TException te) { + throw new java.io.IOException(te); + } + } + + private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException { + try { + read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); + } catch (org.apache.thrift.TException te) { + throw new java.io.IOException(te); + } + } + + private static class disableTable_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public disableTable_resultStandardScheme getScheme() { + return new disableTable_resultStandardScheme(); + } + } + + private static class disableTable_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TField schemeField; + iprot.readStructBegin(); + while (true) + { + schemeField = iprot.readFieldBegin(); + if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { + break; + } + switch (schemeField.id) { + case 1: // IO + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.io = new IOError(); + struct.io.read(iprot); + struct.setIoIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + default: + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + iprot.readFieldEnd(); + } + iprot.readStructEnd(); + + // check for required fields of primitive type, which can't be checked in the validate method + struct.validate(); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -9309,16 +10225,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, enableTable_result } - private static class enableTable_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public enableTable_resultTupleScheme getScheme() { - return new enableTable_resultTupleScheme(); + private static class disableTable_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public disableTable_resultTupleScheme getScheme() { + return new disableTable_resultTupleScheme(); } } - private static class enableTable_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class disableTable_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, enableTable_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetIo()) { @@ -9331,7 +10247,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, enableTable_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, enableTable_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, disableTable_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { @@ -9347,23 +10263,23 @@ private static S scheme(org.apache. } } - public static class disableTable_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("disableTable_args"); + public static class isTableEnabled_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isTableEnabled_args"); private static final org.apache.thrift.protocol.TField TABLE_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableName", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new disableTable_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new disableTable_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new isTableEnabled_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new isTableEnabled_argsTupleSchemeFactory(); /** - * name of the table + * name of the table to check */ public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { /** - * name of the table + * name of the table to check */ TABLE_NAME((short)1, "tableName"); @@ -9430,13 +10346,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.TABLE_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableName", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(disableTable_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(isTableEnabled_args.class, metaDataMap); } - public disableTable_args() { + public isTableEnabled_args() { } - public disableTable_args( + public isTableEnabled_args( java.nio.ByteBuffer tableName) { this(); @@ -9446,14 +10362,14 @@ public disableTable_args( /** * Performs a deep copy on other. */ - public disableTable_args(disableTable_args other) { + public isTableEnabled_args(isTableEnabled_args other) { if (other.isSetTableName()) { this.tableName = org.apache.thrift.TBaseHelper.copyBinary(other.tableName); } } - public disableTable_args deepCopy() { - return new disableTable_args(this); + public isTableEnabled_args deepCopy() { + return new isTableEnabled_args(this); } @Override @@ -9462,7 +10378,7 @@ public void clear() { } /** - * name of the table + * name of the table to check */ public byte[] getTableName() { setTableName(org.apache.thrift.TBaseHelper.rightSize(tableName)); @@ -9474,14 +10390,14 @@ public java.nio.ByteBuffer bufferForTableName() { } /** - * name of the table + * name of the table to check */ - public disableTable_args setTableName(byte[] tableName) { + public isTableEnabled_args setTableName(byte[] tableName) { this.tableName = tableName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableName.clone()); return this; } - public disableTable_args setTableName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName) { + public isTableEnabled_args setTableName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName) { this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); return this; } @@ -9543,12 +10459,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof disableTable_args) - return this.equals((disableTable_args)that); + if (that instanceof isTableEnabled_args) + return this.equals((isTableEnabled_args)that); return false; } - public boolean equals(disableTable_args that) { + public boolean equals(isTableEnabled_args that) { if (that == null) return false; if (this == that) @@ -9578,7 +10494,7 @@ public int hashCode() { } @Override - public int compareTo(disableTable_args other) { + public int compareTo(isTableEnabled_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -9613,7 +10529,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("disableTable_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("isTableEnabled_args("); boolean first = true; sb.append("tableName:"); @@ -9648,15 +10564,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class disableTable_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public disableTable_argsStandardScheme getScheme() { - return new disableTable_argsStandardScheme(); + private static class isTableEnabled_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public isTableEnabled_argsStandardScheme getScheme() { + return new isTableEnabled_argsStandardScheme(); } } - private static class disableTable_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class isTableEnabled_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -9685,7 +10601,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_args s struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -9700,16 +10616,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_args } - private static class disableTable_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public disableTable_argsTupleScheme getScheme() { - return new disableTable_argsTupleScheme(); + private static class isTableEnabled_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public isTableEnabled_argsTupleScheme getScheme() { + return new isTableEnabled_argsTupleScheme(); } } - private static class disableTable_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class isTableEnabled_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetTableName()) { @@ -9722,7 +10638,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, disableTable_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { @@ -9737,18 +10653,21 @@ private static S scheme(org.apache. } } - public static class disableTable_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("disableTable_result"); + public static class isTableEnabled_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isTableEnabled_result"); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.BOOL, (short)0); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new disableTable_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new disableTable_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new isTableEnabled_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new isTableEnabled_resultTupleSchemeFactory(); + public boolean success; // required public @org.apache.thrift.annotation.Nullable IOError io; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { + SUCCESS((short)0, "success"), IO((short)1, "io"); private static final java.util.Map byName = new java.util.HashMap(); @@ -9765,6 +10684,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; case 1: // IO return IO; default: @@ -9808,49 +10729,83 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(disableTable_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(isTableEnabled_result.class, metaDataMap); } - public disableTable_result() { + public isTableEnabled_result() { } - public disableTable_result( + public isTableEnabled_result( + boolean success, IOError io) { this(); + this.success = success; + setSuccessIsSet(true); this.io = io; } /** * Performs a deep copy on other. */ - public disableTable_result(disableTable_result other) { + public isTableEnabled_result(isTableEnabled_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; if (other.isSetIo()) { this.io = new IOError(other.io); } } - public disableTable_result deepCopy() { - return new disableTable_result(this); + public isTableEnabled_result deepCopy() { + return new isTableEnabled_result(this); } @Override public void clear() { + setSuccessIsSet(false); + this.success = false; this.io = null; } + public boolean isSuccess() { + return this.success; + } + + public isTableEnabled_result setSuccess(boolean success) { + this.success = success; + setSuccessIsSet(true); + return this; + } + + public void unsetSuccess() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + /** Returns true if field success is set (has been assigned a value) and false otherwise */ + public boolean isSetSuccess() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + public void setSuccessIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + } + @org.apache.thrift.annotation.Nullable public IOError getIo() { return this.io; } - public disableTable_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public isTableEnabled_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -9872,6 +10827,14 @@ public void setIoIsSet(boolean value) { public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.lang.Boolean)value); + } + break; + case IO: if (value == null) { unsetIo(); @@ -9886,6 +10849,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case SUCCESS: + return isSuccess(); + case IO: return getIo(); @@ -9900,6 +10866,8 @@ public boolean isSet(_Fields field) { } switch (field) { + case SUCCESS: + return isSetSuccess(); case IO: return isSetIo(); } @@ -9908,17 +10876,26 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof disableTable_result) - return this.equals((disableTable_result)that); + if (that instanceof isTableEnabled_result) + return this.equals((isTableEnabled_result)that); return false; } - public boolean equals(disableTable_result that) { + public boolean equals(isTableEnabled_result that) { if (that == null) return false; if (this == that) return true; + boolean this_present_success = true; + boolean that_present_success = true; + if (this_present_success || that_present_success) { + if (!(this_present_success && that_present_success)) + return false; + if (this.success != that.success) + return false; + } + boolean this_present_io = true && this.isSetIo(); boolean that_present_io = true && that.isSetIo(); if (this_present_io || that_present_io) { @@ -9935,6 +10912,8 @@ public boolean equals(disableTable_result that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); + hashCode = hashCode * 8191 + ((isSetIo()) ? 131071 : 524287); if (isSetIo()) hashCode = hashCode * 8191 + io.hashCode(); @@ -9943,13 +10922,23 @@ public int hashCode() { } @Override - public int compareTo(disableTable_result other) { + public int compareTo(isTableEnabled_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSuccess()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetIo(), other.isSetIo()); if (lastComparison != 0) { return lastComparison; @@ -9978,9 +10967,13 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("disableTable_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("isTableEnabled_result("); boolean first = true; + sb.append("success:"); + sb.append(this.success); + first = false; + if (!first) sb.append(", "); sb.append("io:"); if (this.io == null) { sb.append("null"); @@ -10007,21 +11000,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException { try { + // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor. + __isset_bitfield = 0; read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); } catch (org.apache.thrift.TException te) { throw new java.io.IOException(te); } } - private static class disableTable_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public disableTable_resultStandardScheme getScheme() { - return new disableTable_resultStandardScheme(); + private static class isTableEnabled_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public isTableEnabled_resultStandardScheme getScheme() { + return new isTableEnabled_resultStandardScheme(); } } - private static class disableTable_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class isTableEnabled_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -10031,6 +11026,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_result break; } switch (schemeField.id) { + case 0: // SUCCESS + if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { + struct.success = iprot.readBool(); + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; case 1: // IO if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.io = new IOError(); @@ -10051,10 +11054,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_result struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.isSetSuccess()) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + oprot.writeBool(struct.success); + oprot.writeFieldEnd(); + } if (struct.io != null) { oprot.writeFieldBegin(IO_FIELD_DESC); struct.io.write(oprot); @@ -10066,32 +11074,42 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_resul } - private static class disableTable_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public disableTable_resultTupleScheme getScheme() { - return new disableTable_resultTupleScheme(); + private static class isTableEnabled_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public isTableEnabled_resultTupleScheme getScheme() { + return new isTableEnabled_resultTupleScheme(); } } - private static class disableTable_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class isTableEnabled_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetIo()) { + if (struct.isSetSuccess()) { optionals.set(0); } - oprot.writeBitSet(optionals, 1); + if (struct.isSetIo()) { + optionals.set(1); + } + oprot.writeBitSet(optionals, 2); + if (struct.isSetSuccess()) { + oprot.writeBool(struct.success); + } if (struct.isSetIo()) { struct.io.write(oprot); } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, disableTable_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(1); + java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { + struct.success = iprot.readBool(); + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { struct.io = new IOError(); struct.io.read(iprot); struct.setIoIsSet(true); @@ -10104,25 +11122,19 @@ private static S scheme(org.apache. } } - public static class isTableEnabled_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isTableEnabled_args"); + public static class compact_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("compact_args"); - private static final org.apache.thrift.protocol.TField TABLE_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableName", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField TABLE_NAME_OR_REGION_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableNameOrRegionName", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new isTableEnabled_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new isTableEnabled_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new compact_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new compact_argsTupleSchemeFactory(); - /** - * name of the table to check - */ - public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName; // required + public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { - /** - * name of the table to check - */ - TABLE_NAME((short)1, "tableName"); + TABLE_NAME_OR_REGION_NAME((short)1, "tableNameOrRegionName"); private static final java.util.Map byName = new java.util.HashMap(); @@ -10138,8 +11150,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // TABLE_NAME - return TABLE_NAME; + case 1: // TABLE_NAME_OR_REGION_NAME + return TABLE_NAME_OR_REGION_NAME; default: return null; } @@ -10184,90 +11196,84 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.TABLE_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableName", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.TABLE_NAME_OR_REGION_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableNameOrRegionName", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(isTableEnabled_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(compact_args.class, metaDataMap); } - public isTableEnabled_args() { + public compact_args() { } - public isTableEnabled_args( - java.nio.ByteBuffer tableName) + public compact_args( + java.nio.ByteBuffer tableNameOrRegionName) { this(); - this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); + this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); } /** * Performs a deep copy on other. */ - public isTableEnabled_args(isTableEnabled_args other) { - if (other.isSetTableName()) { - this.tableName = org.apache.thrift.TBaseHelper.copyBinary(other.tableName); + public compact_args(compact_args other) { + if (other.isSetTableNameOrRegionName()) { + this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(other.tableNameOrRegionName); } } - public isTableEnabled_args deepCopy() { - return new isTableEnabled_args(this); + public compact_args deepCopy() { + return new compact_args(this); } @Override public void clear() { - this.tableName = null; + this.tableNameOrRegionName = null; } - /** - * name of the table to check - */ - public byte[] getTableName() { - setTableName(org.apache.thrift.TBaseHelper.rightSize(tableName)); - return tableName == null ? null : tableName.array(); + public byte[] getTableNameOrRegionName() { + setTableNameOrRegionName(org.apache.thrift.TBaseHelper.rightSize(tableNameOrRegionName)); + return tableNameOrRegionName == null ? null : tableNameOrRegionName.array(); } - public java.nio.ByteBuffer bufferForTableName() { - return org.apache.thrift.TBaseHelper.copyBinary(tableName); + public java.nio.ByteBuffer bufferForTableNameOrRegionName() { + return org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); } - /** - * name of the table to check - */ - public isTableEnabled_args setTableName(byte[] tableName) { - this.tableName = tableName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableName.clone()); + public compact_args setTableNameOrRegionName(byte[] tableNameOrRegionName) { + this.tableNameOrRegionName = tableNameOrRegionName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableNameOrRegionName.clone()); return this; } - public isTableEnabled_args setTableName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName) { - this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); + public compact_args setTableNameOrRegionName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName) { + this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); return this; } - public void unsetTableName() { - this.tableName = null; + public void unsetTableNameOrRegionName() { + this.tableNameOrRegionName = null; } - /** Returns true if field tableName is set (has been assigned a value) and false otherwise */ - public boolean isSetTableName() { - return this.tableName != null; + /** Returns true if field tableNameOrRegionName is set (has been assigned a value) and false otherwise */ + public boolean isSetTableNameOrRegionName() { + return this.tableNameOrRegionName != null; } - public void setTableNameIsSet(boolean value) { + public void setTableNameOrRegionNameIsSet(boolean value) { if (!value) { - this.tableName = null; + this.tableNameOrRegionName = null; } } public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case TABLE_NAME: + case TABLE_NAME_OR_REGION_NAME: if (value == null) { - unsetTableName(); + unsetTableNameOrRegionName(); } else { if (value instanceof byte[]) { - setTableName((byte[])value); + setTableNameOrRegionName((byte[])value); } else { - setTableName((java.nio.ByteBuffer)value); + setTableNameOrRegionName((java.nio.ByteBuffer)value); } } break; @@ -10278,8 +11284,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case TABLE_NAME: - return getTableName(); + case TABLE_NAME_OR_REGION_NAME: + return getTableNameOrRegionName(); } throw new java.lang.IllegalStateException(); @@ -10292,31 +11298,31 @@ public boolean isSet(_Fields field) { } switch (field) { - case TABLE_NAME: - return isSetTableName(); + case TABLE_NAME_OR_REGION_NAME: + return isSetTableNameOrRegionName(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof isTableEnabled_args) - return this.equals((isTableEnabled_args)that); + if (that instanceof compact_args) + return this.equals((compact_args)that); return false; } - public boolean equals(isTableEnabled_args that) { + public boolean equals(compact_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_tableName = true && this.isSetTableName(); - boolean that_present_tableName = true && that.isSetTableName(); - if (this_present_tableName || that_present_tableName) { - if (!(this_present_tableName && that_present_tableName)) + boolean this_present_tableNameOrRegionName = true && this.isSetTableNameOrRegionName(); + boolean that_present_tableNameOrRegionName = true && that.isSetTableNameOrRegionName(); + if (this_present_tableNameOrRegionName || that_present_tableNameOrRegionName) { + if (!(this_present_tableNameOrRegionName && that_present_tableNameOrRegionName)) return false; - if (!this.tableName.equals(that.tableName)) + if (!this.tableNameOrRegionName.equals(that.tableNameOrRegionName)) return false; } @@ -10327,27 +11333,27 @@ public boolean equals(isTableEnabled_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetTableName()) ? 131071 : 524287); - if (isSetTableName()) - hashCode = hashCode * 8191 + tableName.hashCode(); + hashCode = hashCode * 8191 + ((isSetTableNameOrRegionName()) ? 131071 : 524287); + if (isSetTableNameOrRegionName()) + hashCode = hashCode * 8191 + tableNameOrRegionName.hashCode(); return hashCode; } @Override - public int compareTo(isTableEnabled_args other) { + public int compareTo(compact_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableNameOrRegionName(), other.isSetTableNameOrRegionName()); if (lastComparison != 0) { return lastComparison; } - if (isSetTableName()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableName, other.tableName); + if (isSetTableNameOrRegionName()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableNameOrRegionName, other.tableNameOrRegionName); if (lastComparison != 0) { return lastComparison; } @@ -10370,14 +11376,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("isTableEnabled_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("compact_args("); boolean first = true; - sb.append("tableName:"); - if (this.tableName == null) { + sb.append("tableNameOrRegionName:"); + if (this.tableNameOrRegionName == null) { sb.append("null"); } else { - org.apache.thrift.TBaseHelper.toString(this.tableName, sb); + org.apache.thrift.TBaseHelper.toString(this.tableNameOrRegionName, sb); } first = false; sb.append(")"); @@ -10405,15 +11411,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class isTableEnabled_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public isTableEnabled_argsStandardScheme getScheme() { - return new isTableEnabled_argsStandardScheme(); + private static class compact_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public compact_argsStandardScheme getScheme() { + return new compact_argsStandardScheme(); } } - private static class isTableEnabled_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class compact_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, compact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -10423,10 +11429,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_args break; } switch (schemeField.id) { - case 1: // TABLE_NAME + case 1: // TABLE_NAME_OR_REGION_NAME if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tableName = iprot.readBinary(); - struct.setTableNameIsSet(true); + struct.tableNameOrRegionName = iprot.readBinary(); + struct.setTableNameOrRegionNameIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -10442,13 +11448,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_args struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, compact_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.tableName != null) { - oprot.writeFieldBegin(TABLE_NAME_FIELD_DESC); - oprot.writeBinary(struct.tableName); + if (struct.tableNameOrRegionName != null) { + oprot.writeFieldBegin(TABLE_NAME_OR_REGION_NAME_FIELD_DESC); + oprot.writeBinary(struct.tableNameOrRegionName); oprot.writeFieldEnd(); } oprot.writeFieldStop(); @@ -10457,34 +11463,34 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_arg } - private static class isTableEnabled_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public isTableEnabled_argsTupleScheme getScheme() { - return new isTableEnabled_argsTupleScheme(); + private static class compact_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public compact_argsTupleScheme getScheme() { + return new compact_argsTupleScheme(); } } - private static class isTableEnabled_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class compact_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, compact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetTableName()) { + if (struct.isSetTableNameOrRegionName()) { optionals.set(0); } oprot.writeBitSet(optionals, 1); - if (struct.isSetTableName()) { - oprot.writeBinary(struct.tableName); + if (struct.isSetTableNameOrRegionName()) { + oprot.writeBinary(struct.tableNameOrRegionName); } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, compact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { - struct.tableName = iprot.readBinary(); - struct.setTableNameIsSet(true); + struct.tableNameOrRegionName = iprot.readBinary(); + struct.setTableNameOrRegionNameIsSet(true); } } } @@ -10494,21 +11500,18 @@ private static S scheme(org.apache. } } - public static class isTableEnabled_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isTableEnabled_result"); + public static class compact_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("compact_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.BOOL, (short)0); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new isTableEnabled_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new isTableEnabled_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new compact_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new compact_resultTupleSchemeFactory(); - public boolean success; // required public @org.apache.thrift.annotation.Nullable IOError io; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { - SUCCESS((short)0, "success"), IO((short)1, "io"); private static final java.util.Map byName = new java.util.HashMap(); @@ -10525,8 +11528,6 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 0: // SUCCESS - return SUCCESS; case 1: // IO return IO; default: @@ -10570,83 +11571,49 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(isTableEnabled_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(compact_result.class, metaDataMap); } - public isTableEnabled_result() { + public compact_result() { } - public isTableEnabled_result( - boolean success, + public compact_result( IOError io) { this(); - this.success = success; - setSuccessIsSet(true); this.io = io; } /** * Performs a deep copy on other. */ - public isTableEnabled_result(isTableEnabled_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public compact_result(compact_result other) { if (other.isSetIo()) { this.io = new IOError(other.io); } } - public isTableEnabled_result deepCopy() { - return new isTableEnabled_result(this); + public compact_result deepCopy() { + return new compact_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = false; this.io = null; } - public boolean isSuccess() { - return this.success; - } - - public isTableEnabled_result setSuccess(boolean success) { - this.success = success; - setSuccessIsSet(true); - return this; - } - - public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - /** Returns true if field success is set (has been assigned a value) and false otherwise */ - public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public IOError getIo() { return this.io; } - public isTableEnabled_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public compact_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -10668,14 +11635,6 @@ public void setIoIsSet(boolean value) { public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((java.lang.Boolean)value); - } - break; - case IO: if (value == null) { unsetIo(); @@ -10690,9 +11649,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case SUCCESS: - return isSuccess(); - case IO: return getIo(); @@ -10707,8 +11663,6 @@ public boolean isSet(_Fields field) { } switch (field) { - case SUCCESS: - return isSetSuccess(); case IO: return isSetIo(); } @@ -10717,26 +11671,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof isTableEnabled_result) - return this.equals((isTableEnabled_result)that); + if (that instanceof compact_result) + return this.equals((compact_result)that); return false; } - public boolean equals(isTableEnabled_result that) { + public boolean equals(compact_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; - if (this_present_success || that_present_success) { - if (!(this_present_success && that_present_success)) - return false; - if (this.success != that.success) - return false; - } - boolean this_present_io = true && this.isSetIo(); boolean that_present_io = true && that.isSetIo(); if (this_present_io || that_present_io) { @@ -10753,8 +11698,6 @@ public boolean equals(isTableEnabled_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); - hashCode = hashCode * 8191 + ((isSetIo()) ? 131071 : 524287); if (isSetIo()) hashCode = hashCode * 8191 + io.hashCode(); @@ -10763,23 +11706,13 @@ public int hashCode() { } @Override - public int compareTo(isTableEnabled_result other) { + public int compareTo(compact_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetSuccess()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetIo(), other.isSetIo()); if (lastComparison != 0) { return lastComparison; @@ -10808,13 +11741,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("isTableEnabled_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("compact_result("); boolean first = true; - sb.append("success:"); - sb.append(this.success); - first = false; - if (!first) sb.append(", "); sb.append("io:"); if (this.io == null) { sb.append("null"); @@ -10841,23 +11770,21 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException { try { - // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor. - __isset_bitfield = 0; read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); } catch (org.apache.thrift.TException te) { throw new java.io.IOException(te); } } - private static class isTableEnabled_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public isTableEnabled_resultStandardScheme getScheme() { - return new isTableEnabled_resultStandardScheme(); + private static class compact_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public compact_resultStandardScheme getScheme() { + return new compact_resultStandardScheme(); } } - private static class isTableEnabled_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class compact_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, compact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -10867,14 +11794,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_resu break; } switch (schemeField.id) { - case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.success = iprot.readBool(); - struct.setSuccessIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; case 1: // IO if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.io = new IOError(); @@ -10895,15 +11814,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_resu struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, compact_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { - oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeBool(struct.success); - oprot.writeFieldEnd(); - } if (struct.io != null) { oprot.writeFieldBegin(IO_FIELD_DESC); struct.io.write(oprot); @@ -10915,42 +11829,32 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_res } - private static class isTableEnabled_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public isTableEnabled_resultTupleScheme getScheme() { - return new isTableEnabled_resultTupleScheme(); + private static class compact_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public compact_resultTupleScheme getScheme() { + return new compact_resultTupleScheme(); } } - private static class isTableEnabled_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class compact_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, compact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetSuccess()) { - optionals.set(0); - } if (struct.isSetIo()) { - optionals.set(1); - } - oprot.writeBitSet(optionals, 2); - if (struct.isSetSuccess()) { - oprot.writeBool(struct.success); + optionals.set(0); } + oprot.writeBitSet(optionals, 1); if (struct.isSetIo()) { struct.io.write(oprot); } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, compact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(2); + java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { - struct.success = iprot.readBool(); - struct.setSuccessIsSet(true); - } - if (incoming.get(1)) { struct.io = new IOError(); struct.io.read(iprot); struct.setIoIsSet(true); @@ -10963,13 +11867,13 @@ private static S scheme(org.apache. } } - public static class compact_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("compact_args"); + public static class majorCompact_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("majorCompact_args"); private static final org.apache.thrift.protocol.TField TABLE_NAME_OR_REGION_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableNameOrRegionName", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new compact_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new compact_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new majorCompact_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new majorCompact_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName; // required @@ -11040,13 +11944,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.TABLE_NAME_OR_REGION_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableNameOrRegionName", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(compact_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(majorCompact_args.class, metaDataMap); } - public compact_args() { + public majorCompact_args() { } - public compact_args( + public majorCompact_args( java.nio.ByteBuffer tableNameOrRegionName) { this(); @@ -11056,14 +11960,14 @@ public compact_args( /** * Performs a deep copy on other. */ - public compact_args(compact_args other) { + public majorCompact_args(majorCompact_args other) { if (other.isSetTableNameOrRegionName()) { this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(other.tableNameOrRegionName); } } - public compact_args deepCopy() { - return new compact_args(this); + public majorCompact_args deepCopy() { + return new majorCompact_args(this); } @Override @@ -11080,12 +11984,12 @@ public java.nio.ByteBuffer bufferForTableNameOrRegionName() { return org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); } - public compact_args setTableNameOrRegionName(byte[] tableNameOrRegionName) { + public majorCompact_args setTableNameOrRegionName(byte[] tableNameOrRegionName) { this.tableNameOrRegionName = tableNameOrRegionName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableNameOrRegionName.clone()); return this; } - public compact_args setTableNameOrRegionName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName) { + public majorCompact_args setTableNameOrRegionName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName) { this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); return this; } @@ -11147,12 +12051,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof compact_args) - return this.equals((compact_args)that); + if (that instanceof majorCompact_args) + return this.equals((majorCompact_args)that); return false; } - public boolean equals(compact_args that) { + public boolean equals(majorCompact_args that) { if (that == null) return false; if (this == that) @@ -11182,7 +12086,7 @@ public int hashCode() { } @Override - public int compareTo(compact_args other) { + public int compareTo(majorCompact_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -11217,7 +12121,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("compact_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("majorCompact_args("); boolean first = true; sb.append("tableNameOrRegionName:"); @@ -11252,15 +12156,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class compact_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public compact_argsStandardScheme getScheme() { - return new compact_argsStandardScheme(); + private static class majorCompact_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public majorCompact_argsStandardScheme getScheme() { + return new majorCompact_argsStandardScheme(); } } - private static class compact_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class majorCompact_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, compact_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -11289,7 +12193,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, compact_args struct struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, compact_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -11304,16 +12208,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, compact_args struc } - private static class compact_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public compact_argsTupleScheme getScheme() { - return new compact_argsTupleScheme(); + private static class majorCompact_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public majorCompact_argsTupleScheme getScheme() { + return new majorCompact_argsTupleScheme(); } } - private static class compact_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class majorCompact_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, compact_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetTableNameOrRegionName()) { @@ -11326,7 +12230,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, compact_args struct } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, compact_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, majorCompact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { @@ -11341,13 +12245,13 @@ private static S scheme(org.apache. } } - public static class compact_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("compact_result"); + public static class majorCompact_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("majorCompact_result"); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new compact_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new compact_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new majorCompact_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new majorCompact_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable IOError io; // required @@ -11418,13 +12322,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(compact_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(majorCompact_result.class, metaDataMap); } - public compact_result() { + public majorCompact_result() { } - public compact_result( + public majorCompact_result( IOError io) { this(); @@ -11434,14 +12338,14 @@ public compact_result( /** * Performs a deep copy on other. */ - public compact_result(compact_result other) { + public majorCompact_result(majorCompact_result other) { if (other.isSetIo()) { this.io = new IOError(other.io); } } - public compact_result deepCopy() { - return new compact_result(this); + public majorCompact_result deepCopy() { + return new majorCompact_result(this); } @Override @@ -11454,7 +12358,7 @@ public IOError getIo() { return this.io; } - public compact_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public majorCompact_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -11512,12 +12416,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof compact_result) - return this.equals((compact_result)that); + if (that instanceof majorCompact_result) + return this.equals((majorCompact_result)that); return false; } - public boolean equals(compact_result that) { + public boolean equals(majorCompact_result that) { if (that == null) return false; if (this == that) @@ -11547,7 +12451,7 @@ public int hashCode() { } @Override - public int compareTo(compact_result other) { + public int compareTo(majorCompact_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -11582,7 +12486,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("compact_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("majorCompact_result("); boolean first = true; sb.append("io:"); @@ -11617,15 +12521,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class compact_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public compact_resultStandardScheme getScheme() { - return new compact_resultStandardScheme(); + private static class majorCompact_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public majorCompact_resultStandardScheme getScheme() { + return new majorCompact_resultStandardScheme(); } } - private static class compact_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class majorCompact_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, compact_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -11655,7 +12559,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, compact_result stru struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, compact_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -11670,16 +12574,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, compact_result str } - private static class compact_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public compact_resultTupleScheme getScheme() { - return new compact_resultTupleScheme(); + private static class majorCompact_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public majorCompact_resultTupleScheme getScheme() { + return new majorCompact_resultTupleScheme(); } } - private static class compact_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class majorCompact_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, compact_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetIo()) { @@ -11692,7 +12596,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, compact_result stru } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, compact_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, majorCompact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { @@ -11708,19 +12612,17 @@ private static S scheme(org.apache. } } - public static class majorCompact_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("majorCompact_args"); + public static class getTableNames_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNames_args"); - private static final org.apache.thrift.protocol.TField TABLE_NAME_OR_REGION_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableNameOrRegionName", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new majorCompact_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new majorCompact_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNames_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNames_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { - TABLE_NAME_OR_REGION_NAME((short)1, "tableNameOrRegionName"); +; private static final java.util.Map byName = new java.util.HashMap(); @@ -11736,8 +12638,6 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // TABLE_NAME_OR_REGION_NAME - return TABLE_NAME_OR_REGION_NAME; default: return null; } @@ -11777,102 +12677,38 @@ public java.lang.String getFieldName() { return _fieldName; } } - - // isset id assignments public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.TABLE_NAME_OR_REGION_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableNameOrRegionName", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(majorCompact_args.class, metaDataMap); - } - - public majorCompact_args() { + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNames_args.class, metaDataMap); } - public majorCompact_args( - java.nio.ByteBuffer tableNameOrRegionName) - { - this(); - this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); + public getTableNames_args() { } /** * Performs a deep copy on other. */ - public majorCompact_args(majorCompact_args other) { - if (other.isSetTableNameOrRegionName()) { - this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(other.tableNameOrRegionName); - } + public getTableNames_args(getTableNames_args other) { } - public majorCompact_args deepCopy() { - return new majorCompact_args(this); + public getTableNames_args deepCopy() { + return new getTableNames_args(this); } @Override public void clear() { - this.tableNameOrRegionName = null; - } - - public byte[] getTableNameOrRegionName() { - setTableNameOrRegionName(org.apache.thrift.TBaseHelper.rightSize(tableNameOrRegionName)); - return tableNameOrRegionName == null ? null : tableNameOrRegionName.array(); - } - - public java.nio.ByteBuffer bufferForTableNameOrRegionName() { - return org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); - } - - public majorCompact_args setTableNameOrRegionName(byte[] tableNameOrRegionName) { - this.tableNameOrRegionName = tableNameOrRegionName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableNameOrRegionName.clone()); - return this; - } - - public majorCompact_args setTableNameOrRegionName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName) { - this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); - return this; - } - - public void unsetTableNameOrRegionName() { - this.tableNameOrRegionName = null; - } - - /** Returns true if field tableNameOrRegionName is set (has been assigned a value) and false otherwise */ - public boolean isSetTableNameOrRegionName() { - return this.tableNameOrRegionName != null; - } - - public void setTableNameOrRegionNameIsSet(boolean value) { - if (!value) { - this.tableNameOrRegionName = null; - } } public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case TABLE_NAME_OR_REGION_NAME: - if (value == null) { - unsetTableNameOrRegionName(); - } else { - if (value instanceof byte[]) { - setTableNameOrRegionName((byte[])value); - } else { - setTableNameOrRegionName((java.nio.ByteBuffer)value); - } - } - break; - } } @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case TABLE_NAME_OR_REGION_NAME: - return getTableNameOrRegionName(); - } throw new java.lang.IllegalStateException(); } @@ -11884,34 +12720,23 @@ public boolean isSet(_Fields field) { } switch (field) { - case TABLE_NAME_OR_REGION_NAME: - return isSetTableNameOrRegionName(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof majorCompact_args) - return this.equals((majorCompact_args)that); + if (that instanceof getTableNames_args) + return this.equals((getTableNames_args)that); return false; } - public boolean equals(majorCompact_args that) { + public boolean equals(getTableNames_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_tableNameOrRegionName = true && this.isSetTableNameOrRegionName(); - boolean that_present_tableNameOrRegionName = true && that.isSetTableNameOrRegionName(); - if (this_present_tableNameOrRegionName || that_present_tableNameOrRegionName) { - if (!(this_present_tableNameOrRegionName && that_present_tableNameOrRegionName)) - return false; - if (!this.tableNameOrRegionName.equals(that.tableNameOrRegionName)) - return false; - } - return true; } @@ -11919,31 +12744,17 @@ public boolean equals(majorCompact_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetTableNameOrRegionName()) ? 131071 : 524287); - if (isSetTableNameOrRegionName()) - hashCode = hashCode * 8191 + tableNameOrRegionName.hashCode(); - return hashCode; } @Override - public int compareTo(majorCompact_args other) { + public int compareTo(getTableNames_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetTableNameOrRegionName(), other.isSetTableNameOrRegionName()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTableNameOrRegionName()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableNameOrRegionName, other.tableNameOrRegionName); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -11962,16 +12773,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("majorCompact_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNames_args("); boolean first = true; - sb.append("tableNameOrRegionName:"); - if (this.tableNameOrRegionName == null) { - sb.append("null"); - } else { - org.apache.thrift.TBaseHelper.toString(this.tableNameOrRegionName, sb); - } - first = false; sb.append(")"); return sb.toString(); } @@ -11997,15 +12801,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class majorCompact_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public majorCompact_argsStandardScheme getScheme() { - return new majorCompact_argsStandardScheme(); + private static class getTableNames_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNames_argsStandardScheme getScheme() { + return new getTableNames_argsStandardScheme(); } } - private static class majorCompact_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getTableNames_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -12015,14 +12819,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_args s break; } switch (schemeField.id) { - case 1: // TABLE_NAME_OR_REGION_NAME - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tableNameOrRegionName = iprot.readBinary(); - struct.setTableNameOrRegionNameIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -12034,50 +12830,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_args s struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.tableNameOrRegionName != null) { - oprot.writeFieldBegin(TABLE_NAME_OR_REGION_NAME_FIELD_DESC); - oprot.writeBinary(struct.tableNameOrRegionName); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class majorCompact_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public majorCompact_argsTupleScheme getScheme() { - return new majorCompact_argsTupleScheme(); + private static class getTableNames_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNames_argsTupleScheme getScheme() { + return new getTableNames_argsTupleScheme(); } } - private static class majorCompact_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getTableNames_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetTableNameOrRegionName()) { - optionals.set(0); - } - oprot.writeBitSet(optionals, 1); - if (struct.isSetTableNameOrRegionName()) { - oprot.writeBinary(struct.tableNameOrRegionName); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, majorCompact_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getTableNames_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(1); - if (incoming.get(0)) { - struct.tableNameOrRegionName = iprot.readBinary(); - struct.setTableNameOrRegionNameIsSet(true); - } } } @@ -12086,18 +12864,21 @@ private static S scheme(org.apache. } } - public static class majorCompact_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("majorCompact_result"); + public static class getTableNames_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNames_result"); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.LIST, (short)0); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new majorCompact_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new majorCompact_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNames_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNames_resultTupleSchemeFactory(); + public @org.apache.thrift.annotation.Nullable java.util.List success; // required public @org.apache.thrift.annotation.Nullable IOError io; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { + SUCCESS((short)0, "success"), IO((short)1, "io"); private static final java.util.Map byName = new java.util.HashMap(); @@ -12114,6 +12895,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; case 1: // IO return IO; default: @@ -12160,46 +12943,100 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Text")))); tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(majorCompact_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNames_result.class, metaDataMap); } - public majorCompact_result() { + public getTableNames_result() { } - public majorCompact_result( + public getTableNames_result( + java.util.List success, IOError io) { this(); + this.success = success; this.io = io; } /** * Performs a deep copy on other. */ - public majorCompact_result(majorCompact_result other) { + public getTableNames_result(getTableNames_result other) { + if (other.isSetSuccess()) { + java.util.List __this__success = new java.util.ArrayList(other.success.size()); + for (java.nio.ByteBuffer other_element : other.success) { + __this__success.add(org.apache.thrift.TBaseHelper.copyBinary(other_element)); + } + this.success = __this__success; + } if (other.isSetIo()) { this.io = new IOError(other.io); } } - public majorCompact_result deepCopy() { - return new majorCompact_result(this); + public getTableNames_result deepCopy() { + return new getTableNames_result(this); } @Override public void clear() { + this.success = null; this.io = null; } + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getSuccessIterator() { + return (this.success == null) ? null : this.success.iterator(); + } + + public void addToSuccess(java.nio.ByteBuffer elem) { + if (this.success == null) { + this.success = new java.util.ArrayList(); + } + this.success.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getSuccess() { + return this.success; + } + + public getTableNames_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.List success) { + this.success = success; + return this; + } + + public void unsetSuccess() { + this.success = null; + } + + /** Returns true if field success is set (has been assigned a value) and false otherwise */ + public boolean isSetSuccess() { + return this.success != null; + } + + public void setSuccessIsSet(boolean value) { + if (!value) { + this.success = null; + } + } + @org.apache.thrift.annotation.Nullable public IOError getIo() { return this.io; } - public majorCompact_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public getTableNames_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -12221,6 +13058,14 @@ public void setIoIsSet(boolean value) { public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.util.List)value); + } + break; + case IO: if (value == null) { unsetIo(); @@ -12235,6 +13080,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case SUCCESS: + return getSuccess(); + case IO: return getIo(); @@ -12249,6 +13097,8 @@ public boolean isSet(_Fields field) { } switch (field) { + case SUCCESS: + return isSetSuccess(); case IO: return isSetIo(); } @@ -12257,17 +13107,26 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof majorCompact_result) - return this.equals((majorCompact_result)that); + if (that instanceof getTableNames_result) + return this.equals((getTableNames_result)that); return false; } - public boolean equals(majorCompact_result that) { + public boolean equals(getTableNames_result that) { if (that == null) return false; if (this == that) return true; + boolean this_present_success = true && this.isSetSuccess(); + boolean that_present_success = true && that.isSetSuccess(); + if (this_present_success || that_present_success) { + if (!(this_present_success && that_present_success)) + return false; + if (!this.success.equals(that.success)) + return false; + } + boolean this_present_io = true && this.isSetIo(); boolean that_present_io = true && that.isSetIo(); if (this_present_io || that_present_io) { @@ -12284,6 +13143,10 @@ public boolean equals(majorCompact_result that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); + hashCode = hashCode * 8191 + ((isSetIo()) ? 131071 : 524287); if (isSetIo()) hashCode = hashCode * 8191 + io.hashCode(); @@ -12292,13 +13155,23 @@ public int hashCode() { } @Override - public int compareTo(majorCompact_result other) { + public int compareTo(getTableNames_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSuccess()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetIo(), other.isSetIo()); if (lastComparison != 0) { return lastComparison; @@ -12327,9 +13200,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("majorCompact_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNames_result("); boolean first = true; + sb.append("success:"); + if (this.success == null) { + sb.append("null"); + } else { + org.apache.thrift.TBaseHelper.toString(this.success, sb); + } + first = false; + if (!first) sb.append(", "); sb.append("io:"); if (this.io == null) { sb.append("null"); @@ -12362,15 +13243,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class majorCompact_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public majorCompact_resultStandardScheme getScheme() { - return new majorCompact_resultStandardScheme(); + private static class getTableNames_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNames_resultStandardScheme getScheme() { + return new getTableNames_resultStandardScheme(); } } - private static class majorCompact_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getTableNames_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -12380,6 +13261,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_result break; } switch (schemeField.id) { + case 0: // SUCCESS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list50 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list50.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem51; + for (int _i52 = 0; _i52 < _list50.size; ++_i52) + { + _elem51 = iprot.readBinary(); + struct.success.add(_elem51); + } + iprot.readListEnd(); + } + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; case 1: // IO if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.io = new IOError(); @@ -12400,10 +13299,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_result struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.success != null) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); + for (java.nio.ByteBuffer _iter53 : struct.success) + { + oprot.writeBinary(_iter53); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } if (struct.io != null) { oprot.writeFieldBegin(IO_FIELD_DESC); struct.io.write(oprot); @@ -12415,32 +13326,57 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_resul } - private static class majorCompact_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public majorCompact_resultTupleScheme getScheme() { - return new majorCompact_resultTupleScheme(); + private static class getTableNames_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNames_resultTupleScheme getScheme() { + return new getTableNames_resultTupleScheme(); } } - private static class majorCompact_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getTableNames_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetIo()) { + if (struct.isSetSuccess()) { optionals.set(0); } - oprot.writeBitSet(optionals, 1); + if (struct.isSetIo()) { + optionals.set(1); + } + oprot.writeBitSet(optionals, 2); + if (struct.isSetSuccess()) { + { + oprot.writeI32(struct.success.size()); + for (java.nio.ByteBuffer _iter54 : struct.success) + { + oprot.writeBinary(_iter54); + } + } + } if (struct.isSetIo()) { struct.io.write(oprot); } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, majorCompact_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getTableNames_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(1); + java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { + { + org.apache.thrift.protocol.TList _list55 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.success = new java.util.ArrayList(_list55.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem56; + for (int _i57 = 0; _i57 < _list55.size; ++_i57) + { + _elem56 = iprot.readBinary(); + struct.success.add(_elem56); + } + } + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { struct.io = new IOError(); struct.io.read(iprot); struct.setIoIsSet(true); @@ -12453,12 +13389,12 @@ private static S scheme(org.apache. } } - public static class getTableNames_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNames_args"); + public static class getTableNamesWithIsTableEnabled_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNamesWithIsTableEnabled_args"); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNames_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNames_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNamesWithIsTableEnabled_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNamesWithIsTableEnabled_argsTupleSchemeFactory(); /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ @@ -12522,20 +13458,20 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNames_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNamesWithIsTableEnabled_args.class, metaDataMap); } - public getTableNames_args() { + public getTableNamesWithIsTableEnabled_args() { } /** * Performs a deep copy on other. */ - public getTableNames_args(getTableNames_args other) { + public getTableNamesWithIsTableEnabled_args(getTableNamesWithIsTableEnabled_args other) { } - public getTableNames_args deepCopy() { - return new getTableNames_args(this); + public getTableNamesWithIsTableEnabled_args deepCopy() { + return new getTableNamesWithIsTableEnabled_args(this); } @Override @@ -12567,12 +13503,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getTableNames_args) - return this.equals((getTableNames_args)that); + if (that instanceof getTableNamesWithIsTableEnabled_args) + return this.equals((getTableNamesWithIsTableEnabled_args)that); return false; } - public boolean equals(getTableNames_args that) { + public boolean equals(getTableNamesWithIsTableEnabled_args that) { if (that == null) return false; if (this == that) @@ -12589,7 +13525,7 @@ public int hashCode() { } @Override - public int compareTo(getTableNames_args other) { + public int compareTo(getTableNamesWithIsTableEnabled_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -12614,7 +13550,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNames_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNamesWithIsTableEnabled_args("); boolean first = true; sb.append(")"); @@ -12642,15 +13578,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getTableNames_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNames_argsStandardScheme getScheme() { - return new getTableNames_argsStandardScheme(); + private static class getTableNamesWithIsTableEnabled_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNamesWithIsTableEnabled_argsStandardScheme getScheme() { + return new getTableNamesWithIsTableEnabled_argsStandardScheme(); } } - private static class getTableNames_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getTableNamesWithIsTableEnabled_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNamesWithIsTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -12671,7 +13607,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_args struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNamesWithIsTableEnabled_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -12681,21 +13617,21 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_args } - private static class getTableNames_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNames_argsTupleScheme getScheme() { - return new getTableNames_argsTupleScheme(); + private static class getTableNamesWithIsTableEnabled_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNamesWithIsTableEnabled_argsTupleScheme getScheme() { + return new getTableNamesWithIsTableEnabled_argsTupleScheme(); } } - private static class getTableNames_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getTableNamesWithIsTableEnabled_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIsTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getTableNames_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIsTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; } } @@ -12705,16 +13641,16 @@ private static S scheme(org.apache. } } - public static class getTableNames_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNames_result"); + public static class getTableNamesWithIsTableEnabled_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNamesWithIsTableEnabled_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.LIST, (short)0); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNames_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNames_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNamesWithIsTableEnabled_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNamesWithIsTableEnabled_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable IOError io; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ @@ -12785,19 +13721,20 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Text")))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Text"), + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)))); tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNames_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNamesWithIsTableEnabled_result.class, metaDataMap); } - public getTableNames_result() { + public getTableNamesWithIsTableEnabled_result() { } - public getTableNames_result( - java.util.List success, + public getTableNamesWithIsTableEnabled_result( + java.util.Map success, IOError io) { this(); @@ -12808,11 +13745,19 @@ public getTableNames_result( /** * Performs a deep copy on other. */ - public getTableNames_result(getTableNames_result other) { + public getTableNamesWithIsTableEnabled_result(getTableNamesWithIsTableEnabled_result other) { if (other.isSetSuccess()) { - java.util.List __this__success = new java.util.ArrayList(other.success.size()); - for (java.nio.ByteBuffer other_element : other.success) { - __this__success.add(org.apache.thrift.TBaseHelper.copyBinary(other_element)); + java.util.Map __this__success = new java.util.HashMap(other.success.size()); + for (java.util.Map.Entry other_element : other.success.entrySet()) { + + java.nio.ByteBuffer other_element_key = other_element.getKey(); + java.lang.Boolean other_element_value = other_element.getValue(); + + java.nio.ByteBuffer __this__success_copy_key = org.apache.thrift.TBaseHelper.copyBinary(other_element_key); + + java.lang.Boolean __this__success_copy_value = other_element_value; + + __this__success.put(__this__success_copy_key, __this__success_copy_value); } this.success = __this__success; } @@ -12821,8 +13766,8 @@ public getTableNames_result(getTableNames_result other) { } } - public getTableNames_result deepCopy() { - return new getTableNames_result(this); + public getTableNamesWithIsTableEnabled_result deepCopy() { + return new getTableNamesWithIsTableEnabled_result(this); } @Override @@ -12835,24 +13780,19 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getSuccessIterator() { - return (this.success == null) ? null : this.success.iterator(); - } - - public void addToSuccess(java.nio.ByteBuffer elem) { + public void putToSuccess(java.nio.ByteBuffer key, boolean val) { if (this.success == null) { - this.success = new java.util.ArrayList(); + this.success = new java.util.HashMap(); } - this.success.add(elem); + this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.List getSuccess() { + public java.util.Map getSuccess() { return this.success; } - public getTableNames_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.List success) { + public getTableNamesWithIsTableEnabled_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -12877,7 +13817,7 @@ public IOError getIo() { return this.io; } - public getTableNames_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public getTableNamesWithIsTableEnabled_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -12903,7 +13843,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.List)value); + setSuccess((java.util.Map)value); } break; @@ -12948,12 +13888,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getTableNames_result) - return this.equals((getTableNames_result)that); + if (that instanceof getTableNamesWithIsTableEnabled_result) + return this.equals((getTableNamesWithIsTableEnabled_result)that); return false; } - public boolean equals(getTableNames_result that) { + public boolean equals(getTableNamesWithIsTableEnabled_result that) { if (that == null) return false; if (this == that) @@ -12996,7 +13936,7 @@ public int hashCode() { } @Override - public int compareTo(getTableNames_result other) { + public int compareTo(getTableNamesWithIsTableEnabled_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -13041,14 +13981,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNames_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNamesWithIsTableEnabled_result("); boolean first = true; sb.append("success:"); if (this.success == null) { sb.append("null"); } else { - org.apache.thrift.TBaseHelper.toString(this.success, sb); + sb.append(this.success); } first = false; if (!first) sb.append(", "); @@ -13084,15 +14024,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getTableNames_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNames_resultStandardScheme getScheme() { - return new getTableNames_resultStandardScheme(); + private static class getTableNamesWithIsTableEnabled_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNamesWithIsTableEnabled_resultStandardScheme getScheme() { + return new getTableNamesWithIsTableEnabled_resultStandardScheme(); } } - private static class getTableNames_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getTableNamesWithIsTableEnabled_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNamesWithIsTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -13103,17 +14043,19 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_resul } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TList _list50 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list50.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem51; - for (int _i52 = 0; _i52 < _list50.size; ++_i52) + org.apache.thrift.protocol.TMap _map58 = iprot.readMapBegin(); + struct.success = new java.util.HashMap(2*_map58.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key59; + boolean _val60; + for (int _i61 = 0; _i61 < _map58.size; ++_i61) { - _elem51 = iprot.readBinary(); - struct.success.add(_elem51); + _key59 = iprot.readBinary(); + _val60 = iprot.readBool(); + struct.success.put(_key59, _val60); } - iprot.readListEnd(); + iprot.readMapEnd(); } struct.setSuccessIsSet(true); } else { @@ -13140,19 +14082,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_resul struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNamesWithIsTableEnabled_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (java.nio.ByteBuffer _iter53 : struct.success) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.BOOL, struct.success.size())); + for (java.util.Map.Entry _iter62 : struct.success.entrySet()) { - oprot.writeBinary(_iter53); + oprot.writeBinary(_iter62.getKey()); + oprot.writeBool(_iter62.getValue()); } - oprot.writeListEnd(); + oprot.writeMapEnd(); } oprot.writeFieldEnd(); } @@ -13167,16 +14110,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_resu } - private static class getTableNames_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNames_resultTupleScheme getScheme() { - return new getTableNames_resultTupleScheme(); + private static class getTableNamesWithIsTableEnabled_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNamesWithIsTableEnabled_resultTupleScheme getScheme() { + return new getTableNamesWithIsTableEnabled_resultTupleScheme(); } } - private static class getTableNames_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getTableNamesWithIsTableEnabled_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIsTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -13189,9 +14132,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_resul if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.nio.ByteBuffer _iter54 : struct.success) + for (java.util.Map.Entry _iter63 : struct.success.entrySet()) { - oprot.writeBinary(_iter54); + oprot.writeBinary(_iter63.getKey()); + oprot.writeBool(_iter63.getValue()); } } } @@ -13201,18 +14145,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_resul } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getTableNames_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIsTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list55 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.success = new java.util.ArrayList(_list55.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem56; - for (int _i57 = 0; _i57 < _list55.size; ++_i57) + org.apache.thrift.protocol.TMap _map64 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.BOOL); + struct.success = new java.util.HashMap(2*_map64.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key65; + boolean _val66; + for (int _i67 = 0; _i67 < _map64.size; ++_i67) { - _elem56 = iprot.readBinary(); - struct.success.add(_elem56); + _key65 = iprot.readBinary(); + _val66 = iprot.readBool(); + struct.success.put(_key65, _val66); } } struct.setSuccessIsSet(true); @@ -14024,16 +14970,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getColumnDescriptor case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map58 = iprot.readMapBegin(); - struct.success = new java.util.HashMap(2*_map58.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key59; - @org.apache.thrift.annotation.Nullable ColumnDescriptor _val60; - for (int _i61 = 0; _i61 < _map58.size; ++_i61) + org.apache.thrift.protocol.TMap _map68 = iprot.readMapBegin(); + struct.success = new java.util.HashMap(2*_map68.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key69; + @org.apache.thrift.annotation.Nullable ColumnDescriptor _val70; + for (int _i71 = 0; _i71 < _map68.size; ++_i71) { - _key59 = iprot.readBinary(); - _val60 = new ColumnDescriptor(); - _val60.read(iprot); - struct.success.put(_key59, _val60); + _key69 = iprot.readBinary(); + _val70 = new ColumnDescriptor(); + _val70.read(iprot); + struct.success.put(_key69, _val70); } iprot.readMapEnd(); } @@ -14070,10 +15016,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getColumnDescripto oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter62 : struct.success.entrySet()) + for (java.util.Map.Entry _iter72 : struct.success.entrySet()) { - oprot.writeBinary(_iter62.getKey()); - _iter62.getValue().write(oprot); + oprot.writeBinary(_iter72.getKey()); + _iter72.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -14112,10 +15058,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getColumnDescriptor if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter63 : struct.success.entrySet()) + for (java.util.Map.Entry _iter73 : struct.success.entrySet()) { - oprot.writeBinary(_iter63.getKey()); - _iter63.getValue().write(oprot); + oprot.writeBinary(_iter73.getKey()); + _iter73.getValue().write(oprot); } } } @@ -14130,16 +15076,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getColumnDescriptors java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map64 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.HashMap(2*_map64.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key65; - @org.apache.thrift.annotation.Nullable ColumnDescriptor _val66; - for (int _i67 = 0; _i67 < _map64.size; ++_i67) + org.apache.thrift.protocol.TMap _map74 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.HashMap(2*_map74.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key75; + @org.apache.thrift.annotation.Nullable ColumnDescriptor _val76; + for (int _i77 = 0; _i77 < _map74.size; ++_i77) { - _key65 = iprot.readBinary(); - _val66 = new ColumnDescriptor(); - _val66.read(iprot); - struct.success.put(_key65, _val66); + _key75 = iprot.readBinary(); + _val76 = new ColumnDescriptor(); + _val76.read(iprot); + struct.success.put(_key75, _val76); } } struct.setSuccessIsSet(true); @@ -14947,14 +15893,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableRegions_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list68 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list68.size); - @org.apache.thrift.annotation.Nullable TRegionInfo _elem69; - for (int _i70 = 0; _i70 < _list68.size; ++_i70) + org.apache.thrift.protocol.TList _list78 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list78.size); + @org.apache.thrift.annotation.Nullable TRegionInfo _elem79; + for (int _i80 = 0; _i80 < _list78.size; ++_i80) { - _elem69 = new TRegionInfo(); - _elem69.read(iprot); - struct.success.add(_elem69); + _elem79 = new TRegionInfo(); + _elem79.read(iprot); + struct.success.add(_elem79); } iprot.readListEnd(); } @@ -14991,9 +15937,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getTableRegions_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRegionInfo _iter71 : struct.success) + for (TRegionInfo _iter81 : struct.success) { - _iter71.write(oprot); + _iter81.write(oprot); } oprot.writeListEnd(); } @@ -15032,9 +15978,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getTableRegions_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRegionInfo _iter72 : struct.success) + for (TRegionInfo _iter82 : struct.success) { - _iter72.write(oprot); + _iter82.write(oprot); } } } @@ -15049,14 +15995,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getTableRegions_resu java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list73 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list73.size); - @org.apache.thrift.annotation.Nullable TRegionInfo _elem74; - for (int _i75 = 0; _i75 < _list73.size; ++_i75) + org.apache.thrift.protocol.TList _list83 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list83.size); + @org.apache.thrift.annotation.Nullable TRegionInfo _elem84; + for (int _i85 = 0; _i85 < _list83.size; ++_i85) { - _elem74 = new TRegionInfo(); - _elem74.read(iprot); - struct.success.add(_elem74); + _elem84 = new TRegionInfo(); + _elem84.read(iprot); + struct.success.add(_elem84); } } struct.setSuccessIsSet(true); @@ -15519,14 +16465,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, createTable_args st case 2: // COLUMN_FAMILIES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list76 = iprot.readListBegin(); - struct.columnFamilies = new java.util.ArrayList(_list76.size); - @org.apache.thrift.annotation.Nullable ColumnDescriptor _elem77; - for (int _i78 = 0; _i78 < _list76.size; ++_i78) + org.apache.thrift.protocol.TList _list86 = iprot.readListBegin(); + struct.columnFamilies = new java.util.ArrayList(_list86.size); + @org.apache.thrift.annotation.Nullable ColumnDescriptor _elem87; + for (int _i88 = 0; _i88 < _list86.size; ++_i88) { - _elem77 = new ColumnDescriptor(); - _elem77.read(iprot); - struct.columnFamilies.add(_elem77); + _elem87 = new ColumnDescriptor(); + _elem87.read(iprot); + struct.columnFamilies.add(_elem87); } iprot.readListEnd(); } @@ -15559,9 +16505,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, createTable_args s oprot.writeFieldBegin(COLUMN_FAMILIES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.columnFamilies.size())); - for (ColumnDescriptor _iter79 : struct.columnFamilies) + for (ColumnDescriptor _iter89 : struct.columnFamilies) { - _iter79.write(oprot); + _iter89.write(oprot); } oprot.writeListEnd(); } @@ -15598,9 +16544,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, createTable_args st if (struct.isSetColumnFamilies()) { { oprot.writeI32(struct.columnFamilies.size()); - for (ColumnDescriptor _iter80 : struct.columnFamilies) + for (ColumnDescriptor _iter90 : struct.columnFamilies) { - _iter80.write(oprot); + _iter90.write(oprot); } } } @@ -15616,14 +16562,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, createTable_args str } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list81 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.columnFamilies = new java.util.ArrayList(_list81.size); - @org.apache.thrift.annotation.Nullable ColumnDescriptor _elem82; - for (int _i83 = 0; _i83 < _list81.size; ++_i83) + org.apache.thrift.protocol.TList _list91 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.columnFamilies = new java.util.ArrayList(_list91.size); + @org.apache.thrift.annotation.Nullable ColumnDescriptor _elem92; + for (int _i93 = 0; _i93 < _list91.size; ++_i93) { - _elem82 = new ColumnDescriptor(); - _elem82.read(iprot); - struct.columnFamilies.add(_elem82); + _elem92 = new ColumnDescriptor(); + _elem92.read(iprot); + struct.columnFamilies.add(_elem92); } } struct.setColumnFamiliesIsSet(true); @@ -17653,15 +18599,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_args struct) th case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map84 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map84.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key85; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val86; - for (int _i87 = 0; _i87 < _map84.size; ++_i87) + org.apache.thrift.protocol.TMap _map94 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map94.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key95; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val96; + for (int _i97 = 0; _i97 < _map94.size; ++_i97) { - _key85 = iprot.readBinary(); - _val86 = iprot.readBinary(); - struct.attributes.put(_key85, _val86); + _key95 = iprot.readBinary(); + _val96 = iprot.readBinary(); + struct.attributes.put(_key95, _val96); } iprot.readMapEnd(); } @@ -17704,10 +18650,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_args struct) t oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter88 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter98 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter88.getKey()); - oprot.writeBinary(_iter88.getValue()); + oprot.writeBinary(_iter98.getKey()); + oprot.writeBinary(_iter98.getValue()); } oprot.writeMapEnd(); } @@ -17756,10 +18702,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_args struct) th if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter89 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter99 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter89.getKey()); - oprot.writeBinary(_iter89.getValue()); + oprot.writeBinary(_iter99.getKey()); + oprot.writeBinary(_iter99.getValue()); } } } @@ -17783,15 +18729,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_args struct) thr } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map90 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map90.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key91; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val92; - for (int _i93 = 0; _i93 < _map90.size; ++_i93) + org.apache.thrift.protocol.TMap _map100 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map100.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key101; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val102; + for (int _i103 = 0; _i103 < _map100.size; ++_i103) { - _key91 = iprot.readBinary(); - _val92 = iprot.readBinary(); - struct.attributes.put(_key91, _val92); + _key101 = iprot.readBinary(); + _val102 = iprot.readBinary(); + struct.attributes.put(_key101, _val102); } } struct.setAttributesIsSet(true); @@ -18204,14 +19150,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_result struct) case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list94 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list94.size); - @org.apache.thrift.annotation.Nullable TCell _elem95; - for (int _i96 = 0; _i96 < _list94.size; ++_i96) + org.apache.thrift.protocol.TList _list104 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list104.size); + @org.apache.thrift.annotation.Nullable TCell _elem105; + for (int _i106 = 0; _i106 < _list104.size; ++_i106) { - _elem95 = new TCell(); - _elem95.read(iprot); - struct.success.add(_elem95); + _elem105 = new TCell(); + _elem105.read(iprot); + struct.success.add(_elem105); } iprot.readListEnd(); } @@ -18248,9 +19194,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_result struct) oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TCell _iter97 : struct.success) + for (TCell _iter107 : struct.success) { - _iter97.write(oprot); + _iter107.write(oprot); } oprot.writeListEnd(); } @@ -18289,9 +19235,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_result struct) if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TCell _iter98 : struct.success) + for (TCell _iter108 : struct.success) { - _iter98.write(oprot); + _iter108.write(oprot); } } } @@ -18306,14 +19252,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_result struct) t java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list99 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list99.size); - @org.apache.thrift.annotation.Nullable TCell _elem100; - for (int _i101 = 0; _i101 < _list99.size; ++_i101) + org.apache.thrift.protocol.TList _list109 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list109.size); + @org.apache.thrift.annotation.Nullable TCell _elem110; + for (int _i111 = 0; _i111 < _list109.size; ++_i111) { - _elem100 = new TCell(); - _elem100.read(iprot); - struct.success.add(_elem100); + _elem110 = new TCell(); + _elem110.read(iprot); + struct.success.add(_elem110); } } struct.setSuccessIsSet(true); @@ -19109,15 +20055,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getVer_args struct) case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map102 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map102.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key103; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val104; - for (int _i105 = 0; _i105 < _map102.size; ++_i105) + org.apache.thrift.protocol.TMap _map112 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map112.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key113; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val114; + for (int _i115 = 0; _i115 < _map112.size; ++_i115) { - _key103 = iprot.readBinary(); - _val104 = iprot.readBinary(); - struct.attributes.put(_key103, _val104); + _key113 = iprot.readBinary(); + _val114 = iprot.readBinary(); + struct.attributes.put(_key113, _val114); } iprot.readMapEnd(); } @@ -19163,10 +20109,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getVer_args struct oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter106 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter116 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter106.getKey()); - oprot.writeBinary(_iter106.getValue()); + oprot.writeBinary(_iter116.getKey()); + oprot.writeBinary(_iter116.getValue()); } oprot.writeMapEnd(); } @@ -19221,10 +20167,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getVer_args struct) if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter107 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter117 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter107.getKey()); - oprot.writeBinary(_iter107.getValue()); + oprot.writeBinary(_iter117.getKey()); + oprot.writeBinary(_iter117.getValue()); } } } @@ -19252,15 +20198,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getVer_args struct) } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map108 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map108.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key109; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val110; - for (int _i111 = 0; _i111 < _map108.size; ++_i111) + org.apache.thrift.protocol.TMap _map118 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map118.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key119; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val120; + for (int _i121 = 0; _i121 < _map118.size; ++_i121) { - _key109 = iprot.readBinary(); - _val110 = iprot.readBinary(); - struct.attributes.put(_key109, _val110); + _key119 = iprot.readBinary(); + _val120 = iprot.readBinary(); + struct.attributes.put(_key119, _val120); } } struct.setAttributesIsSet(true); @@ -19673,14 +20619,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getVer_result struc case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list112 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list112.size); - @org.apache.thrift.annotation.Nullable TCell _elem113; - for (int _i114 = 0; _i114 < _list112.size; ++_i114) + org.apache.thrift.protocol.TList _list122 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list122.size); + @org.apache.thrift.annotation.Nullable TCell _elem123; + for (int _i124 = 0; _i124 < _list122.size; ++_i124) { - _elem113 = new TCell(); - _elem113.read(iprot); - struct.success.add(_elem113); + _elem123 = new TCell(); + _elem123.read(iprot); + struct.success.add(_elem123); } iprot.readListEnd(); } @@ -19717,9 +20663,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getVer_result stru oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TCell _iter115 : struct.success) + for (TCell _iter125 : struct.success) { - _iter115.write(oprot); + _iter125.write(oprot); } oprot.writeListEnd(); } @@ -19758,9 +20704,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getVer_result struc if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TCell _iter116 : struct.success) + for (TCell _iter126 : struct.success) { - _iter116.write(oprot); + _iter126.write(oprot); } } } @@ -19775,14 +20721,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getVer_result struct java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list117 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list117.size); - @org.apache.thrift.annotation.Nullable TCell _elem118; - for (int _i119 = 0; _i119 < _list117.size; ++_i119) + org.apache.thrift.protocol.TList _list127 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list127.size); + @org.apache.thrift.annotation.Nullable TCell _elem128; + for (int _i129 = 0; _i129 < _list127.size; ++_i129) { - _elem118 = new TCell(); - _elem118.read(iprot); - struct.success.add(_elem118); + _elem128 = new TCell(); + _elem128.read(iprot); + struct.success.add(_elem128); } } struct.setSuccessIsSet(true); @@ -20673,15 +21619,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getVerTs_args struc case 6: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map120 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map120.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key121; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val122; - for (int _i123 = 0; _i123 < _map120.size; ++_i123) + org.apache.thrift.protocol.TMap _map130 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map130.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key131; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val132; + for (int _i133 = 0; _i133 < _map130.size; ++_i133) { - _key121 = iprot.readBinary(); - _val122 = iprot.readBinary(); - struct.attributes.put(_key121, _val122); + _key131 = iprot.readBinary(); + _val132 = iprot.readBinary(); + struct.attributes.put(_key131, _val132); } iprot.readMapEnd(); } @@ -20730,10 +21676,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getVerTs_args stru oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter124 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter134 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter124.getKey()); - oprot.writeBinary(_iter124.getValue()); + oprot.writeBinary(_iter134.getKey()); + oprot.writeBinary(_iter134.getValue()); } oprot.writeMapEnd(); } @@ -20794,10 +21740,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getVerTs_args struc if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter125 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter135 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter125.getKey()); - oprot.writeBinary(_iter125.getValue()); + oprot.writeBinary(_iter135.getKey()); + oprot.writeBinary(_iter135.getValue()); } } } @@ -20829,15 +21775,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getVerTs_args struct } if (incoming.get(5)) { { - org.apache.thrift.protocol.TMap _map126 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map126.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key127; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val128; - for (int _i129 = 0; _i129 < _map126.size; ++_i129) + org.apache.thrift.protocol.TMap _map136 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map136.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key137; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val138; + for (int _i139 = 0; _i139 < _map136.size; ++_i139) { - _key127 = iprot.readBinary(); - _val128 = iprot.readBinary(); - struct.attributes.put(_key127, _val128); + _key137 = iprot.readBinary(); + _val138 = iprot.readBinary(); + struct.attributes.put(_key137, _val138); } } struct.setAttributesIsSet(true); @@ -21250,14 +22196,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getVerTs_result str case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list130 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list130.size); - @org.apache.thrift.annotation.Nullable TCell _elem131; - for (int _i132 = 0; _i132 < _list130.size; ++_i132) + org.apache.thrift.protocol.TList _list140 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list140.size); + @org.apache.thrift.annotation.Nullable TCell _elem141; + for (int _i142 = 0; _i142 < _list140.size; ++_i142) { - _elem131 = new TCell(); - _elem131.read(iprot); - struct.success.add(_elem131); + _elem141 = new TCell(); + _elem141.read(iprot); + struct.success.add(_elem141); } iprot.readListEnd(); } @@ -21294,9 +22240,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getVerTs_result st oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TCell _iter133 : struct.success) + for (TCell _iter143 : struct.success) { - _iter133.write(oprot); + _iter143.write(oprot); } oprot.writeListEnd(); } @@ -21335,9 +22281,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getVerTs_result str if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TCell _iter134 : struct.success) + for (TCell _iter144 : struct.success) { - _iter134.write(oprot); + _iter144.write(oprot); } } } @@ -21352,14 +22298,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getVerTs_result stru java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list135 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list135.size); - @org.apache.thrift.annotation.Nullable TCell _elem136; - for (int _i137 = 0; _i137 < _list135.size; ++_i137) + org.apache.thrift.protocol.TList _list145 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list145.size); + @org.apache.thrift.annotation.Nullable TCell _elem146; + for (int _i147 = 0; _i147 < _list145.size; ++_i147) { - _elem136 = new TCell(); - _elem136.read(iprot); - struct.success.add(_elem136); + _elem146 = new TCell(); + _elem146.read(iprot); + struct.success.add(_elem146); } } struct.setSuccessIsSet(true); @@ -21941,15 +22887,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRow_args struct) case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map138 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map138.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key139; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val140; - for (int _i141 = 0; _i141 < _map138.size; ++_i141) + org.apache.thrift.protocol.TMap _map148 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map148.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key149; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val150; + for (int _i151 = 0; _i151 < _map148.size; ++_i151) { - _key139 = iprot.readBinary(); - _val140 = iprot.readBinary(); - struct.attributes.put(_key139, _val140); + _key149 = iprot.readBinary(); + _val150 = iprot.readBinary(); + struct.attributes.put(_key149, _val150); } iprot.readMapEnd(); } @@ -21987,10 +22933,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRow_args struct oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter142 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter152 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter142.getKey()); - oprot.writeBinary(_iter142.getValue()); + oprot.writeBinary(_iter152.getKey()); + oprot.writeBinary(_iter152.getValue()); } oprot.writeMapEnd(); } @@ -22033,10 +22979,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRow_args struct) if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter143 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter153 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter143.getKey()); - oprot.writeBinary(_iter143.getValue()); + oprot.writeBinary(_iter153.getKey()); + oprot.writeBinary(_iter153.getValue()); } } } @@ -22056,15 +23002,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRow_args struct) } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map144 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map144.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key145; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val146; - for (int _i147 = 0; _i147 < _map144.size; ++_i147) + org.apache.thrift.protocol.TMap _map154 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map154.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key155; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val156; + for (int _i157 = 0; _i157 < _map154.size; ++_i157) { - _key145 = iprot.readBinary(); - _val146 = iprot.readBinary(); - struct.attributes.put(_key145, _val146); + _key155 = iprot.readBinary(); + _val156 = iprot.readBinary(); + struct.attributes.put(_key155, _val156); } } struct.setAttributesIsSet(true); @@ -22477,14 +23423,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRow_result struc case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list148 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list148.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem149; - for (int _i150 = 0; _i150 < _list148.size; ++_i150) + org.apache.thrift.protocol.TList _list158 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list158.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem159; + for (int _i160 = 0; _i160 < _list158.size; ++_i160) { - _elem149 = new TRowResult(); - _elem149.read(iprot); - struct.success.add(_elem149); + _elem159 = new TRowResult(); + _elem159.read(iprot); + struct.success.add(_elem159); } iprot.readListEnd(); } @@ -22521,9 +23467,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRow_result stru oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter151 : struct.success) + for (TRowResult _iter161 : struct.success) { - _iter151.write(oprot); + _iter161.write(oprot); } oprot.writeListEnd(); } @@ -22562,9 +23508,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRow_result struc if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter152 : struct.success) + for (TRowResult _iter162 : struct.success) { - _iter152.write(oprot); + _iter162.write(oprot); } } } @@ -22579,14 +23525,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRow_result struct java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list153 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list153.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem154; - for (int _i155 = 0; _i155 < _list153.size; ++_i155) + org.apache.thrift.protocol.TList _list163 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list163.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem164; + for (int _i165 = 0; _i165 < _list163.size; ++_i165) { - _elem154 = new TRowResult(); - _elem154.read(iprot); - struct.success.add(_elem154); + _elem164 = new TRowResult(); + _elem164.read(iprot); + struct.success.add(_elem164); } } struct.setSuccessIsSet(true); @@ -23283,13 +24229,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumns_a case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list156 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list156.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem157; - for (int _i158 = 0; _i158 < _list156.size; ++_i158) + org.apache.thrift.protocol.TList _list166 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list166.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem167; + for (int _i168 = 0; _i168 < _list166.size; ++_i168) { - _elem157 = iprot.readBinary(); - struct.columns.add(_elem157); + _elem167 = iprot.readBinary(); + struct.columns.add(_elem167); } iprot.readListEnd(); } @@ -23301,15 +24247,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumns_a case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map159 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map159.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key160; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val161; - for (int _i162 = 0; _i162 < _map159.size; ++_i162) + org.apache.thrift.protocol.TMap _map169 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map169.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key170; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val171; + for (int _i172 = 0; _i172 < _map169.size; ++_i172) { - _key160 = iprot.readBinary(); - _val161 = iprot.readBinary(); - struct.attributes.put(_key160, _val161); + _key170 = iprot.readBinary(); + _val171 = iprot.readBinary(); + struct.attributes.put(_key170, _val171); } iprot.readMapEnd(); } @@ -23347,9 +24293,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumns_ oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter163 : struct.columns) + for (java.nio.ByteBuffer _iter173 : struct.columns) { - oprot.writeBinary(_iter163); + oprot.writeBinary(_iter173); } oprot.writeListEnd(); } @@ -23359,10 +24305,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumns_ oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter164 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter174 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter164.getKey()); - oprot.writeBinary(_iter164.getValue()); + oprot.writeBinary(_iter174.getKey()); + oprot.writeBinary(_iter174.getValue()); } oprot.writeMapEnd(); } @@ -23408,19 +24354,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumns_a if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter165 : struct.columns) + for (java.nio.ByteBuffer _iter175 : struct.columns) { - oprot.writeBinary(_iter165); + oprot.writeBinary(_iter175); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter166 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter176 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter166.getKey()); - oprot.writeBinary(_iter166.getValue()); + oprot.writeBinary(_iter176.getKey()); + oprot.writeBinary(_iter176.getValue()); } } } @@ -23440,28 +24386,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumns_ar } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list167 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list167.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem168; - for (int _i169 = 0; _i169 < _list167.size; ++_i169) + org.apache.thrift.protocol.TList _list177 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list177.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem178; + for (int _i179 = 0; _i179 < _list177.size; ++_i179) { - _elem168 = iprot.readBinary(); - struct.columns.add(_elem168); + _elem178 = iprot.readBinary(); + struct.columns.add(_elem178); } } struct.setColumnsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map170 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map170.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key171; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val172; - for (int _i173 = 0; _i173 < _map170.size; ++_i173) + org.apache.thrift.protocol.TMap _map180 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map180.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key181; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val182; + for (int _i183 = 0; _i183 < _map180.size; ++_i183) { - _key171 = iprot.readBinary(); - _val172 = iprot.readBinary(); - struct.attributes.put(_key171, _val172); + _key181 = iprot.readBinary(); + _val182 = iprot.readBinary(); + struct.attributes.put(_key181, _val182); } } struct.setAttributesIsSet(true); @@ -23874,14 +24820,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumns_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list174 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list174.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem175; - for (int _i176 = 0; _i176 < _list174.size; ++_i176) + org.apache.thrift.protocol.TList _list184 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list184.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem185; + for (int _i186 = 0; _i186 < _list184.size; ++_i186) { - _elem175 = new TRowResult(); - _elem175.read(iprot); - struct.success.add(_elem175); + _elem185 = new TRowResult(); + _elem185.read(iprot); + struct.success.add(_elem185); } iprot.readListEnd(); } @@ -23918,9 +24864,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumns_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter177 : struct.success) + for (TRowResult _iter187 : struct.success) { - _iter177.write(oprot); + _iter187.write(oprot); } oprot.writeListEnd(); } @@ -23959,9 +24905,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumns_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter178 : struct.success) + for (TRowResult _iter188 : struct.success) { - _iter178.write(oprot); + _iter188.write(oprot); } } } @@ -23976,14 +24922,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumns_re java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list179 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list179.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem180; - for (int _i181 = 0; _i181 < _list179.size; ++_i181) + org.apache.thrift.protocol.TList _list189 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list189.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem190; + for (int _i191 = 0; _i191 < _list189.size; ++_i191) { - _elem180 = new TRowResult(); - _elem180.read(iprot); - struct.success.add(_elem180); + _elem190 = new TRowResult(); + _elem190.read(iprot); + struct.success.add(_elem190); } } struct.setSuccessIsSet(true); @@ -24664,15 +25610,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowTs_args struc case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map182 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map182.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key183; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val184; - for (int _i185 = 0; _i185 < _map182.size; ++_i185) + org.apache.thrift.protocol.TMap _map192 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map192.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key193; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val194; + for (int _i195 = 0; _i195 < _map192.size; ++_i195) { - _key183 = iprot.readBinary(); - _val184 = iprot.readBinary(); - struct.attributes.put(_key183, _val184); + _key193 = iprot.readBinary(); + _val194 = iprot.readBinary(); + struct.attributes.put(_key193, _val194); } iprot.readMapEnd(); } @@ -24713,10 +25659,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowTs_args stru oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter186 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter196 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter186.getKey()); - oprot.writeBinary(_iter186.getValue()); + oprot.writeBinary(_iter196.getKey()); + oprot.writeBinary(_iter196.getValue()); } oprot.writeMapEnd(); } @@ -24765,10 +25711,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowTs_args struc if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter187 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter197 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter187.getKey()); - oprot.writeBinary(_iter187.getValue()); + oprot.writeBinary(_iter197.getKey()); + oprot.writeBinary(_iter197.getValue()); } } } @@ -24792,15 +25738,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowTs_args struct } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map188 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map188.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key189; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val190; - for (int _i191 = 0; _i191 < _map188.size; ++_i191) + org.apache.thrift.protocol.TMap _map198 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map198.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key199; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val200; + for (int _i201 = 0; _i201 < _map198.size; ++_i201) { - _key189 = iprot.readBinary(); - _val190 = iprot.readBinary(); - struct.attributes.put(_key189, _val190); + _key199 = iprot.readBinary(); + _val200 = iprot.readBinary(); + struct.attributes.put(_key199, _val200); } } struct.setAttributesIsSet(true); @@ -25213,14 +26159,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowTs_result str case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list192 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list192.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem193; - for (int _i194 = 0; _i194 < _list192.size; ++_i194) + org.apache.thrift.protocol.TList _list202 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list202.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem203; + for (int _i204 = 0; _i204 < _list202.size; ++_i204) { - _elem193 = new TRowResult(); - _elem193.read(iprot); - struct.success.add(_elem193); + _elem203 = new TRowResult(); + _elem203.read(iprot); + struct.success.add(_elem203); } iprot.readListEnd(); } @@ -25257,9 +26203,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowTs_result st oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter195 : struct.success) + for (TRowResult _iter205 : struct.success) { - _iter195.write(oprot); + _iter205.write(oprot); } oprot.writeListEnd(); } @@ -25298,9 +26244,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowTs_result str if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter196 : struct.success) + for (TRowResult _iter206 : struct.success) { - _iter196.write(oprot); + _iter206.write(oprot); } } } @@ -25315,14 +26261,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowTs_result stru java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list197 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list197.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem198; - for (int _i199 = 0; _i199 < _list197.size; ++_i199) + org.apache.thrift.protocol.TList _list207 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list207.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem208; + for (int _i209 = 0; _i209 < _list207.size; ++_i209) { - _elem198 = new TRowResult(); - _elem198.read(iprot); - struct.success.add(_elem198); + _elem208 = new TRowResult(); + _elem208.read(iprot); + struct.success.add(_elem208); } } struct.setSuccessIsSet(true); @@ -26098,13 +27044,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumnsTs case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list200 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list200.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem201; - for (int _i202 = 0; _i202 < _list200.size; ++_i202) + org.apache.thrift.protocol.TList _list210 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list210.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem211; + for (int _i212 = 0; _i212 < _list210.size; ++_i212) { - _elem201 = iprot.readBinary(); - struct.columns.add(_elem201); + _elem211 = iprot.readBinary(); + struct.columns.add(_elem211); } iprot.readListEnd(); } @@ -26124,15 +27070,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumnsTs case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map203 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map203.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key204; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val205; - for (int _i206 = 0; _i206 < _map203.size; ++_i206) + org.apache.thrift.protocol.TMap _map213 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map213.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key214; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val215; + for (int _i216 = 0; _i216 < _map213.size; ++_i216) { - _key204 = iprot.readBinary(); - _val205 = iprot.readBinary(); - struct.attributes.put(_key204, _val205); + _key214 = iprot.readBinary(); + _val215 = iprot.readBinary(); + struct.attributes.put(_key214, _val215); } iprot.readMapEnd(); } @@ -26170,9 +27116,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumnsT oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter207 : struct.columns) + for (java.nio.ByteBuffer _iter217 : struct.columns) { - oprot.writeBinary(_iter207); + oprot.writeBinary(_iter217); } oprot.writeListEnd(); } @@ -26185,10 +27131,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumnsT oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter208 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter218 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter208.getKey()); - oprot.writeBinary(_iter208.getValue()); + oprot.writeBinary(_iter218.getKey()); + oprot.writeBinary(_iter218.getValue()); } oprot.writeMapEnd(); } @@ -26237,9 +27183,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter209 : struct.columns) + for (java.nio.ByteBuffer _iter219 : struct.columns) { - oprot.writeBinary(_iter209); + oprot.writeBinary(_iter219); } } } @@ -26249,10 +27195,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter210 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter220 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter210.getKey()); - oprot.writeBinary(_iter210.getValue()); + oprot.writeBinary(_iter220.getKey()); + oprot.writeBinary(_iter220.getValue()); } } } @@ -26272,13 +27218,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs_ } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list211 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list211.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem212; - for (int _i213 = 0; _i213 < _list211.size; ++_i213) + org.apache.thrift.protocol.TList _list221 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list221.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem222; + for (int _i223 = 0; _i223 < _list221.size; ++_i223) { - _elem212 = iprot.readBinary(); - struct.columns.add(_elem212); + _elem222 = iprot.readBinary(); + struct.columns.add(_elem222); } } struct.setColumnsIsSet(true); @@ -26289,15 +27235,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs_ } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map214 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map214.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key215; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val216; - for (int _i217 = 0; _i217 < _map214.size; ++_i217) + org.apache.thrift.protocol.TMap _map224 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map224.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key225; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val226; + for (int _i227 = 0; _i227 < _map224.size; ++_i227) { - _key215 = iprot.readBinary(); - _val216 = iprot.readBinary(); - struct.attributes.put(_key215, _val216); + _key225 = iprot.readBinary(); + _val226 = iprot.readBinary(); + struct.attributes.put(_key225, _val226); } } struct.setAttributesIsSet(true); @@ -26710,14 +27656,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumnsTs case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list218 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list218.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem219; - for (int _i220 = 0; _i220 < _list218.size; ++_i220) + org.apache.thrift.protocol.TList _list228 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list228.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem229; + for (int _i230 = 0; _i230 < _list228.size; ++_i230) { - _elem219 = new TRowResult(); - _elem219.read(iprot); - struct.success.add(_elem219); + _elem229 = new TRowResult(); + _elem229.read(iprot); + struct.success.add(_elem229); } iprot.readListEnd(); } @@ -26754,9 +27700,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumnsT oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter221 : struct.success) + for (TRowResult _iter231 : struct.success) { - _iter221.write(oprot); + _iter231.write(oprot); } oprot.writeListEnd(); } @@ -26795,9 +27741,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter222 : struct.success) + for (TRowResult _iter232 : struct.success) { - _iter222.write(oprot); + _iter232.write(oprot); } } } @@ -26812,14 +27758,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs_ java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list223 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list223.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem224; - for (int _i225 = 0; _i225 < _list223.size; ++_i225) + org.apache.thrift.protocol.TList _list233 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list233.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem234; + for (int _i235 = 0; _i235 < _list233.size; ++_i235) { - _elem224 = new TRowResult(); - _elem224.read(iprot); - struct.success.add(_elem224); + _elem234 = new TRowResult(); + _elem234.read(iprot); + struct.success.add(_elem234); } } struct.setSuccessIsSet(true); @@ -27401,13 +28347,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRows_args struct case 2: // ROWS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list226 = iprot.readListBegin(); - struct.rows = new java.util.ArrayList(_list226.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem227; - for (int _i228 = 0; _i228 < _list226.size; ++_i228) + org.apache.thrift.protocol.TList _list236 = iprot.readListBegin(); + struct.rows = new java.util.ArrayList(_list236.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem237; + for (int _i238 = 0; _i238 < _list236.size; ++_i238) { - _elem227 = iprot.readBinary(); - struct.rows.add(_elem227); + _elem237 = iprot.readBinary(); + struct.rows.add(_elem237); } iprot.readListEnd(); } @@ -27419,15 +28365,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRows_args struct case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map229 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map229.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key230; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val231; - for (int _i232 = 0; _i232 < _map229.size; ++_i232) + org.apache.thrift.protocol.TMap _map239 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map239.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key240; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val241; + for (int _i242 = 0; _i242 < _map239.size; ++_i242) { - _key230 = iprot.readBinary(); - _val231 = iprot.readBinary(); - struct.attributes.put(_key230, _val231); + _key240 = iprot.readBinary(); + _val241 = iprot.readBinary(); + struct.attributes.put(_key240, _val241); } iprot.readMapEnd(); } @@ -27460,9 +28406,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRows_args struc oprot.writeFieldBegin(ROWS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.rows.size())); - for (java.nio.ByteBuffer _iter233 : struct.rows) + for (java.nio.ByteBuffer _iter243 : struct.rows) { - oprot.writeBinary(_iter233); + oprot.writeBinary(_iter243); } oprot.writeListEnd(); } @@ -27472,10 +28418,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRows_args struc oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter234 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter244 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter234.getKey()); - oprot.writeBinary(_iter234.getValue()); + oprot.writeBinary(_iter244.getKey()); + oprot.writeBinary(_iter244.getValue()); } oprot.writeMapEnd(); } @@ -27515,19 +28461,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRows_args struct if (struct.isSetRows()) { { oprot.writeI32(struct.rows.size()); - for (java.nio.ByteBuffer _iter235 : struct.rows) + for (java.nio.ByteBuffer _iter245 : struct.rows) { - oprot.writeBinary(_iter235); + oprot.writeBinary(_iter245); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter236 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter246 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter236.getKey()); - oprot.writeBinary(_iter236.getValue()); + oprot.writeBinary(_iter246.getKey()); + oprot.writeBinary(_iter246.getValue()); } } } @@ -27543,28 +28489,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRows_args struct) } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list237 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.rows = new java.util.ArrayList(_list237.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem238; - for (int _i239 = 0; _i239 < _list237.size; ++_i239) + org.apache.thrift.protocol.TList _list247 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.rows = new java.util.ArrayList(_list247.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem248; + for (int _i249 = 0; _i249 < _list247.size; ++_i249) { - _elem238 = iprot.readBinary(); - struct.rows.add(_elem238); + _elem248 = iprot.readBinary(); + struct.rows.add(_elem248); } } struct.setRowsIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map240 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map240.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key241; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val242; - for (int _i243 = 0; _i243 < _map240.size; ++_i243) + org.apache.thrift.protocol.TMap _map250 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map250.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key251; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val252; + for (int _i253 = 0; _i253 < _map250.size; ++_i253) { - _key241 = iprot.readBinary(); - _val242 = iprot.readBinary(); - struct.attributes.put(_key241, _val242); + _key251 = iprot.readBinary(); + _val252 = iprot.readBinary(); + struct.attributes.put(_key251, _val252); } } struct.setAttributesIsSet(true); @@ -27977,14 +28923,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRows_result stru case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list244 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list244.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem245; - for (int _i246 = 0; _i246 < _list244.size; ++_i246) + org.apache.thrift.protocol.TList _list254 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list254.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem255; + for (int _i256 = 0; _i256 < _list254.size; ++_i256) { - _elem245 = new TRowResult(); - _elem245.read(iprot); - struct.success.add(_elem245); + _elem255 = new TRowResult(); + _elem255.read(iprot); + struct.success.add(_elem255); } iprot.readListEnd(); } @@ -28021,9 +28967,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRows_result str oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter247 : struct.success) + for (TRowResult _iter257 : struct.success) { - _iter247.write(oprot); + _iter257.write(oprot); } oprot.writeListEnd(); } @@ -28062,9 +29008,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRows_result stru if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter248 : struct.success) + for (TRowResult _iter258 : struct.success) { - _iter248.write(oprot); + _iter258.write(oprot); } } } @@ -28079,14 +29025,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRows_result struc java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list249 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list249.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem250; - for (int _i251 = 0; _i251 < _list249.size; ++_i251) + org.apache.thrift.protocol.TList _list259 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list259.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem260; + for (int _i261 = 0; _i261 < _list259.size; ++_i261) { - _elem250 = new TRowResult(); - _elem250.read(iprot); - struct.success.add(_elem250); + _elem260 = new TRowResult(); + _elem260.read(iprot); + struct.success.add(_elem260); } } struct.setSuccessIsSet(true); @@ -28783,13 +29729,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumns_ case 2: // ROWS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list252 = iprot.readListBegin(); - struct.rows = new java.util.ArrayList(_list252.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem253; - for (int _i254 = 0; _i254 < _list252.size; ++_i254) + org.apache.thrift.protocol.TList _list262 = iprot.readListBegin(); + struct.rows = new java.util.ArrayList(_list262.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem263; + for (int _i264 = 0; _i264 < _list262.size; ++_i264) { - _elem253 = iprot.readBinary(); - struct.rows.add(_elem253); + _elem263 = iprot.readBinary(); + struct.rows.add(_elem263); } iprot.readListEnd(); } @@ -28801,13 +29747,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumns_ case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list255 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list255.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem256; - for (int _i257 = 0; _i257 < _list255.size; ++_i257) + org.apache.thrift.protocol.TList _list265 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list265.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem266; + for (int _i267 = 0; _i267 < _list265.size; ++_i267) { - _elem256 = iprot.readBinary(); - struct.columns.add(_elem256); + _elem266 = iprot.readBinary(); + struct.columns.add(_elem266); } iprot.readListEnd(); } @@ -28819,15 +29765,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumns_ case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map258 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map258.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key259; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val260; - for (int _i261 = 0; _i261 < _map258.size; ++_i261) + org.apache.thrift.protocol.TMap _map268 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map268.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key269; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val270; + for (int _i271 = 0; _i271 < _map268.size; ++_i271) { - _key259 = iprot.readBinary(); - _val260 = iprot.readBinary(); - struct.attributes.put(_key259, _val260); + _key269 = iprot.readBinary(); + _val270 = iprot.readBinary(); + struct.attributes.put(_key269, _val270); } iprot.readMapEnd(); } @@ -28860,9 +29806,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(ROWS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.rows.size())); - for (java.nio.ByteBuffer _iter262 : struct.rows) + for (java.nio.ByteBuffer _iter272 : struct.rows) { - oprot.writeBinary(_iter262); + oprot.writeBinary(_iter272); } oprot.writeListEnd(); } @@ -28872,9 +29818,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter263 : struct.columns) + for (java.nio.ByteBuffer _iter273 : struct.columns) { - oprot.writeBinary(_iter263); + oprot.writeBinary(_iter273); } oprot.writeListEnd(); } @@ -28884,10 +29830,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter264 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter274 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter264.getKey()); - oprot.writeBinary(_iter264.getValue()); + oprot.writeBinary(_iter274.getKey()); + oprot.writeBinary(_iter274.getValue()); } oprot.writeMapEnd(); } @@ -28930,28 +29876,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumns_ if (struct.isSetRows()) { { oprot.writeI32(struct.rows.size()); - for (java.nio.ByteBuffer _iter265 : struct.rows) + for (java.nio.ByteBuffer _iter275 : struct.rows) { - oprot.writeBinary(_iter265); + oprot.writeBinary(_iter275); } } } if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter266 : struct.columns) + for (java.nio.ByteBuffer _iter276 : struct.columns) { - oprot.writeBinary(_iter266); + oprot.writeBinary(_iter276); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter267 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter277 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter267.getKey()); - oprot.writeBinary(_iter267.getValue()); + oprot.writeBinary(_iter277.getKey()); + oprot.writeBinary(_iter277.getValue()); } } } @@ -28967,41 +29913,41 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumns_a } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list268 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.rows = new java.util.ArrayList(_list268.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem269; - for (int _i270 = 0; _i270 < _list268.size; ++_i270) + org.apache.thrift.protocol.TList _list278 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.rows = new java.util.ArrayList(_list278.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem279; + for (int _i280 = 0; _i280 < _list278.size; ++_i280) { - _elem269 = iprot.readBinary(); - struct.rows.add(_elem269); + _elem279 = iprot.readBinary(); + struct.rows.add(_elem279); } } struct.setRowsIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list271 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list271.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem272; - for (int _i273 = 0; _i273 < _list271.size; ++_i273) + org.apache.thrift.protocol.TList _list281 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list281.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem282; + for (int _i283 = 0; _i283 < _list281.size; ++_i283) { - _elem272 = iprot.readBinary(); - struct.columns.add(_elem272); + _elem282 = iprot.readBinary(); + struct.columns.add(_elem282); } } struct.setColumnsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map274 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map274.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key275; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val276; - for (int _i277 = 0; _i277 < _map274.size; ++_i277) + org.apache.thrift.protocol.TMap _map284 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map284.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key285; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val286; + for (int _i287 = 0; _i287 < _map284.size; ++_i287) { - _key275 = iprot.readBinary(); - _val276 = iprot.readBinary(); - struct.attributes.put(_key275, _val276); + _key285 = iprot.readBinary(); + _val286 = iprot.readBinary(); + struct.attributes.put(_key285, _val286); } } struct.setAttributesIsSet(true); @@ -29414,14 +30360,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumns_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list278 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list278.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem279; - for (int _i280 = 0; _i280 < _list278.size; ++_i280) + org.apache.thrift.protocol.TList _list288 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list288.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem289; + for (int _i290 = 0; _i290 < _list288.size; ++_i290) { - _elem279 = new TRowResult(); - _elem279.read(iprot); - struct.success.add(_elem279); + _elem289 = new TRowResult(); + _elem289.read(iprot); + struct.success.add(_elem289); } iprot.readListEnd(); } @@ -29458,9 +30404,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter281 : struct.success) + for (TRowResult _iter291 : struct.success) { - _iter281.write(oprot); + _iter291.write(oprot); } oprot.writeListEnd(); } @@ -29499,9 +30445,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumns_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter282 : struct.success) + for (TRowResult _iter292 : struct.success) { - _iter282.write(oprot); + _iter292.write(oprot); } } } @@ -29516,14 +30462,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumns_r java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list283 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list283.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem284; - for (int _i285 = 0; _i285 < _list283.size; ++_i285) + org.apache.thrift.protocol.TList _list293 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list293.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem294; + for (int _i295 = 0; _i295 < _list293.size; ++_i295) { - _elem284 = new TRowResult(); - _elem284.read(iprot); - struct.success.add(_elem284); + _elem294 = new TRowResult(); + _elem294.read(iprot); + struct.success.add(_elem294); } } struct.setSuccessIsSet(true); @@ -30196,13 +31142,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsTs_args stru case 2: // ROWS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list286 = iprot.readListBegin(); - struct.rows = new java.util.ArrayList(_list286.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem287; - for (int _i288 = 0; _i288 < _list286.size; ++_i288) + org.apache.thrift.protocol.TList _list296 = iprot.readListBegin(); + struct.rows = new java.util.ArrayList(_list296.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem297; + for (int _i298 = 0; _i298 < _list296.size; ++_i298) { - _elem287 = iprot.readBinary(); - struct.rows.add(_elem287); + _elem297 = iprot.readBinary(); + struct.rows.add(_elem297); } iprot.readListEnd(); } @@ -30222,15 +31168,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsTs_args stru case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map289 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map289.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key290; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val291; - for (int _i292 = 0; _i292 < _map289.size; ++_i292) + org.apache.thrift.protocol.TMap _map299 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map299.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key300; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val301; + for (int _i302 = 0; _i302 < _map299.size; ++_i302) { - _key290 = iprot.readBinary(); - _val291 = iprot.readBinary(); - struct.attributes.put(_key290, _val291); + _key300 = iprot.readBinary(); + _val301 = iprot.readBinary(); + struct.attributes.put(_key300, _val301); } iprot.readMapEnd(); } @@ -30263,9 +31209,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsTs_args str oprot.writeFieldBegin(ROWS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.rows.size())); - for (java.nio.ByteBuffer _iter293 : struct.rows) + for (java.nio.ByteBuffer _iter303 : struct.rows) { - oprot.writeBinary(_iter293); + oprot.writeBinary(_iter303); } oprot.writeListEnd(); } @@ -30278,10 +31224,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsTs_args str oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter294 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter304 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter294.getKey()); - oprot.writeBinary(_iter294.getValue()); + oprot.writeBinary(_iter304.getKey()); + oprot.writeBinary(_iter304.getValue()); } oprot.writeMapEnd(); } @@ -30324,9 +31270,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsTs_args stru if (struct.isSetRows()) { { oprot.writeI32(struct.rows.size()); - for (java.nio.ByteBuffer _iter295 : struct.rows) + for (java.nio.ByteBuffer _iter305 : struct.rows) { - oprot.writeBinary(_iter295); + oprot.writeBinary(_iter305); } } } @@ -30336,10 +31282,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsTs_args stru if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter296 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter306 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter296.getKey()); - oprot.writeBinary(_iter296.getValue()); + oprot.writeBinary(_iter306.getKey()); + oprot.writeBinary(_iter306.getValue()); } } } @@ -30355,13 +31301,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsTs_args struc } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list297 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.rows = new java.util.ArrayList(_list297.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem298; - for (int _i299 = 0; _i299 < _list297.size; ++_i299) + org.apache.thrift.protocol.TList _list307 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.rows = new java.util.ArrayList(_list307.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem308; + for (int _i309 = 0; _i309 < _list307.size; ++_i309) { - _elem298 = iprot.readBinary(); - struct.rows.add(_elem298); + _elem308 = iprot.readBinary(); + struct.rows.add(_elem308); } } struct.setRowsIsSet(true); @@ -30372,15 +31318,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsTs_args struc } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map300 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map300.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key301; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val302; - for (int _i303 = 0; _i303 < _map300.size; ++_i303) + org.apache.thrift.protocol.TMap _map310 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map310.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key311; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val312; + for (int _i313 = 0; _i313 < _map310.size; ++_i313) { - _key301 = iprot.readBinary(); - _val302 = iprot.readBinary(); - struct.attributes.put(_key301, _val302); + _key311 = iprot.readBinary(); + _val312 = iprot.readBinary(); + struct.attributes.put(_key311, _val312); } } struct.setAttributesIsSet(true); @@ -30793,14 +31739,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsTs_result st case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list304 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list304.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem305; - for (int _i306 = 0; _i306 < _list304.size; ++_i306) + org.apache.thrift.protocol.TList _list314 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list314.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem315; + for (int _i316 = 0; _i316 < _list314.size; ++_i316) { - _elem305 = new TRowResult(); - _elem305.read(iprot); - struct.success.add(_elem305); + _elem315 = new TRowResult(); + _elem315.read(iprot); + struct.success.add(_elem315); } iprot.readListEnd(); } @@ -30837,9 +31783,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsTs_result s oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter307 : struct.success) + for (TRowResult _iter317 : struct.success) { - _iter307.write(oprot); + _iter317.write(oprot); } oprot.writeListEnd(); } @@ -30878,9 +31824,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsTs_result st if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter308 : struct.success) + for (TRowResult _iter318 : struct.success) { - _iter308.write(oprot); + _iter318.write(oprot); } } } @@ -30895,14 +31841,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsTs_result str java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list309 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list309.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem310; - for (int _i311 = 0; _i311 < _list309.size; ++_i311) + org.apache.thrift.protocol.TList _list319 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list319.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem320; + for (int _i321 = 0; _i321 < _list319.size; ++_i321) { - _elem310 = new TRowResult(); - _elem310.read(iprot); - struct.success.add(_elem310); + _elem320 = new TRowResult(); + _elem320.read(iprot); + struct.success.add(_elem320); } } struct.setSuccessIsSet(true); @@ -31678,13 +32624,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumnsT case 2: // ROWS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list312 = iprot.readListBegin(); - struct.rows = new java.util.ArrayList(_list312.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem313; - for (int _i314 = 0; _i314 < _list312.size; ++_i314) + org.apache.thrift.protocol.TList _list322 = iprot.readListBegin(); + struct.rows = new java.util.ArrayList(_list322.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem323; + for (int _i324 = 0; _i324 < _list322.size; ++_i324) { - _elem313 = iprot.readBinary(); - struct.rows.add(_elem313); + _elem323 = iprot.readBinary(); + struct.rows.add(_elem323); } iprot.readListEnd(); } @@ -31696,13 +32642,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumnsT case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list315 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list315.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem316; - for (int _i317 = 0; _i317 < _list315.size; ++_i317) + org.apache.thrift.protocol.TList _list325 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list325.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem326; + for (int _i327 = 0; _i327 < _list325.size; ++_i327) { - _elem316 = iprot.readBinary(); - struct.columns.add(_elem316); + _elem326 = iprot.readBinary(); + struct.columns.add(_elem326); } iprot.readListEnd(); } @@ -31722,15 +32668,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumnsT case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map318 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map318.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key319; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val320; - for (int _i321 = 0; _i321 < _map318.size; ++_i321) + org.apache.thrift.protocol.TMap _map328 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map328.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key329; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val330; + for (int _i331 = 0; _i331 < _map328.size; ++_i331) { - _key319 = iprot.readBinary(); - _val320 = iprot.readBinary(); - struct.attributes.put(_key319, _val320); + _key329 = iprot.readBinary(); + _val330 = iprot.readBinary(); + struct.attributes.put(_key329, _val330); } iprot.readMapEnd(); } @@ -31763,9 +32709,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(ROWS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.rows.size())); - for (java.nio.ByteBuffer _iter322 : struct.rows) + for (java.nio.ByteBuffer _iter332 : struct.rows) { - oprot.writeBinary(_iter322); + oprot.writeBinary(_iter332); } oprot.writeListEnd(); } @@ -31775,9 +32721,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter323 : struct.columns) + for (java.nio.ByteBuffer _iter333 : struct.columns) { - oprot.writeBinary(_iter323); + oprot.writeBinary(_iter333); } oprot.writeListEnd(); } @@ -31790,10 +32736,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter324 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter334 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter324.getKey()); - oprot.writeBinary(_iter324.getValue()); + oprot.writeBinary(_iter334.getKey()); + oprot.writeBinary(_iter334.getValue()); } oprot.writeMapEnd(); } @@ -31839,18 +32785,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsT if (struct.isSetRows()) { { oprot.writeI32(struct.rows.size()); - for (java.nio.ByteBuffer _iter325 : struct.rows) + for (java.nio.ByteBuffer _iter335 : struct.rows) { - oprot.writeBinary(_iter325); + oprot.writeBinary(_iter335); } } } if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter326 : struct.columns) + for (java.nio.ByteBuffer _iter336 : struct.columns) { - oprot.writeBinary(_iter326); + oprot.writeBinary(_iter336); } } } @@ -31860,10 +32806,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsT if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter327 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter337 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter327.getKey()); - oprot.writeBinary(_iter327.getValue()); + oprot.writeBinary(_iter337.getKey()); + oprot.writeBinary(_iter337.getValue()); } } } @@ -31879,26 +32825,26 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsTs } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list328 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.rows = new java.util.ArrayList(_list328.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem329; - for (int _i330 = 0; _i330 < _list328.size; ++_i330) + org.apache.thrift.protocol.TList _list338 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.rows = new java.util.ArrayList(_list338.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem339; + for (int _i340 = 0; _i340 < _list338.size; ++_i340) { - _elem329 = iprot.readBinary(); - struct.rows.add(_elem329); + _elem339 = iprot.readBinary(); + struct.rows.add(_elem339); } } struct.setRowsIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list331 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list331.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem332; - for (int _i333 = 0; _i333 < _list331.size; ++_i333) + org.apache.thrift.protocol.TList _list341 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list341.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem342; + for (int _i343 = 0; _i343 < _list341.size; ++_i343) { - _elem332 = iprot.readBinary(); - struct.columns.add(_elem332); + _elem342 = iprot.readBinary(); + struct.columns.add(_elem342); } } struct.setColumnsIsSet(true); @@ -31909,15 +32855,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsTs } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map334 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map334.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key335; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val336; - for (int _i337 = 0; _i337 < _map334.size; ++_i337) + org.apache.thrift.protocol.TMap _map344 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map344.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key345; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val346; + for (int _i347 = 0; _i347 < _map344.size; ++_i347) { - _key335 = iprot.readBinary(); - _val336 = iprot.readBinary(); - struct.attributes.put(_key335, _val336); + _key345 = iprot.readBinary(); + _val346 = iprot.readBinary(); + struct.attributes.put(_key345, _val346); } } struct.setAttributesIsSet(true); @@ -32330,14 +33276,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumnsT case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list338 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list338.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem339; - for (int _i340 = 0; _i340 < _list338.size; ++_i340) + org.apache.thrift.protocol.TList _list348 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list348.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem349; + for (int _i350 = 0; _i350 < _list348.size; ++_i350) { - _elem339 = new TRowResult(); - _elem339.read(iprot); - struct.success.add(_elem339); + _elem349 = new TRowResult(); + _elem349.read(iprot); + struct.success.add(_elem349); } iprot.readListEnd(); } @@ -32374,9 +33320,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter341 : struct.success) + for (TRowResult _iter351 : struct.success) { - _iter341.write(oprot); + _iter351.write(oprot); } oprot.writeListEnd(); } @@ -32415,9 +33361,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsT if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter342 : struct.success) + for (TRowResult _iter352 : struct.success) { - _iter342.write(oprot); + _iter352.write(oprot); } } } @@ -32432,14 +33378,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsTs java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list343 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list343.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem344; - for (int _i345 = 0; _i345 < _list343.size; ++_i345) + org.apache.thrift.protocol.TList _list353 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list353.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem354; + for (int _i355 = 0; _i355 < _list353.size; ++_i355) { - _elem344 = new TRowResult(); - _elem344.read(iprot); - struct.success.add(_elem344); + _elem354 = new TRowResult(); + _elem354.read(iprot); + struct.success.add(_elem354); } } struct.setSuccessIsSet(true); @@ -33136,14 +34082,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRow_args stru case 3: // MUTATIONS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list346 = iprot.readListBegin(); - struct.mutations = new java.util.ArrayList(_list346.size); - @org.apache.thrift.annotation.Nullable Mutation _elem347; - for (int _i348 = 0; _i348 < _list346.size; ++_i348) + org.apache.thrift.protocol.TList _list356 = iprot.readListBegin(); + struct.mutations = new java.util.ArrayList(_list356.size); + @org.apache.thrift.annotation.Nullable Mutation _elem357; + for (int _i358 = 0; _i358 < _list356.size; ++_i358) { - _elem347 = new Mutation(); - _elem347.read(iprot); - struct.mutations.add(_elem347); + _elem357 = new Mutation(); + _elem357.read(iprot); + struct.mutations.add(_elem357); } iprot.readListEnd(); } @@ -33155,15 +34101,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRow_args stru case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map349 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map349.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key350; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val351; - for (int _i352 = 0; _i352 < _map349.size; ++_i352) + org.apache.thrift.protocol.TMap _map359 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map359.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key360; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val361; + for (int _i362 = 0; _i362 < _map359.size; ++_i362) { - _key350 = iprot.readBinary(); - _val351 = iprot.readBinary(); - struct.attributes.put(_key350, _val351); + _key360 = iprot.readBinary(); + _val361 = iprot.readBinary(); + struct.attributes.put(_key360, _val361); } iprot.readMapEnd(); } @@ -33201,9 +34147,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRow_args str oprot.writeFieldBegin(MUTATIONS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.mutations.size())); - for (Mutation _iter353 : struct.mutations) + for (Mutation _iter363 : struct.mutations) { - _iter353.write(oprot); + _iter363.write(oprot); } oprot.writeListEnd(); } @@ -33213,10 +34159,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRow_args str oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter354 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter364 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter354.getKey()); - oprot.writeBinary(_iter354.getValue()); + oprot.writeBinary(_iter364.getKey()); + oprot.writeBinary(_iter364.getValue()); } oprot.writeMapEnd(); } @@ -33262,19 +34208,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRow_args stru if (struct.isSetMutations()) { { oprot.writeI32(struct.mutations.size()); - for (Mutation _iter355 : struct.mutations) + for (Mutation _iter365 : struct.mutations) { - _iter355.write(oprot); + _iter365.write(oprot); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter356 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter366 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter356.getKey()); - oprot.writeBinary(_iter356.getValue()); + oprot.writeBinary(_iter366.getKey()); + oprot.writeBinary(_iter366.getValue()); } } } @@ -33294,29 +34240,29 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRow_args struc } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list357 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.mutations = new java.util.ArrayList(_list357.size); - @org.apache.thrift.annotation.Nullable Mutation _elem358; - for (int _i359 = 0; _i359 < _list357.size; ++_i359) + org.apache.thrift.protocol.TList _list367 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.mutations = new java.util.ArrayList(_list367.size); + @org.apache.thrift.annotation.Nullable Mutation _elem368; + for (int _i369 = 0; _i369 < _list367.size; ++_i369) { - _elem358 = new Mutation(); - _elem358.read(iprot); - struct.mutations.add(_elem358); + _elem368 = new Mutation(); + _elem368.read(iprot); + struct.mutations.add(_elem368); } } struct.setMutationsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map360 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map360.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key361; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val362; - for (int _i363 = 0; _i363 < _map360.size; ++_i363) + org.apache.thrift.protocol.TMap _map370 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map370.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key371; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val372; + for (int _i373 = 0; _i373 < _map370.size; ++_i373) { - _key361 = iprot.readBinary(); - _val362 = iprot.readBinary(); - struct.attributes.put(_key361, _val362); + _key371 = iprot.readBinary(); + _val372 = iprot.readBinary(); + struct.attributes.put(_key371, _val372); } } struct.setAttributesIsSet(true); @@ -34573,14 +35519,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRowTs_args st case 3: // MUTATIONS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list364 = iprot.readListBegin(); - struct.mutations = new java.util.ArrayList(_list364.size); - @org.apache.thrift.annotation.Nullable Mutation _elem365; - for (int _i366 = 0; _i366 < _list364.size; ++_i366) + org.apache.thrift.protocol.TList _list374 = iprot.readListBegin(); + struct.mutations = new java.util.ArrayList(_list374.size); + @org.apache.thrift.annotation.Nullable Mutation _elem375; + for (int _i376 = 0; _i376 < _list374.size; ++_i376) { - _elem365 = new Mutation(); - _elem365.read(iprot); - struct.mutations.add(_elem365); + _elem375 = new Mutation(); + _elem375.read(iprot); + struct.mutations.add(_elem375); } iprot.readListEnd(); } @@ -34600,15 +35546,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRowTs_args st case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map367 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map367.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key368; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val369; - for (int _i370 = 0; _i370 < _map367.size; ++_i370) + org.apache.thrift.protocol.TMap _map377 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map377.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key378; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val379; + for (int _i380 = 0; _i380 < _map377.size; ++_i380) { - _key368 = iprot.readBinary(); - _val369 = iprot.readBinary(); - struct.attributes.put(_key368, _val369); + _key378 = iprot.readBinary(); + _val379 = iprot.readBinary(); + struct.attributes.put(_key378, _val379); } iprot.readMapEnd(); } @@ -34646,9 +35592,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRowTs_args s oprot.writeFieldBegin(MUTATIONS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.mutations.size())); - for (Mutation _iter371 : struct.mutations) + for (Mutation _iter381 : struct.mutations) { - _iter371.write(oprot); + _iter381.write(oprot); } oprot.writeListEnd(); } @@ -34661,10 +35607,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRowTs_args s oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter372 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter382 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter372.getKey()); - oprot.writeBinary(_iter372.getValue()); + oprot.writeBinary(_iter382.getKey()); + oprot.writeBinary(_iter382.getValue()); } oprot.writeMapEnd(); } @@ -34713,9 +35659,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRowTs_args st if (struct.isSetMutations()) { { oprot.writeI32(struct.mutations.size()); - for (Mutation _iter373 : struct.mutations) + for (Mutation _iter383 : struct.mutations) { - _iter373.write(oprot); + _iter383.write(oprot); } } } @@ -34725,10 +35671,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRowTs_args st if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter374 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter384 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter374.getKey()); - oprot.writeBinary(_iter374.getValue()); + oprot.writeBinary(_iter384.getKey()); + oprot.writeBinary(_iter384.getValue()); } } } @@ -34748,14 +35694,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRowTs_args str } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list375 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.mutations = new java.util.ArrayList(_list375.size); - @org.apache.thrift.annotation.Nullable Mutation _elem376; - for (int _i377 = 0; _i377 < _list375.size; ++_i377) + org.apache.thrift.protocol.TList _list385 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.mutations = new java.util.ArrayList(_list385.size); + @org.apache.thrift.annotation.Nullable Mutation _elem386; + for (int _i387 = 0; _i387 < _list385.size; ++_i387) { - _elem376 = new Mutation(); - _elem376.read(iprot); - struct.mutations.add(_elem376); + _elem386 = new Mutation(); + _elem386.read(iprot); + struct.mutations.add(_elem386); } } struct.setMutationsIsSet(true); @@ -34766,15 +35712,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRowTs_args str } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map378 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map378.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key379; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val380; - for (int _i381 = 0; _i381 < _map378.size; ++_i381) + org.apache.thrift.protocol.TMap _map388 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map388.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key389; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val390; + for (int _i391 = 0; _i391 < _map388.size; ++_i391) { - _key379 = iprot.readBinary(); - _val380 = iprot.readBinary(); - struct.attributes.put(_key379, _val380); + _key389 = iprot.readBinary(); + _val390 = iprot.readBinary(); + struct.attributes.put(_key389, _val390); } } struct.setAttributesIsSet(true); @@ -35825,14 +36771,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRows_args str case 2: // ROW_BATCHES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list382 = iprot.readListBegin(); - struct.rowBatches = new java.util.ArrayList(_list382.size); - @org.apache.thrift.annotation.Nullable BatchMutation _elem383; - for (int _i384 = 0; _i384 < _list382.size; ++_i384) + org.apache.thrift.protocol.TList _list392 = iprot.readListBegin(); + struct.rowBatches = new java.util.ArrayList(_list392.size); + @org.apache.thrift.annotation.Nullable BatchMutation _elem393; + for (int _i394 = 0; _i394 < _list392.size; ++_i394) { - _elem383 = new BatchMutation(); - _elem383.read(iprot); - struct.rowBatches.add(_elem383); + _elem393 = new BatchMutation(); + _elem393.read(iprot); + struct.rowBatches.add(_elem393); } iprot.readListEnd(); } @@ -35844,15 +36790,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRows_args str case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map385 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map385.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key386; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val387; - for (int _i388 = 0; _i388 < _map385.size; ++_i388) + org.apache.thrift.protocol.TMap _map395 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map395.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key396; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val397; + for (int _i398 = 0; _i398 < _map395.size; ++_i398) { - _key386 = iprot.readBinary(); - _val387 = iprot.readBinary(); - struct.attributes.put(_key386, _val387); + _key396 = iprot.readBinary(); + _val397 = iprot.readBinary(); + struct.attributes.put(_key396, _val397); } iprot.readMapEnd(); } @@ -35885,9 +36831,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRows_args st oprot.writeFieldBegin(ROW_BATCHES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.rowBatches.size())); - for (BatchMutation _iter389 : struct.rowBatches) + for (BatchMutation _iter399 : struct.rowBatches) { - _iter389.write(oprot); + _iter399.write(oprot); } oprot.writeListEnd(); } @@ -35897,10 +36843,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRows_args st oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter390 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter400 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter390.getKey()); - oprot.writeBinary(_iter390.getValue()); + oprot.writeBinary(_iter400.getKey()); + oprot.writeBinary(_iter400.getValue()); } oprot.writeMapEnd(); } @@ -35940,19 +36886,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRows_args str if (struct.isSetRowBatches()) { { oprot.writeI32(struct.rowBatches.size()); - for (BatchMutation _iter391 : struct.rowBatches) + for (BatchMutation _iter401 : struct.rowBatches) { - _iter391.write(oprot); + _iter401.write(oprot); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter392 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter402 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter392.getKey()); - oprot.writeBinary(_iter392.getValue()); + oprot.writeBinary(_iter402.getKey()); + oprot.writeBinary(_iter402.getValue()); } } } @@ -35968,29 +36914,29 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRows_args stru } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list393 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.rowBatches = new java.util.ArrayList(_list393.size); - @org.apache.thrift.annotation.Nullable BatchMutation _elem394; - for (int _i395 = 0; _i395 < _list393.size; ++_i395) + org.apache.thrift.protocol.TList _list403 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.rowBatches = new java.util.ArrayList(_list403.size); + @org.apache.thrift.annotation.Nullable BatchMutation _elem404; + for (int _i405 = 0; _i405 < _list403.size; ++_i405) { - _elem394 = new BatchMutation(); - _elem394.read(iprot); - struct.rowBatches.add(_elem394); + _elem404 = new BatchMutation(); + _elem404.read(iprot); + struct.rowBatches.add(_elem404); } } struct.setRowBatchesIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map396 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map396.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key397; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val398; - for (int _i399 = 0; _i399 < _map396.size; ++_i399) + org.apache.thrift.protocol.TMap _map406 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map406.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key407; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val408; + for (int _i409 = 0; _i409 < _map406.size; ++_i409) { - _key397 = iprot.readBinary(); - _val398 = iprot.readBinary(); - struct.attributes.put(_key397, _val398); + _key407 = iprot.readBinary(); + _val408 = iprot.readBinary(); + struct.attributes.put(_key407, _val408); } } struct.setAttributesIsSet(true); @@ -37132,14 +38078,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRowsTs_args s case 2: // ROW_BATCHES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list400 = iprot.readListBegin(); - struct.rowBatches = new java.util.ArrayList(_list400.size); - @org.apache.thrift.annotation.Nullable BatchMutation _elem401; - for (int _i402 = 0; _i402 < _list400.size; ++_i402) + org.apache.thrift.protocol.TList _list410 = iprot.readListBegin(); + struct.rowBatches = new java.util.ArrayList(_list410.size); + @org.apache.thrift.annotation.Nullable BatchMutation _elem411; + for (int _i412 = 0; _i412 < _list410.size; ++_i412) { - _elem401 = new BatchMutation(); - _elem401.read(iprot); - struct.rowBatches.add(_elem401); + _elem411 = new BatchMutation(); + _elem411.read(iprot); + struct.rowBatches.add(_elem411); } iprot.readListEnd(); } @@ -37159,15 +38105,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRowsTs_args s case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map403 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map403.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key404; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val405; - for (int _i406 = 0; _i406 < _map403.size; ++_i406) + org.apache.thrift.protocol.TMap _map413 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map413.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key414; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val415; + for (int _i416 = 0; _i416 < _map413.size; ++_i416) { - _key404 = iprot.readBinary(); - _val405 = iprot.readBinary(); - struct.attributes.put(_key404, _val405); + _key414 = iprot.readBinary(); + _val415 = iprot.readBinary(); + struct.attributes.put(_key414, _val415); } iprot.readMapEnd(); } @@ -37200,9 +38146,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRowsTs_args oprot.writeFieldBegin(ROW_BATCHES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.rowBatches.size())); - for (BatchMutation _iter407 : struct.rowBatches) + for (BatchMutation _iter417 : struct.rowBatches) { - _iter407.write(oprot); + _iter417.write(oprot); } oprot.writeListEnd(); } @@ -37215,10 +38161,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRowsTs_args oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter408 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter418 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter408.getKey()); - oprot.writeBinary(_iter408.getValue()); + oprot.writeBinary(_iter418.getKey()); + oprot.writeBinary(_iter418.getValue()); } oprot.writeMapEnd(); } @@ -37261,9 +38207,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRowsTs_args s if (struct.isSetRowBatches()) { { oprot.writeI32(struct.rowBatches.size()); - for (BatchMutation _iter409 : struct.rowBatches) + for (BatchMutation _iter419 : struct.rowBatches) { - _iter409.write(oprot); + _iter419.write(oprot); } } } @@ -37273,10 +38219,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRowsTs_args s if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter410 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter420 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter410.getKey()); - oprot.writeBinary(_iter410.getValue()); + oprot.writeBinary(_iter420.getKey()); + oprot.writeBinary(_iter420.getValue()); } } } @@ -37292,14 +38238,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRowsTs_args st } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list411 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.rowBatches = new java.util.ArrayList(_list411.size); - @org.apache.thrift.annotation.Nullable BatchMutation _elem412; - for (int _i413 = 0; _i413 < _list411.size; ++_i413) + org.apache.thrift.protocol.TList _list421 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.rowBatches = new java.util.ArrayList(_list421.size); + @org.apache.thrift.annotation.Nullable BatchMutation _elem422; + for (int _i423 = 0; _i423 < _list421.size; ++_i423) { - _elem412 = new BatchMutation(); - _elem412.read(iprot); - struct.rowBatches.add(_elem412); + _elem422 = new BatchMutation(); + _elem422.read(iprot); + struct.rowBatches.add(_elem422); } } struct.setRowBatchesIsSet(true); @@ -37310,15 +38256,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRowsTs_args st } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map414 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map414.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key415; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val416; - for (int _i417 = 0; _i417 < _map414.size; ++_i417) + org.apache.thrift.protocol.TMap _map424 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map424.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key425; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val426; + for (int _i427 = 0; _i427 < _map424.size; ++_i427) { - _key415 = iprot.readBinary(); - _val416 = iprot.readBinary(); - struct.attributes.put(_key415, _val416); + _key425 = iprot.readBinary(); + _val426 = iprot.readBinary(); + struct.attributes.put(_key425, _val426); } } struct.setAttributesIsSet(true); @@ -39822,15 +40768,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, deleteAll_args stru case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map418 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map418.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key419; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val420; - for (int _i421 = 0; _i421 < _map418.size; ++_i421) + org.apache.thrift.protocol.TMap _map428 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map428.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key429; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val430; + for (int _i431 = 0; _i431 < _map428.size; ++_i431) { - _key419 = iprot.readBinary(); - _val420 = iprot.readBinary(); - struct.attributes.put(_key419, _val420); + _key429 = iprot.readBinary(); + _val430 = iprot.readBinary(); + struct.attributes.put(_key429, _val430); } iprot.readMapEnd(); } @@ -39873,10 +40819,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, deleteAll_args str oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter422 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter432 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter422.getKey()); - oprot.writeBinary(_iter422.getValue()); + oprot.writeBinary(_iter432.getKey()); + oprot.writeBinary(_iter432.getValue()); } oprot.writeMapEnd(); } @@ -39925,10 +40871,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, deleteAll_args stru if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter423 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter433 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter423.getKey()); - oprot.writeBinary(_iter423.getValue()); + oprot.writeBinary(_iter433.getKey()); + oprot.writeBinary(_iter433.getValue()); } } } @@ -39952,15 +40898,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, deleteAll_args struc } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map424 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map424.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key425; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val426; - for (int _i427 = 0; _i427 < _map424.size; ++_i427) + org.apache.thrift.protocol.TMap _map434 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map434.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key435; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val436; + for (int _i437 = 0; _i437 < _map434.size; ++_i437) { - _key425 = iprot.readBinary(); - _val426 = iprot.readBinary(); - struct.attributes.put(_key425, _val426); + _key435 = iprot.readBinary(); + _val436 = iprot.readBinary(); + struct.attributes.put(_key435, _val436); } } struct.setAttributesIsSet(true); @@ -41118,15 +42064,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, deleteAllTs_args st case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map428 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map428.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key429; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val430; - for (int _i431 = 0; _i431 < _map428.size; ++_i431) + org.apache.thrift.protocol.TMap _map438 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map438.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key439; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val440; + for (int _i441 = 0; _i441 < _map438.size; ++_i441) { - _key429 = iprot.readBinary(); - _val430 = iprot.readBinary(); - struct.attributes.put(_key429, _val430); + _key439 = iprot.readBinary(); + _val440 = iprot.readBinary(); + struct.attributes.put(_key439, _val440); } iprot.readMapEnd(); } @@ -41172,10 +42118,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, deleteAllTs_args s oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter432 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter442 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter432.getKey()); - oprot.writeBinary(_iter432.getValue()); + oprot.writeBinary(_iter442.getKey()); + oprot.writeBinary(_iter442.getValue()); } oprot.writeMapEnd(); } @@ -41230,10 +42176,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, deleteAllTs_args st if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter433 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter443 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter433.getKey()); - oprot.writeBinary(_iter433.getValue()); + oprot.writeBinary(_iter443.getKey()); + oprot.writeBinary(_iter443.getValue()); } } } @@ -41261,15 +42207,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, deleteAllTs_args str } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map434 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map434.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key435; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val436; - for (int _i437 = 0; _i437 < _map434.size; ++_i437) + org.apache.thrift.protocol.TMap _map444 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map444.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key445; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val446; + for (int _i447 = 0; _i447 < _map444.size; ++_i447) { - _key435 = iprot.readBinary(); - _val436 = iprot.readBinary(); - struct.attributes.put(_key435, _val436); + _key445 = iprot.readBinary(); + _val446 = iprot.readBinary(); + struct.attributes.put(_key445, _val446); } } struct.setAttributesIsSet(true); @@ -42213,15 +43159,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, deleteAllRow_args s case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map438 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map438.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key439; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val440; - for (int _i441 = 0; _i441 < _map438.size; ++_i441) + org.apache.thrift.protocol.TMap _map448 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map448.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key449; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val450; + for (int _i451 = 0; _i451 < _map448.size; ++_i451) { - _key439 = iprot.readBinary(); - _val440 = iprot.readBinary(); - struct.attributes.put(_key439, _val440); + _key449 = iprot.readBinary(); + _val450 = iprot.readBinary(); + struct.attributes.put(_key449, _val450); } iprot.readMapEnd(); } @@ -42259,10 +43205,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, deleteAllRow_args oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter442 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter452 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter442.getKey()); - oprot.writeBinary(_iter442.getValue()); + oprot.writeBinary(_iter452.getKey()); + oprot.writeBinary(_iter452.getValue()); } oprot.writeMapEnd(); } @@ -42305,10 +43251,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, deleteAllRow_args s if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter443 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter453 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter443.getKey()); - oprot.writeBinary(_iter443.getValue()); + oprot.writeBinary(_iter453.getKey()); + oprot.writeBinary(_iter453.getValue()); } } } @@ -42328,15 +43274,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, deleteAllRow_args st } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map444 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map444.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key445; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val446; - for (int _i447 = 0; _i447 < _map444.size; ++_i447) + org.apache.thrift.protocol.TMap _map454 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map454.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key455; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val456; + for (int _i457 = 0; _i457 < _map454.size; ++_i457) { - _key445 = iprot.readBinary(); - _val446 = iprot.readBinary(); - struct.attributes.put(_key445, _val446); + _key455 = iprot.readBinary(); + _val456 = iprot.readBinary(); + struct.attributes.put(_key455, _val456); } } struct.setAttributesIsSet(true); @@ -43795,14 +44741,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, incrementRows_args case 1: // INCREMENTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list448 = iprot.readListBegin(); - struct.increments = new java.util.ArrayList(_list448.size); - @org.apache.thrift.annotation.Nullable TIncrement _elem449; - for (int _i450 = 0; _i450 < _list448.size; ++_i450) + org.apache.thrift.protocol.TList _list458 = iprot.readListBegin(); + struct.increments = new java.util.ArrayList(_list458.size); + @org.apache.thrift.annotation.Nullable TIncrement _elem459; + for (int _i460 = 0; _i460 < _list458.size; ++_i460) { - _elem449 = new TIncrement(); - _elem449.read(iprot); - struct.increments.add(_elem449); + _elem459 = new TIncrement(); + _elem459.read(iprot); + struct.increments.add(_elem459); } iprot.readListEnd(); } @@ -43830,9 +44776,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, incrementRows_args oprot.writeFieldBegin(INCREMENTS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.increments.size())); - for (TIncrement _iter451 : struct.increments) + for (TIncrement _iter461 : struct.increments) { - _iter451.write(oprot); + _iter461.write(oprot); } oprot.writeListEnd(); } @@ -43863,9 +44809,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, incrementRows_args if (struct.isSetIncrements()) { { oprot.writeI32(struct.increments.size()); - for (TIncrement _iter452 : struct.increments) + for (TIncrement _iter462 : struct.increments) { - _iter452.write(oprot); + _iter462.write(oprot); } } } @@ -43877,14 +44823,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, incrementRows_args s java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list453 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.increments = new java.util.ArrayList(_list453.size); - @org.apache.thrift.annotation.Nullable TIncrement _elem454; - for (int _i455 = 0; _i455 < _list453.size; ++_i455) + org.apache.thrift.protocol.TList _list463 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.increments = new java.util.ArrayList(_list463.size); + @org.apache.thrift.annotation.Nullable TIncrement _elem464; + for (int _i465 = 0; _i465 < _list463.size; ++_i465) { - _elem454 = new TIncrement(); - _elem454.read(iprot); - struct.increments.add(_elem454); + _elem464 = new TIncrement(); + _elem464.read(iprot); + struct.increments.add(_elem464); } } struct.setIncrementsIsSet(true); @@ -44927,15 +45873,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, deleteAllRowTs_args case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map456 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map456.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key457; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val458; - for (int _i459 = 0; _i459 < _map456.size; ++_i459) + org.apache.thrift.protocol.TMap _map466 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map466.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key467; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val468; + for (int _i469 = 0; _i469 < _map466.size; ++_i469) { - _key457 = iprot.readBinary(); - _val458 = iprot.readBinary(); - struct.attributes.put(_key457, _val458); + _key467 = iprot.readBinary(); + _val468 = iprot.readBinary(); + struct.attributes.put(_key467, _val468); } iprot.readMapEnd(); } @@ -44976,10 +45922,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, deleteAllRowTs_arg oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter460 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter470 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter460.getKey()); - oprot.writeBinary(_iter460.getValue()); + oprot.writeBinary(_iter470.getKey()); + oprot.writeBinary(_iter470.getValue()); } oprot.writeMapEnd(); } @@ -45028,10 +45974,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, deleteAllRowTs_args if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter461 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter471 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter461.getKey()); - oprot.writeBinary(_iter461.getValue()); + oprot.writeBinary(_iter471.getKey()); + oprot.writeBinary(_iter471.getValue()); } } } @@ -45055,15 +46001,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, deleteAllRowTs_args } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map462 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map462.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key463; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val464; - for (int _i465 = 0; _i465 < _map462.size; ++_i465) + org.apache.thrift.protocol.TMap _map472 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map472.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key473; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val474; + for (int _i475 = 0; _i475 < _map472.size; ++_i475) { - _key463 = iprot.readBinary(); - _val464 = iprot.readBinary(); - struct.attributes.put(_key463, _val464); + _key473 = iprot.readBinary(); + _val474 = iprot.readBinary(); + struct.attributes.put(_key473, _val474); } } struct.setAttributesIsSet(true); @@ -45998,15 +46944,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithScan case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map466 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map466.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key467; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val468; - for (int _i469 = 0; _i469 < _map466.size; ++_i469) + org.apache.thrift.protocol.TMap _map476 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map476.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key477; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val478; + for (int _i479 = 0; _i479 < _map476.size; ++_i479) { - _key467 = iprot.readBinary(); - _val468 = iprot.readBinary(); - struct.attributes.put(_key467, _val468); + _key477 = iprot.readBinary(); + _val478 = iprot.readBinary(); + struct.attributes.put(_key477, _val478); } iprot.readMapEnd(); } @@ -46044,10 +46990,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSca oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter470 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter480 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter470.getKey()); - oprot.writeBinary(_iter470.getValue()); + oprot.writeBinary(_iter480.getKey()); + oprot.writeBinary(_iter480.getValue()); } oprot.writeMapEnd(); } @@ -46090,10 +47036,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithScan if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter471 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter481 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter471.getKey()); - oprot.writeBinary(_iter471.getValue()); + oprot.writeBinary(_iter481.getKey()); + oprot.writeBinary(_iter481.getValue()); } } } @@ -46114,15 +47060,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithScan_ } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map472 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map472.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key473; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val474; - for (int _i475 = 0; _i475 < _map472.size; ++_i475) + org.apache.thrift.protocol.TMap _map482 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map482.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key483; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val484; + for (int _i485 = 0; _i485 < _map482.size; ++_i485) { - _key473 = iprot.readBinary(); - _val474 = iprot.readBinary(); - struct.attributes.put(_key473, _val474); + _key483 = iprot.readBinary(); + _val484 = iprot.readBinary(); + struct.attributes.put(_key483, _val484); } } struct.setAttributesIsSet(true); @@ -47295,13 +48241,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpen_args st case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list476 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list476.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem477; - for (int _i478 = 0; _i478 < _list476.size; ++_i478) + org.apache.thrift.protocol.TList _list486 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list486.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem487; + for (int _i488 = 0; _i488 < _list486.size; ++_i488) { - _elem477 = iprot.readBinary(); - struct.columns.add(_elem477); + _elem487 = iprot.readBinary(); + struct.columns.add(_elem487); } iprot.readListEnd(); } @@ -47313,15 +48259,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpen_args st case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map479 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map479.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key480; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val481; - for (int _i482 = 0; _i482 < _map479.size; ++_i482) + org.apache.thrift.protocol.TMap _map489 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map489.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key490; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val491; + for (int _i492 = 0; _i492 < _map489.size; ++_i492) { - _key480 = iprot.readBinary(); - _val481 = iprot.readBinary(); - struct.attributes.put(_key480, _val481); + _key490 = iprot.readBinary(); + _val491 = iprot.readBinary(); + struct.attributes.put(_key490, _val491); } iprot.readMapEnd(); } @@ -47359,9 +48305,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpen_args s oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter483 : struct.columns) + for (java.nio.ByteBuffer _iter493 : struct.columns) { - oprot.writeBinary(_iter483); + oprot.writeBinary(_iter493); } oprot.writeListEnd(); } @@ -47371,10 +48317,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpen_args s oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter484 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter494 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter484.getKey()); - oprot.writeBinary(_iter484.getValue()); + oprot.writeBinary(_iter494.getKey()); + oprot.writeBinary(_iter494.getValue()); } oprot.writeMapEnd(); } @@ -47420,19 +48366,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpen_args st if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter485 : struct.columns) + for (java.nio.ByteBuffer _iter495 : struct.columns) { - oprot.writeBinary(_iter485); + oprot.writeBinary(_iter495); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter486 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter496 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter486.getKey()); - oprot.writeBinary(_iter486.getValue()); + oprot.writeBinary(_iter496.getKey()); + oprot.writeBinary(_iter496.getValue()); } } } @@ -47452,28 +48398,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpen_args str } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list487 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list487.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem488; - for (int _i489 = 0; _i489 < _list487.size; ++_i489) + org.apache.thrift.protocol.TList _list497 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list497.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem498; + for (int _i499 = 0; _i499 < _list497.size; ++_i499) { - _elem488 = iprot.readBinary(); - struct.columns.add(_elem488); + _elem498 = iprot.readBinary(); + struct.columns.add(_elem498); } } struct.setColumnsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map490 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map490.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key491; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val492; - for (int _i493 = 0; _i493 < _map490.size; ++_i493) + org.apache.thrift.protocol.TMap _map500 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map500.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key501; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val502; + for (int _i503 = 0; _i503 < _map500.size; ++_i503) { - _key491 = iprot.readBinary(); - _val492 = iprot.readBinary(); - struct.attributes.put(_key491, _val492); + _key501 = iprot.readBinary(); + _val502 = iprot.readBinary(); + struct.attributes.put(_key501, _val502); } } struct.setAttributesIsSet(true); @@ -48765,13 +49711,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithStop case 4: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list494 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list494.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem495; - for (int _i496 = 0; _i496 < _list494.size; ++_i496) + org.apache.thrift.protocol.TList _list504 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list504.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem505; + for (int _i506 = 0; _i506 < _list504.size; ++_i506) { - _elem495 = iprot.readBinary(); - struct.columns.add(_elem495); + _elem505 = iprot.readBinary(); + struct.columns.add(_elem505); } iprot.readListEnd(); } @@ -48783,15 +49729,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithStop case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map497 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map497.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key498; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val499; - for (int _i500 = 0; _i500 < _map497.size; ++_i500) + org.apache.thrift.protocol.TMap _map507 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map507.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key508; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val509; + for (int _i510 = 0; _i510 < _map507.size; ++_i510) { - _key498 = iprot.readBinary(); - _val499 = iprot.readBinary(); - struct.attributes.put(_key498, _val499); + _key508 = iprot.readBinary(); + _val509 = iprot.readBinary(); + struct.attributes.put(_key508, _val509); } iprot.readMapEnd(); } @@ -48834,9 +49780,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSto oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter501 : struct.columns) + for (java.nio.ByteBuffer _iter511 : struct.columns) { - oprot.writeBinary(_iter501); + oprot.writeBinary(_iter511); } oprot.writeListEnd(); } @@ -48846,10 +49792,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSto oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter502 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter512 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter502.getKey()); - oprot.writeBinary(_iter502.getValue()); + oprot.writeBinary(_iter512.getKey()); + oprot.writeBinary(_iter512.getValue()); } oprot.writeMapEnd(); } @@ -48901,19 +49847,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStop if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter503 : struct.columns) + for (java.nio.ByteBuffer _iter513 : struct.columns) { - oprot.writeBinary(_iter503); + oprot.writeBinary(_iter513); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter504 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter514 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter504.getKey()); - oprot.writeBinary(_iter504.getValue()); + oprot.writeBinary(_iter514.getKey()); + oprot.writeBinary(_iter514.getValue()); } } } @@ -48937,28 +49883,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStop_ } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list505 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list505.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem506; - for (int _i507 = 0; _i507 < _list505.size; ++_i507) + org.apache.thrift.protocol.TList _list515 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list515.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem516; + for (int _i517 = 0; _i517 < _list515.size; ++_i517) { - _elem506 = iprot.readBinary(); - struct.columns.add(_elem506); + _elem516 = iprot.readBinary(); + struct.columns.add(_elem516); } } struct.setColumnsIsSet(true); } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map508 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map508.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key509; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val510; - for (int _i511 = 0; _i511 < _map508.size; ++_i511) + org.apache.thrift.protocol.TMap _map518 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map518.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key519; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val520; + for (int _i521 = 0; _i521 < _map518.size; ++_i521) { - _key509 = iprot.readBinary(); - _val510 = iprot.readBinary(); - struct.attributes.put(_key509, _val510); + _key519 = iprot.readBinary(); + _val520 = iprot.readBinary(); + struct.attributes.put(_key519, _val520); } } struct.setAttributesIsSet(true); @@ -50119,13 +51065,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithPref case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list512 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list512.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem513; - for (int _i514 = 0; _i514 < _list512.size; ++_i514) + org.apache.thrift.protocol.TList _list522 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list522.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem523; + for (int _i524 = 0; _i524 < _list522.size; ++_i524) { - _elem513 = iprot.readBinary(); - struct.columns.add(_elem513); + _elem523 = iprot.readBinary(); + struct.columns.add(_elem523); } iprot.readListEnd(); } @@ -50137,15 +51083,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithPref case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map515 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map515.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key516; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val517; - for (int _i518 = 0; _i518 < _map515.size; ++_i518) + org.apache.thrift.protocol.TMap _map525 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map525.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key526; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val527; + for (int _i528 = 0; _i528 < _map525.size; ++_i528) { - _key516 = iprot.readBinary(); - _val517 = iprot.readBinary(); - struct.attributes.put(_key516, _val517); + _key526 = iprot.readBinary(); + _val527 = iprot.readBinary(); + struct.attributes.put(_key526, _val527); } iprot.readMapEnd(); } @@ -50183,9 +51129,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithPre oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter519 : struct.columns) + for (java.nio.ByteBuffer _iter529 : struct.columns) { - oprot.writeBinary(_iter519); + oprot.writeBinary(_iter529); } oprot.writeListEnd(); } @@ -50195,10 +51141,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithPre oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter520 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter530 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter520.getKey()); - oprot.writeBinary(_iter520.getValue()); + oprot.writeBinary(_iter530.getKey()); + oprot.writeBinary(_iter530.getValue()); } oprot.writeMapEnd(); } @@ -50244,19 +51190,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithPref if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter521 : struct.columns) + for (java.nio.ByteBuffer _iter531 : struct.columns) { - oprot.writeBinary(_iter521); + oprot.writeBinary(_iter531); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter522 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter532 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter522.getKey()); - oprot.writeBinary(_iter522.getValue()); + oprot.writeBinary(_iter532.getKey()); + oprot.writeBinary(_iter532.getValue()); } } } @@ -50276,28 +51222,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithPrefi } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list523 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list523.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem524; - for (int _i525 = 0; _i525 < _list523.size; ++_i525) + org.apache.thrift.protocol.TList _list533 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list533.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem534; + for (int _i535 = 0; _i535 < _list533.size; ++_i535) { - _elem524 = iprot.readBinary(); - struct.columns.add(_elem524); + _elem534 = iprot.readBinary(); + struct.columns.add(_elem534); } } struct.setColumnsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map526 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map526.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key527; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val528; - for (int _i529 = 0; _i529 < _map526.size; ++_i529) + org.apache.thrift.protocol.TMap _map536 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map536.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key537; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val538; + for (int _i539 = 0; _i539 < _map536.size; ++_i539) { - _key527 = iprot.readBinary(); - _val528 = iprot.readBinary(); - struct.attributes.put(_key527, _val528); + _key537 = iprot.readBinary(); + _val538 = iprot.readBinary(); + struct.attributes.put(_key537, _val538); } } struct.setAttributesIsSet(true); @@ -51561,13 +52507,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenTs_args case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list530 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list530.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem531; - for (int _i532 = 0; _i532 < _list530.size; ++_i532) + org.apache.thrift.protocol.TList _list540 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list540.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem541; + for (int _i542 = 0; _i542 < _list540.size; ++_i542) { - _elem531 = iprot.readBinary(); - struct.columns.add(_elem531); + _elem541 = iprot.readBinary(); + struct.columns.add(_elem541); } iprot.readListEnd(); } @@ -51587,15 +52533,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenTs_args case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map533 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map533.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key534; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val535; - for (int _i536 = 0; _i536 < _map533.size; ++_i536) + org.apache.thrift.protocol.TMap _map543 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map543.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key544; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val545; + for (int _i546 = 0; _i546 < _map543.size; ++_i546) { - _key534 = iprot.readBinary(); - _val535 = iprot.readBinary(); - struct.attributes.put(_key534, _val535); + _key544 = iprot.readBinary(); + _val545 = iprot.readBinary(); + struct.attributes.put(_key544, _val545); } iprot.readMapEnd(); } @@ -51633,9 +52579,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenTs_args oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter537 : struct.columns) + for (java.nio.ByteBuffer _iter547 : struct.columns) { - oprot.writeBinary(_iter537); + oprot.writeBinary(_iter547); } oprot.writeListEnd(); } @@ -51648,10 +52594,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenTs_args oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter538 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter548 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter538.getKey()); - oprot.writeBinary(_iter538.getValue()); + oprot.writeBinary(_iter548.getKey()); + oprot.writeBinary(_iter548.getValue()); } oprot.writeMapEnd(); } @@ -51700,9 +52646,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenTs_args if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter539 : struct.columns) + for (java.nio.ByteBuffer _iter549 : struct.columns) { - oprot.writeBinary(_iter539); + oprot.writeBinary(_iter549); } } } @@ -51712,10 +52658,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenTs_args if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter540 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter550 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter540.getKey()); - oprot.writeBinary(_iter540.getValue()); + oprot.writeBinary(_iter550.getKey()); + oprot.writeBinary(_iter550.getValue()); } } } @@ -51735,13 +52681,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenTs_args s } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list541 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list541.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem542; - for (int _i543 = 0; _i543 < _list541.size; ++_i543) + org.apache.thrift.protocol.TList _list551 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list551.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem552; + for (int _i553 = 0; _i553 < _list551.size; ++_i553) { - _elem542 = iprot.readBinary(); - struct.columns.add(_elem542); + _elem552 = iprot.readBinary(); + struct.columns.add(_elem552); } } struct.setColumnsIsSet(true); @@ -51752,15 +52698,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenTs_args s } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map544 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map544.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key545; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val546; - for (int _i547 = 0; _i547 < _map544.size; ++_i547) + org.apache.thrift.protocol.TMap _map554 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map554.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key555; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val556; + for (int _i557 = 0; _i557 < _map554.size; ++_i557) { - _key545 = iprot.readBinary(); - _val546 = iprot.readBinary(); - struct.attributes.put(_key545, _val546); + _key555 = iprot.readBinary(); + _val556 = iprot.readBinary(); + struct.attributes.put(_key555, _val556); } } struct.setAttributesIsSet(true); @@ -53143,13 +54089,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithStop case 4: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list548 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list548.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem549; - for (int _i550 = 0; _i550 < _list548.size; ++_i550) + org.apache.thrift.protocol.TList _list558 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list558.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem559; + for (int _i560 = 0; _i560 < _list558.size; ++_i560) { - _elem549 = iprot.readBinary(); - struct.columns.add(_elem549); + _elem559 = iprot.readBinary(); + struct.columns.add(_elem559); } iprot.readListEnd(); } @@ -53169,15 +54115,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithStop case 6: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map551 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map551.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key552; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val553; - for (int _i554 = 0; _i554 < _map551.size; ++_i554) + org.apache.thrift.protocol.TMap _map561 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map561.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key562; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val563; + for (int _i564 = 0; _i564 < _map561.size; ++_i564) { - _key552 = iprot.readBinary(); - _val553 = iprot.readBinary(); - struct.attributes.put(_key552, _val553); + _key562 = iprot.readBinary(); + _val563 = iprot.readBinary(); + struct.attributes.put(_key562, _val563); } iprot.readMapEnd(); } @@ -53220,9 +54166,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSto oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter555 : struct.columns) + for (java.nio.ByteBuffer _iter565 : struct.columns) { - oprot.writeBinary(_iter555); + oprot.writeBinary(_iter565); } oprot.writeListEnd(); } @@ -53235,10 +54181,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSto oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter556 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter566 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter556.getKey()); - oprot.writeBinary(_iter556.getValue()); + oprot.writeBinary(_iter566.getKey()); + oprot.writeBinary(_iter566.getValue()); } oprot.writeMapEnd(); } @@ -53293,9 +54239,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStop if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter557 : struct.columns) + for (java.nio.ByteBuffer _iter567 : struct.columns) { - oprot.writeBinary(_iter557); + oprot.writeBinary(_iter567); } } } @@ -53305,10 +54251,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStop if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter558 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter568 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter558.getKey()); - oprot.writeBinary(_iter558.getValue()); + oprot.writeBinary(_iter568.getKey()); + oprot.writeBinary(_iter568.getValue()); } } } @@ -53332,13 +54278,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStopT } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list559 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list559.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem560; - for (int _i561 = 0; _i561 < _list559.size; ++_i561) + org.apache.thrift.protocol.TList _list569 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list569.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem570; + for (int _i571 = 0; _i571 < _list569.size; ++_i571) { - _elem560 = iprot.readBinary(); - struct.columns.add(_elem560); + _elem570 = iprot.readBinary(); + struct.columns.add(_elem570); } } struct.setColumnsIsSet(true); @@ -53349,15 +54295,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStopT } if (incoming.get(5)) { { - org.apache.thrift.protocol.TMap _map562 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map562.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key563; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val564; - for (int _i565 = 0; _i565 < _map562.size; ++_i565) + org.apache.thrift.protocol.TMap _map572 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map572.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key573; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val574; + for (int _i575 = 0; _i575 < _map572.size; ++_i575) { - _key563 = iprot.readBinary(); - _val564 = iprot.readBinary(); - struct.attributes.put(_key563, _val564); + _key573 = iprot.readBinary(); + _val574 = iprot.readBinary(); + struct.attributes.put(_key573, _val574); } } struct.setAttributesIsSet(true); @@ -54693,14 +55639,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerGet_result s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list566 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list566.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem567; - for (int _i568 = 0; _i568 < _list566.size; ++_i568) + org.apache.thrift.protocol.TList _list576 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list576.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem577; + for (int _i578 = 0; _i578 < _list576.size; ++_i578) { - _elem567 = new TRowResult(); - _elem567.read(iprot); - struct.success.add(_elem567); + _elem577 = new TRowResult(); + _elem577.read(iprot); + struct.success.add(_elem577); } iprot.readListEnd(); } @@ -54746,9 +55692,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerGet_result oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter569 : struct.success) + for (TRowResult _iter579 : struct.success) { - _iter569.write(oprot); + _iter579.write(oprot); } oprot.writeListEnd(); } @@ -54795,9 +55741,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerGet_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter570 : struct.success) + for (TRowResult _iter580 : struct.success) { - _iter570.write(oprot); + _iter580.write(oprot); } } } @@ -54815,14 +55761,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerGet_result st java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list571 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list571.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem572; - for (int _i573 = 0; _i573 < _list571.size; ++_i573) + org.apache.thrift.protocol.TList _list581 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list581.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem582; + for (int _i583 = 0; _i583 < _list581.size; ++_i583) { - _elem572 = new TRowResult(); - _elem572.read(iprot); - struct.success.add(_elem572); + _elem582 = new TRowResult(); + _elem582.read(iprot); + struct.success.add(_elem582); } } struct.setSuccessIsSet(true); @@ -55807,14 +56753,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerGetList_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list574 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list574.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem575; - for (int _i576 = 0; _i576 < _list574.size; ++_i576) + org.apache.thrift.protocol.TList _list584 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list584.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem585; + for (int _i586 = 0; _i586 < _list584.size; ++_i586) { - _elem575 = new TRowResult(); - _elem575.read(iprot); - struct.success.add(_elem575); + _elem585 = new TRowResult(); + _elem585.read(iprot); + struct.success.add(_elem585); } iprot.readListEnd(); } @@ -55860,9 +56806,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerGetList_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter577 : struct.success) + for (TRowResult _iter587 : struct.success) { - _iter577.write(oprot); + _iter587.write(oprot); } oprot.writeListEnd(); } @@ -55909,9 +56855,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerGetList_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter578 : struct.success) + for (TRowResult _iter588 : struct.success) { - _iter578.write(oprot); + _iter588.write(oprot); } } } @@ -55929,14 +56875,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerGetList_resul java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list579 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list579.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem580; - for (int _i581 = 0; _i581 < _list579.size; ++_i581) + org.apache.thrift.protocol.TList _list589 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list589.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem590; + for (int _i591 = 0; _i591 < _list589.size; ++_i591) { - _elem580 = new TRowResult(); - _elem580.read(iprot); - struct.success.add(_elem580); + _elem590 = new TRowResult(); + _elem590.read(iprot); + struct.success.add(_elem590); } } struct.setSuccessIsSet(true); @@ -58454,14 +59400,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, append_result struc case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list582 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list582.size); - @org.apache.thrift.annotation.Nullable TCell _elem583; - for (int _i584 = 0; _i584 < _list582.size; ++_i584) + org.apache.thrift.protocol.TList _list592 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list592.size); + @org.apache.thrift.annotation.Nullable TCell _elem593; + for (int _i594 = 0; _i594 < _list592.size; ++_i594) { - _elem583 = new TCell(); - _elem583.read(iprot); - struct.success.add(_elem583); + _elem593 = new TCell(); + _elem593.read(iprot); + struct.success.add(_elem593); } iprot.readListEnd(); } @@ -58498,9 +59444,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, append_result stru oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TCell _iter585 : struct.success) + for (TCell _iter595 : struct.success) { - _iter585.write(oprot); + _iter595.write(oprot); } oprot.writeListEnd(); } @@ -58539,9 +59485,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, append_result struc if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TCell _iter586 : struct.success) + for (TCell _iter596 : struct.success) { - _iter586.write(oprot); + _iter596.write(oprot); } } } @@ -58556,14 +59502,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, append_result struct java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list587 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list587.size); - @org.apache.thrift.annotation.Nullable TCell _elem588; - for (int _i589 = 0; _i589 < _list587.size; ++_i589) + org.apache.thrift.protocol.TList _list597 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list597.size); + @org.apache.thrift.annotation.Nullable TCell _elem598; + for (int _i599 = 0; _i599 < _list597.size; ++_i599) { - _elem588 = new TCell(); - _elem588.read(iprot); - struct.success.add(_elem588); + _elem598 = new TCell(); + _elem598.read(iprot); + struct.success.add(_elem598); } } struct.setSuccessIsSet(true); @@ -59489,15 +60435,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, checkAndPut_args st case 7: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map590 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map590.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key591; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val592; - for (int _i593 = 0; _i593 < _map590.size; ++_i593) + org.apache.thrift.protocol.TMap _map600 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map600.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key601; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val602; + for (int _i603 = 0; _i603 < _map600.size; ++_i603) { - _key591 = iprot.readBinary(); - _val592 = iprot.readBinary(); - struct.attributes.put(_key591, _val592); + _key601 = iprot.readBinary(); + _val602 = iprot.readBinary(); + struct.attributes.put(_key601, _val602); } iprot.readMapEnd(); } @@ -59550,10 +60496,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, checkAndPut_args s oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter594 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter604 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter594.getKey()); - oprot.writeBinary(_iter594.getValue()); + oprot.writeBinary(_iter604.getKey()); + oprot.writeBinary(_iter604.getValue()); } oprot.writeMapEnd(); } @@ -59614,10 +60560,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, checkAndPut_args st if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter595 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter605 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter595.getKey()); - oprot.writeBinary(_iter595.getValue()); + oprot.writeBinary(_iter605.getKey()); + oprot.writeBinary(_iter605.getValue()); } } } @@ -59650,15 +60596,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, checkAndPut_args str } if (incoming.get(5)) { { - org.apache.thrift.protocol.TMap _map596 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map596.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key597; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val598; - for (int _i599 = 0; _i599 < _map596.size; ++_i599) + org.apache.thrift.protocol.TMap _map606 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map606.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key607; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val608; + for (int _i609 = 0; _i609 < _map606.size; ++_i609) { - _key597 = iprot.readBinary(); - _val598 = iprot.readBinary(); - struct.attributes.put(_key597, _val598); + _key607 = iprot.readBinary(); + _val608 = iprot.readBinary(); + struct.attributes.put(_key607, _val608); } } struct.setAttributesIsSet(true); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IOError.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IOError.java index f5f6b565c56c..9b02127caf9b 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IOError.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IOError.java @@ -12,7 +12,7 @@ * to the Hbase master or an Hbase region server. Also used to return * more general Hbase error conditions. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class IOError extends org.apache.thrift.TException implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("IOError"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IllegalArgument.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IllegalArgument.java index a0e2e97827a3..a627b982af49 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IllegalArgument.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IllegalArgument.java @@ -11,7 +11,7 @@ * An IllegalArgument exception indicates an illegal or invalid * argument was passed into a procedure. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class IllegalArgument extends org.apache.thrift.TException implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("IllegalArgument"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Mutation.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Mutation.java index 7bf919fda33e..5df3147a0c1b 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Mutation.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Mutation.java @@ -10,7 +10,7 @@ /** * A Mutation object is used to either update or delete a column-value. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class Mutation implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("Mutation"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAccessControlEntity.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAccessControlEntity.java index 24fcb0586a24..9c8fb43de110 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAccessControlEntity.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAccessControlEntity.java @@ -10,7 +10,7 @@ /** * TAccessControlEntity for permission control */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TAccessControlEntity implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TAccessControlEntity"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAppend.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAppend.java index 3d0333ea30f6..3b553362e8b1 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAppend.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAppend.java @@ -10,7 +10,7 @@ /** * An Append object is used to specify the parameters for performing the append operation. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TAppend implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TAppend"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TCell.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TCell.java index fe6ccf21d416..e28f725de576 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TCell.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TCell.java @@ -13,7 +13,7 @@ * the timestamp of a cell to a first-class value, making it easy to take * note of temporal data. Cell is used all the way from HStore up to HTable. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TCell implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TCell"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TColumn.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TColumn.java index 8f486104691b..6c53daf54bb6 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TColumn.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TColumn.java @@ -10,7 +10,7 @@ /** * Holds column name and the cell. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TColumn implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumn"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TIncrement.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TIncrement.java index ee1fdd1d0573..6b786b930faf 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TIncrement.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TIncrement.java @@ -11,7 +11,7 @@ * For increments that are not incrementColumnValue * equivalents. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TIncrement implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TIncrement"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TPermissionScope.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TPermissionScope.java index dc31e774d4b5..6ce960fa614e 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TPermissionScope.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TPermissionScope.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift.generated; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TPermissionScope implements org.apache.thrift.TEnum { TABLE(0), NAMESPACE(1); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRegionInfo.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRegionInfo.java index fdfb11aa8c87..a49e3bd22602 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRegionInfo.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRegionInfo.java @@ -10,7 +10,7 @@ /** * A TRegionInfo contains information about an HTable region. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TRegionInfo implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TRegionInfo"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRowResult.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRowResult.java index d3959114e728..76d027ee6c77 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRowResult.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRowResult.java @@ -10,7 +10,7 @@ /** * Holds row name and then a map of columns to cells. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TRowResult implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TRowResult"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TScan.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TScan.java index ec486accf3ba..090e7f3bae42 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TScan.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TScan.java @@ -10,7 +10,7 @@ /** * A Scan object is used to specify scanner parameters when opening a scanner. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TScan implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TScan"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TThriftServerType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TThriftServerType.java index 17bdd3e4e40a..066c6afdbaa0 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TThriftServerType.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TThriftServerType.java @@ -10,7 +10,7 @@ /** * Specify type of thrift server: thrift and thrift2 */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TThriftServerType implements org.apache.thrift.TEnum { ONE(1), TWO(2); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAccessControlEntity.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAccessControlEntity.java index b68d7acd7a3d..4ddcfde5b68f 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAccessControlEntity.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAccessControlEntity.java @@ -10,7 +10,7 @@ /** * TAccessControlEntity for permission control */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TAccessControlEntity implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TAccessControlEntity"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAppend.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAppend.java index 33ccfd5cc8f8..25e4a76f1917 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAppend.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAppend.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TAppend implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TAppend"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAuthorization.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAuthorization.java index 7962bfa8c26d..86afe95a8dcb 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAuthorization.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAuthorization.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TAuthorization implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TAuthorization"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TBloomFilterType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TBloomFilterType.java index 35bcfd58f8a3..b93f0fbc393f 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TBloomFilterType.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TBloomFilterType.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.regionserver.BloomType */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TBloomFilterType implements org.apache.thrift.TEnum { /** * Bloomfilters disabled diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCellVisibility.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCellVisibility.java index 7a29bd7596ad..7ffe2e1c78a5 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCellVisibility.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCellVisibility.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TCellVisibility implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TCellVisibility"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumn.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumn.java index 90f7cdec2204..6c1da2f8f959 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumn.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumn.java @@ -12,7 +12,7 @@ * in a HBase table by column family and optionally * a column qualifier and timestamp */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TColumn implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumn"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnFamilyDescriptor.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnFamilyDescriptor.java index 0c48ba68effb..0653497bd485 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnFamilyDescriptor.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnFamilyDescriptor.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.client.ColumnFamilyDescriptor */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TColumnFamilyDescriptor implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumnFamilyDescriptor"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnIncrement.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnIncrement.java index 2fb514d3a127..2198cc035d63 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnIncrement.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnIncrement.java @@ -10,7 +10,7 @@ /** * Represents a single cell and the amount to increment it by */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TColumnIncrement implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumnIncrement"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnValue.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnValue.java index a30487aac56d..8a090220299e 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnValue.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnValue.java @@ -10,7 +10,7 @@ /** * Represents a single cell and its value. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TColumnValue implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumnValue"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompareOperator.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompareOperator.java index 6c749d587869..3c408162fc97 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompareOperator.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompareOperator.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.CompareOperator. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TCompareOperator implements org.apache.thrift.TEnum { LESS(0), LESS_OR_EQUAL(1), diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompressionAlgorithm.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompressionAlgorithm.java index e4deb1078832..5e2b43d533c5 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompressionAlgorithm.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompressionAlgorithm.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.io.compress.Algorithm */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TCompressionAlgorithm implements org.apache.thrift.TEnum { LZO(0), GZ(1), diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TConsistency.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TConsistency.java index 17b6d2bc0eba..e59fbff8e834 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TConsistency.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TConsistency.java @@ -12,7 +12,7 @@ * - STRONG means reads only from primary region * - TIMELINE means reads might return values from secondary region replicas */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TConsistency implements org.apache.thrift.TEnum { STRONG(1), TIMELINE(2); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDataBlockEncoding.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDataBlockEncoding.java index c3c7429f024a..3dd43869d783 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDataBlockEncoding.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDataBlockEncoding.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.io.encoding.DataBlockEncoding */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TDataBlockEncoding implements org.apache.thrift.TEnum { /** * Disable data block encoding. diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDelete.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDelete.java index bb217d13f96d..c2e7b82f4577 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDelete.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDelete.java @@ -33,7 +33,7 @@ * by changing the durability. If you don't provide durability, it defaults to * column family's default setting for durability. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TDelete implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TDelete"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDeleteType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDeleteType.java index 3ccf01ea4300..7216fcfba682 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDeleteType.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDeleteType.java @@ -12,7 +12,7 @@ * - DELETE_COLUMN means exactly one version will be removed, * - DELETE_COLUMNS means previous versions will also be removed. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TDeleteType implements org.apache.thrift.TEnum { DELETE_COLUMN(0), DELETE_COLUMNS(1), diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDurability.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDurability.java index 638d440c01c9..a784ce582b47 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDurability.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDurability.java @@ -14,7 +14,7 @@ * - SYNC_WAL means write the Mutation to the WAL synchronously, * - FSYNC_WAL means Write the Mutation to the WAL synchronously and force the entries to disk. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TDurability implements org.apache.thrift.TEnum { USE_DEFAULT(0), SKIP_WAL(1), diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TFilterByOperator.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TFilterByOperator.java index 61ee2f6de513..9ce4e741f880 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TFilterByOperator.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TFilterByOperator.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TFilterByOperator implements org.apache.thrift.TEnum { AND(0), OR(1); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TGet.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TGet.java index dfecde9ffb22..ef0a97cd2c8e 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TGet.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TGet.java @@ -20,7 +20,7 @@ * If you specify a time range and a timestamp the range is ignored. * Timestamps on TColumns are ignored. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TGet implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TGet"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THBaseService.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THBaseService.java index 0fde1dbf4753..9e5dd45c584c 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THBaseService.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THBaseService.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class THBaseService { public interface Iface { diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionInfo.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionInfo.java index b4ad2b9612ce..7e8033904592 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionInfo.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionInfo.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class THRegionInfo implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("THRegionInfo"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionLocation.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionLocation.java index 8c9f2ba14d22..317446a7a83f 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionLocation.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionLocation.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class THRegionLocation implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("THRegionLocation"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIOError.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIOError.java index 86f8077cda47..ab320fbeab63 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIOError.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIOError.java @@ -12,7 +12,7 @@ * to the HBase master or a HBase region server. Also used to return * more general HBase error conditions. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TIOError extends org.apache.thrift.TException implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TIOError"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIllegalArgument.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIllegalArgument.java index 9b634c54f10c..825a024cf63d 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIllegalArgument.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIllegalArgument.java @@ -11,7 +11,7 @@ * A TIllegalArgument exception indicates an illegal or invalid * argument was passed into a procedure. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TIllegalArgument extends org.apache.thrift.TException implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TIllegalArgument"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIncrement.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIncrement.java index 746f2199eedd..9d790adddb27 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIncrement.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIncrement.java @@ -14,7 +14,7 @@ * by changing the durability. If you don't provide durability, it defaults to * column family's default setting for durability. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TIncrement implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TIncrement"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TKeepDeletedCells.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TKeepDeletedCells.java index dd723fd73242..54c30193514b 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TKeepDeletedCells.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TKeepDeletedCells.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.KeepDeletedCells */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TKeepDeletedCells implements org.apache.thrift.TEnum { /** * Deleted Cells are not retained. diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogQueryFilter.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogQueryFilter.java index 49f7d5a4cd70..e6ee4467110b 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogQueryFilter.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogQueryFilter.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.client.LogQueryFilter */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TLogQueryFilter implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TLogQueryFilter"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogType.java index a353374d1004..25bd0076ef0c 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogType.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogType.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TLogType implements org.apache.thrift.TEnum { SLOW_LOG(1), LARGE_LOG(2); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TMutation.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TMutation.java index 6039ac39c02c..99c78d8b8f29 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TMutation.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TMutation.java @@ -10,7 +10,7 @@ /** * Atomic mutation for the specified row. It can be either Put or Delete. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TMutation extends org.apache.thrift.TUnion { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TMutation"); private static final org.apache.thrift.protocol.TField PUT_FIELD_DESC = new org.apache.thrift.protocol.TField("put", org.apache.thrift.protocol.TType.STRUCT, (short)1); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TNamespaceDescriptor.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TNamespaceDescriptor.java index ad79d1f7117f..5cba9b69eb66 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TNamespaceDescriptor.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TNamespaceDescriptor.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.NamespaceDescriptor */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TNamespaceDescriptor implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TNamespaceDescriptor"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TOnlineLogRecord.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TOnlineLogRecord.java index 4dcfb7561174..4f51e851e32a 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TOnlineLogRecord.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TOnlineLogRecord.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.client.OnlineLogRecordrd */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TOnlineLogRecord implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TOnlineLogRecord"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPermissionScope.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPermissionScope.java index 7ca83ced9d51..27625d98b6ab 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPermissionScope.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPermissionScope.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TPermissionScope implements org.apache.thrift.TEnum { TABLE(0), NAMESPACE(1); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPut.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPut.java index b458182fdc4c..8c7ccdabb689 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPut.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPut.java @@ -19,7 +19,7 @@ * by changing the durability. If you don't provide durability, it defaults to * column family's default setting for durability. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TPut implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TPut"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TReadType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TReadType.java index 8af01cd1ed4c..d7b63a1e34c7 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TReadType.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TReadType.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TReadType implements org.apache.thrift.TEnum { DEFAULT(1), STREAM(2), diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TResult.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TResult.java index 757856e3e649..db7df1820149 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TResult.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TResult.java @@ -10,7 +10,7 @@ /** * if no Result is found, row and columnValues will not be set. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TResult implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TResult"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TRowMutations.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TRowMutations.java index 6accf9d569ae..f61a58aeacf8 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TRowMutations.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TRowMutations.java @@ -10,7 +10,7 @@ /** * A TRowMutations object is used to apply a number of Mutations to a single row. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TRowMutations implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TRowMutations"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TScan.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TScan.java index 6cfae7ed49e7..3d3ff02d437f 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TScan.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TScan.java @@ -11,7 +11,7 @@ * Any timestamps in the columns are ignored but the colFamTimeRangeMap included, use timeRange to select by timestamp. * Max versions defaults to 1. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TScan implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TScan"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TServerName.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TServerName.java index ec426e3296d3..87b7f09535ee 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TServerName.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TServerName.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TServerName implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TServerName"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableDescriptor.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableDescriptor.java index 7a3079a1a4c3..532febf53303 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableDescriptor.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableDescriptor.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.client.TableDescriptor */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TTableDescriptor implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TTableDescriptor"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableName.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableName.java index 80ae046e2ad3..a8adcbaafda0 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableName.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableName.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.TableName */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TTableName implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TTableName"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TThriftServerType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TThriftServerType.java index 722b0f582396..b983746e66c1 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TThriftServerType.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TThriftServerType.java @@ -10,7 +10,7 @@ /** * Specify type of thrift server: thrift and thrift2 */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public enum TThriftServerType implements org.apache.thrift.TEnum { ONE(1), TWO(2); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTimeRange.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTimeRange.java index fefa7cbf3e93..ae977c8fdb5e 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTimeRange.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTimeRange.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") public class TTimeRange implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TTimeRange"); diff --git a/hbase-thrift/src/main/resources/org/apache/hadoop/hbase/thrift/Hbase.thrift b/hbase-thrift/src/main/resources/org/apache/hadoop/hbase/thrift/Hbase.thrift index cfadcb29dcf9..8b204b3bbd7e 100644 --- a/hbase-thrift/src/main/resources/org/apache/hadoop/hbase/thrift/Hbase.thrift +++ b/hbase-thrift/src/main/resources/org/apache/hadoop/hbase/thrift/Hbase.thrift @@ -261,6 +261,14 @@ service Hbase { list getTableNames() throws (1:IOError io) + /** + * List all the userspace tables and their enabled or disabled flags. + * + * @return list of tables with is enabled flags + */ + map getTableNamesWithIsTableEnabled() + throws (1:IOError io) + /** * List all the column families assoicated with a table. * diff --git a/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift/TestThriftServer.java b/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift/TestThriftServer.java index a6049af3e6b4..b596e1ee4a6e 100644 --- a/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift/TestThriftServer.java +++ b/hbase-thrift/src/test/java/org/apache/hadoop/hbase/thrift/TestThriftServer.java @@ -32,6 +32,7 @@ import java.util.HashMap; import java.util.List; import java.util.Map; +import java.util.concurrent.atomic.AtomicInteger; import java.util.stream.Collectors; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hbase.CompatibilityFactory; @@ -725,6 +726,35 @@ public static void doTestCheckAndPut() throws Exception { } } + @Test + public void testGetTableNamesWithStatus() throws Exception{ + ThriftHBaseServiceHandler handler = + new ThriftHBaseServiceHandler(UTIL.getConfiguration(), + UserProvider.instantiate(UTIL.getConfiguration())); + + createTestTables(handler); + + assertEquals(2, handler.getTableNamesWithIsTableEnabled().size()); + assertEquals(2, countTablesByStatus(true, handler)); + handler.disableTable(tableBname); + assertEquals(1, countTablesByStatus(true, handler)); + assertEquals(1, countTablesByStatus(false, handler)); + assertEquals(2, handler.getTableNamesWithIsTableEnabled().size()); + handler.enableTable(tableBname); + assertEquals(2, countTablesByStatus(true, handler)); + + dropTestTables(handler); + } + + private static int countTablesByStatus(Boolean isEnabled, Hbase.Iface handler) throws Exception { + AtomicInteger counter = new AtomicInteger(0); + handler.getTableNamesWithIsTableEnabled().forEach( + (table, tableStatus) -> { + if (tableStatus.equals(isEnabled)) counter.getAndIncrement(); + }); + return counter.get(); + } + @Test public void testMetricsWithException() throws Exception { String rowkey = "row1"; diff --git a/test.txt b/test.txt new file mode 100644 index 000000000000..58fb49f27daa --- /dev/null +++ b/test.txt @@ -0,0 +1,965 @@ +[INFO] Scanning for projects... +[INFO] ------------------------------------------------------------------------ +[INFO] Detecting the operating system and CPU architecture +[INFO] ------------------------------------------------------------------------ +[INFO] os.detected.name: osx +[INFO] os.detected.arch: x86_64 +[INFO] os.detected.version: 10.16 +[INFO] os.detected.version.major: 10 +[INFO] os.detected.version.minor: 16 +[INFO] os.detected.classifier: osx-x86_64 +[INFO] ------------------------------------------------------------------------ +[INFO] Reactor Build Order: +[INFO] +[INFO] Apache HBase [pom] +[INFO] Apache HBase - Checkstyle [jar] +[INFO] Apache HBase - Annotations [jar] +[INFO] Apache HBase - Build Configuration [pom] +[INFO] Apache HBase - Logging [jar] +[INFO] Apache HBase - Shaded Protocol [jar] +[INFO] Apache HBase - Common [jar] +[INFO] Apache HBase - Metrics API [jar] +[INFO] Apache HBase - Metrics Implementation [jar] +[INFO] Apache HBase - Hadoop Compatibility [jar] +[INFO] Apache HBase - Client [jar] +[INFO] Apache HBase - Zookeeper [jar] +[INFO] Apache HBase - Replication [jar] +[INFO] Apache HBase - Balancer [jar] +[INFO] Apache HBase - Resource Bundle [jar] +[INFO] Apache HBase - HTTP [jar] +[INFO] Apache HBase - Asynchronous FileSystem [jar] +[INFO] Apache HBase - Procedure [jar] +[INFO] Apache HBase - Server [jar] +[INFO] Apache HBase - MapReduce [jar] +[INFO] Apache HBase - Testing Util [jar] +[INFO] Apache HBase - Thrift [jar] +[INFO] Apache HBase - Shell [jar] +[INFO] Apache HBase - Coprocessor Endpoint [jar] +[INFO] Apache HBase - Backup [jar] +[INFO] Apache HBase - Integration Tests [jar] +[INFO] Apache HBase - Rest [jar] +[INFO] Apache HBase - Examples [jar] +[INFO] Apache HBase - Shaded [pom] +[INFO] Apache HBase - Shaded - Client (with Hadoop bundled) [jar] +[INFO] Apache HBase - Shaded - Client [jar] +[INFO] Apache HBase - Shaded - MapReduce [jar] +[INFO] Apache HBase - External Block Cache [jar] +[INFO] Apache HBase - HBTop [jar] +[INFO] Apache HBase - Assembly [pom] +[INFO] Apache HBase - Shaded - Testing Util [jar] +[INFO] Apache HBase - Shaded - Testing Util Tester [jar] +[INFO] Apache HBase Shaded Packaging Invariants [pom] +[INFO] Apache HBase Shaded Packaging Invariants (with Hadoop bundled) [pom] +[INFO] Apache HBase - Archetypes [pom] +[INFO] Apache HBase - Exemplar for hbase-client archetype [jar] +[INFO] Apache HBase - Exemplar for hbase-shaded-client archetype [jar] +[INFO] Apache HBase - Archetype builder [pom] +[INFO] +[INFO] -----------------------< org.apache.hbase:hbase >----------------------- +[INFO] Building Apache HBase 3.0.0-alpha-2-SNAPSHOT [1/43] +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase --- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase --- +[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase --- +[INFO] +[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:display-info (display-info) @ hbase --- +[INFO] Maven Version: 3.8.1 +[INFO] JDK Version: 1.8.0_292 normalized as: 1.8.0-292 +[INFO] OS Info: Arch: x86_64 Family: mac Name: mac os x Version: 10.16 +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase --- +[INFO] +[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase --- +[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 +[INFO] Copying 3 resources from 1 bundle. +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase --- +[INFO] Skipping Rule Enforcement. +[INFO] +[INFO] -----------------< org.apache.hbase:hbase-checkstyle >------------------ +[INFO] Building Apache HBase - Checkstyle 3.0.0-alpha-2-SNAPSHOT [2/43] +[INFO] --------------------------------[ jar ]--------------------------------- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase-checkstyle --- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase-checkstyle --- +[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-checkstyle/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-checkstyle/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase-checkstyle --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase-checkstyle --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase-checkstyle --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase-checkstyle --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase-checkstyle --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase-checkstyle --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase-checkstyle --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase-checkstyle --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase-checkstyle --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase-checkstyle --- +[INFO] +[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase-checkstyle --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase-checkstyle --- +[INFO] +[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase-checkstyle --- +[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 +[INFO] Copying 3 resources from 1 bundle. +[INFO] +[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ hbase-checkstyle --- +[INFO] Using 'UTF-8' encoding to copy filtered resources. +[INFO] Copying 2 resources +[INFO] Copying 3 resources +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase-checkstyle --- +[INFO] Skipping Rule Enforcement. +[INFO] +[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ hbase-checkstyle --- +[INFO] No sources to compile +[INFO] +[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ hbase-checkstyle --- +[INFO] Using 'UTF-8' encoding to copy filtered resources. +[INFO] skip non existing resourceDirectory /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-checkstyle/src/test/resources +[INFO] Copying 3 resources +[INFO] +[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ hbase-checkstyle --- +[INFO] No sources to compile +[INFO] +[INFO] --- maven-surefire-plugin:3.0.0-M4:test (default-test) @ hbase-checkstyle --- +[INFO] +[INFO] --- maven-surefire-plugin:3.0.0-M4:test (secondPartTestsExecution) @ hbase-checkstyle --- +[INFO] Tests are skipped. +[INFO] +[INFO] -----------------< org.apache.hbase:hbase-annotations >----------------- +[INFO] Building Apache HBase - Annotations 3.0.0-alpha-2-SNAPSHOT [3/43] +[INFO] --------------------------------[ jar ]--------------------------------- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase-annotations --- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase-annotations --- +[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-annotations/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-annotations/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase-annotations --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase-annotations --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase-annotations --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase-annotations --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase-annotations --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase-annotations --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase-annotations --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase-annotations --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase-annotations --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase-annotations --- +[INFO] +[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase-annotations --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase-annotations --- +[INFO] +[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase-annotations --- +[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 +[INFO] Copying 3 resources from 1 bundle. +[INFO] +[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ hbase-annotations --- +[INFO] Using 'UTF-8' encoding to copy filtered resources. +[INFO] skip non existing resourceDirectory /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-annotations/src/main/resources +[INFO] Copying 3 resources +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase-annotations --- +[INFO] Skipping Rule Enforcement. +[INFO] +[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ hbase-annotations --- +[INFO] No sources to compile +[INFO] +[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ hbase-annotations --- +[INFO] Using 'UTF-8' encoding to copy filtered resources. +[INFO] skip non existing resourceDirectory /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-annotations/src/test/resources +[INFO] Copying 3 resources +[INFO] +[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ hbase-annotations --- +[INFO] Nothing to compile - all classes are up to date +[INFO] +[INFO] --- warbucks-maven-plugin:1.1.0:check (run-warbucks) @ hbase-annotations --- +[INFO] Rule 0: Class Matches: 0 +[INFO] Rule 0: Class Failures: 0 +[INFO] Total class failures: 0 +[INFO] +[INFO] --- maven-surefire-plugin:3.0.0-M4:test (default-test) @ hbase-annotations --- +[INFO] +[INFO] ------------------------------------------------------- +[INFO] T E S T S +[INFO] ------------------------------------------------------- +[INFO] +[INFO] Results: +[INFO] +[INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 +[INFO] +[INFO] +[INFO] --- maven-surefire-plugin:3.0.0-M4:test (secondPartTestsExecution) @ hbase-annotations --- +[INFO] Tests are skipped. +[INFO] +[INFO] -------------< org.apache.hbase:hbase-build-configuration >------------- +[INFO] Building Apache HBase - Build Configuration 3.0.0-alpha-2-SNAPSHOT [4/43] +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase-build-configuration --- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase-build-configuration --- +[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-build-configuration/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-build-configuration/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase-build-configuration --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase-build-configuration --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase-build-configuration --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase-build-configuration --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase-build-configuration --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase-build-configuration --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase-build-configuration --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase-build-configuration --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase-build-configuration --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase-build-configuration --- +[INFO] +[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase-build-configuration --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase-build-configuration --- +[INFO] +[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase-build-configuration --- +[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 +[INFO] Copying 3 resources from 1 bundle. +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase-build-configuration --- +[INFO] Skipping Rule Enforcement. +[INFO] +[INFO] -------------------< org.apache.hbase:hbase-logging >------------------- +[INFO] Building Apache HBase - Logging 3.0.0-alpha-2-SNAPSHOT [5/43] +[INFO] --------------------------------[ jar ]--------------------------------- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase-logging --- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase-logging --- +[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-logging/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-logging/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase-logging --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase-logging --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase-logging --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase-logging --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase-logging --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase-logging --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase-logging --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase-logging --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase-logging --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase-logging --- +[INFO] +[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase-logging --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase-logging --- +[INFO] +[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase-logging --- +[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 +[INFO] Copying 3 resources from 1 bundle. +[INFO] +[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ hbase-logging --- +[INFO] Using 'UTF-8' encoding to copy filtered resources. +[INFO] skip non existing resourceDirectory /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-logging/src/main/resources +[INFO] Copying 3 resources +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase-logging --- +[INFO] Skipping Rule Enforcement. +[INFO] +[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ hbase-logging --- +[INFO] Nothing to compile - all classes are up to date +[INFO] +[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ hbase-logging --- +[INFO] Using 'UTF-8' encoding to copy filtered resources. +[INFO] Copying 1 resource +[INFO] Copying 3 resources +[INFO] +[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ hbase-logging --- +[INFO] Nothing to compile - all classes are up to date +[INFO] +[INFO] --- warbucks-maven-plugin:1.1.0:check (run-warbucks) @ hbase-logging --- +[INFO] Rule 0: Class Matches: 2 +[INFO] Rule 0: Class Failures: 0 +[INFO] Total class failures: 0 +[INFO] +[INFO] --- maven-surefire-plugin:3.0.0-M4:test (default-test) @ hbase-logging --- +[INFO] +[INFO] --- maven-surefire-plugin:3.0.0-M4:test (secondPartTestsExecution) @ hbase-logging --- +[INFO] Tests are skipped. +[INFO] +[INFO] ---------------< org.apache.hbase:hbase-protocol-shaded >--------------- +[INFO] Building Apache HBase - Shaded Protocol 3.0.0-alpha-2-SNAPSHOT [6/43] +[INFO] --------------------------------[ jar ]--------------------------------- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase-protocol-shaded --- +[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- protobuf-maven-plugin:0.6.1:compile (compile-protoc) @ hbase-protocol-shaded --- +[INFO] Skipping compilation because target directory newer than sources. +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- replacer:1.5.3:replace (default) @ hbase-protocol-shaded --- +[INFO] Replacement run on 62 files. +[INFO] +[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase-protocol-shaded --- +[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 +[INFO] Copying 3 resources from 1 bundle. +[INFO] +[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ hbase-protocol-shaded --- +[INFO] Using 'UTF-8' encoding to copy filtered resources. +[INFO] skip non existing resourceDirectory /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/src/main/resources +[INFO] Copying 62 resources +[INFO] Copying 3 resources +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase-protocol-shaded --- +[INFO] Skipping Rule Enforcement. +[INFO] +[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ hbase-protocol-shaded --- +[INFO] Compiling 62 source files to /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/target/classes +[INFO] /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/LockServiceProtos.java: Some input files use or override a deprecated API. +[INFO] /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/LockServiceProtos.java: Recompile with -Xlint:deprecation for details. +[INFO] +[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ hbase-protocol-shaded --- +[INFO] Using 'UTF-8' encoding to copy filtered resources. +[INFO] skip non existing resourceDirectory /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/src/test/resources +[INFO] Copying 3 resources +[INFO] +[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ hbase-protocol-shaded --- +[INFO] No sources to compile +[INFO] +[INFO] --- warbucks-maven-plugin:1.1.0:check (run-warbucks) @ hbase-protocol-shaded --- +[INFO] Rule 0: Class Matches: 1 +[INFO] Rule 0: Class Failures: 0 +[INFO] Total class failures: 0 +[INFO] +[INFO] --- maven-surefire-plugin:3.0.0-M4:test (default-test) @ hbase-protocol-shaded --- +[INFO] +[INFO] --- maven-surefire-plugin:3.0.0-M4:test (secondPartTestsExecution) @ hbase-protocol-shaded --- +[INFO] Tests are skipped. +[INFO] +[INFO] -------------------< org.apache.hbase:hbase-common >-------------------- +[INFO] Building Apache HBase - Common 3.0.0-alpha-2-SNAPSHOT [7/43] +[INFO] --------------------------------[ jar ]--------------------------------- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase-common --- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase-common --- +[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-common/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-common/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase-common --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase-common --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase-common --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase-common --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase-common --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase-common --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase-common --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase-common --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase-common --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase-common --- +[INFO] +[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase-common --- +[INFO] +[INFO] --- build-helper-maven-plugin:3.0.0:add-source (versionInfo-source) @ hbase-common --- +[INFO] Source directory: /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-common/target/generated-sources/java added. +[INFO] +[INFO] --- maven-antrun-plugin:1.8:run (generate-Version-information) @ hbase-common --- +[INFO] Executing tasks + +main: + [exec] ~/Projects/apache-hbase/hbase/hbase-common ~/Projects/apache-hbase/hbase/hbase-common + [exec] ~/Projects/apache-hbase/hbase/hbase-common +[INFO] Executed tasks +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase-common --- +[INFO] +[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase-common --- +[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 +[INFO] Copying 3 resources from 1 bundle. +[INFO] +[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ hbase-common --- +[INFO] Using 'UTF-8' encoding to copy filtered resources. +[INFO] Copying 1 resource +[INFO] Copying 3 resources +[INFO] +[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase-common --- +[INFO] Skipping Rule Enforcement. +[INFO] +[INFO] --- maven-antrun-plugin:1.8:run (default) @ hbase-common --- +[INFO] Executing tasks + +main: +[INFO] Executed tasks +[INFO] +[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ hbase-common --- +[INFO] Compiling 2 source files to /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-common/target/classes +[INFO] +[INFO] --- maven-dependency-plugin:3.1.1:build-classpath (create-mrapp-generated-classpath) @ hbase-common --- +[INFO] Wrote classpath file '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-common/target/test-classes/mrapp-generated-classpath'. +[INFO] +[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ hbase-common --- +[INFO] Using 'UTF-8' encoding to copy filtered resources. +[INFO] Copying 1 resource to META-INF/ +[INFO] Copying 4 resources +[INFO] Copying 3 resources +[INFO] +[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ hbase-common --- +[INFO] Nothing to compile - all classes are up to date +[INFO] +[INFO] --- warbucks-maven-plugin:1.1.0:check (run-warbucks) @ hbase-common --- +[INFO] Rule 0: Class Matches: 264 +[INFO] Rule 0: Class Failures: 0 +[INFO] Total class failures: 0 +[INFO] +[INFO] --- maven-surefire-plugin:3.0.0-M4:test (default-test) @ hbase-common --- +[INFO] +[INFO] ------------------------------------------------------- +[INFO] T E S T S +[INFO] ------------------------------------------------------- +[INFO] Running org.apache.hadoop.hbase.TestTagBuilder +[INFO] Running org.apache.hadoop.hbase.TestCellComparator +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.318 s - in org.apache.hadoop.hbase.TestTagBuilder +[INFO] Running org.apache.hadoop.hbase.TestByteBufferKeyValue +[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.058 s - in org.apache.hadoop.hbase.TestCellComparator +[INFO] Running org.apache.hadoop.hbase.types.TestUnion2 +[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.624 s - in org.apache.hadoop.hbase.TestByteBufferKeyValue +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.264 s - in org.apache.hadoop.hbase.types.TestUnion2 +[INFO] Running org.apache.hadoop.hbase.types.TestOrderedString +[INFO] Running org.apache.hadoop.hbase.types.TestOrderedFloat32 +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.312 s - in org.apache.hadoop.hbase.types.TestOrderedString +[INFO] Running org.apache.hadoop.hbase.types.TestOrderedBlob +[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.879 s - in org.apache.hadoop.hbase.types.TestOrderedFloat32 +[INFO] Running org.apache.hadoop.hbase.types.TestStructNullExtension +[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.56 s - in org.apache.hadoop.hbase.types.TestOrderedBlob +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.166 s - in org.apache.hadoop.hbase.types.TestStructNullExtension +[INFO] Running org.apache.hadoop.hbase.types.TestFixedLengthWrapper +[INFO] Running org.apache.hadoop.hbase.types.TestOrderedBlobVar +[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.639 s - in org.apache.hadoop.hbase.types.TestFixedLengthWrapper +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.29 s - in org.apache.hadoop.hbase.types.TestOrderedBlobVar +[INFO] Running org.apache.hadoop.hbase.types.TestOrderedInt16 +[INFO] Running org.apache.hadoop.hbase.types.TestOrderedInt32 +[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.773 s - in org.apache.hadoop.hbase.types.TestOrderedInt16 +[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.609 s - in org.apache.hadoop.hbase.types.TestOrderedInt32 +[INFO] Running org.apache.hadoop.hbase.types.TestTerminatedWrapper +[INFO] Running org.apache.hadoop.hbase.types.TestOrderedNumeric +[INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.06 s - in org.apache.hadoop.hbase.types.TestTerminatedWrapper +[INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.848 s - in org.apache.hadoop.hbase.types.TestOrderedNumeric +[INFO] Running org.apache.hadoop.hbase.types.TestStruct +[INFO] Running org.apache.hadoop.hbase.types.TestOrderedInt64 +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.183 s - in org.apache.hadoop.hbase.types.TestStruct +[INFO] Running org.apache.hadoop.hbase.types.TestCopyOnWriteMaps +[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.6 s - in org.apache.hadoop.hbase.types.TestOrderedInt64 +[INFO] Running org.apache.hadoop.hbase.types.TestRawBytes +[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.522 s - in org.apache.hadoop.hbase.types.TestRawBytes +[INFO] Running org.apache.hadoop.hbase.types.TestRawString +[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.496 s - in org.apache.hadoop.hbase.types.TestRawString +[INFO] Running org.apache.hadoop.hbase.types.TestOrderedInt8 +[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.476 s - in org.apache.hadoop.hbase.types.TestOrderedInt8 +[INFO] Running org.apache.hadoop.hbase.types.TestOrderedFloat64 +[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.561 s - in org.apache.hadoop.hbase.types.TestOrderedFloat64 +[INFO] Running org.apache.hadoop.hbase.net.TestAddress +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.918 s - in org.apache.hadoop.hbase.net.TestAddress +[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass1 +[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.122 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass1 +[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass1 Time elapsed: 0.015 s <<< ERROR! +java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass1 + at org.junit.Assert.fail(Assert.java:89) + at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) + at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) + at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) + at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) + at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) + at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) + at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) + at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) + at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) + at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) + at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) + +[INFO] Running org.apache.hadoop.hbase.util.TestSimplePositionedMutableByteRange +[INFO] Tests run: 22, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 12.63 s - in org.apache.hadoop.hbase.types.TestCopyOnWriteMaps +[INFO] Running org.apache.hadoop.hbase.util.TestThreads +[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.218 s - in org.apache.hadoop.hbase.util.TestSimplePositionedMutableByteRange +[INFO] Running org.apache.hadoop.hbase.util.TestAvlUtil +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.877 s - in org.apache.hadoop.hbase.util.TestThreads +[INFO] Running org.apache.hadoop.hbase.util.TestByteBufferArray +[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.58 s - in org.apache.hadoop.hbase.util.TestAvlUtil +[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.131 s - in org.apache.hadoop.hbase.util.TestByteBufferArray +[INFO] Running org.apache.hadoop.hbase.util.TestLoadTestKVGenerator +[INFO] Running org.apache.hadoop.hbase.util.TestByteRangeWithKVSerialization +[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.504 s - in org.apache.hadoop.hbase.util.TestLoadTestKVGenerator +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.529 s - in org.apache.hadoop.hbase.util.TestByteRangeWithKVSerialization +[INFO] Running org.apache.hadoop.hbase.util.TestEnvironmentEdgeManager +[INFO] Running org.apache.hadoop.hbase.util.TestMovingAverage +[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.312 s - in org.apache.hadoop.hbase.util.TestMovingAverage +[INFO] Running org.apache.hadoop.hbase.util.TestOrder +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.08 s - in org.apache.hadoop.hbase.util.TestEnvironmentEdgeManager +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.002 s - in org.apache.hadoop.hbase.util.TestOrder +[INFO] Running org.apache.hadoop.hbase.util.TestSimpleMutableByteRange +[INFO] Running org.apache.hadoop.hbase.util.TestVersionInfo +[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.293 s - in org.apache.hadoop.hbase.util.TestSimpleMutableByteRange +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.927 s - in org.apache.hadoop.hbase.util.TestVersionInfo +[INFO] Running org.apache.hadoop.hbase.util.TestSimpleKdcServerUtil +[INFO] Running org.apache.hadoop.hbase.util.AbstractHBaseToolTest +[ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.109 s <<< FAILURE! - in org.apache.hadoop.hbase.util.AbstractHBaseToolTest +[ERROR] org.apache.hadoop.hbase.util.AbstractHBaseToolTest Time elapsed: 0.014 s <<< FAILURE! +java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.util.AbstractHBaseToolTest + at org.junit.Assert.fail(Assert.java:89) + at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) + at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) + at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) + at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) + at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) + at org.junit.internal.runners.model.EachTestNotifier.fireTestStarted(EachTestNotifier.java:42) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:364) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) + at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) + at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) + at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) + +[INFO] Running org.apache.hadoop.hbase.util.TestRetryCounter +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.754 s - in org.apache.hadoop.hbase.util.TestSimpleKdcServerUtil +[INFO] Running org.apache.hadoop.hbase.util.TestCommonFSUtils +[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.332 s - in org.apache.hadoop.hbase.util.TestCommonFSUtils +[INFO] Running org.apache.hadoop.hbase.util.TestByteRangeUtils +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.253 s - in org.apache.hadoop.hbase.util.TestRetryCounter +[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.064 s - in org.apache.hadoop.hbase.util.TestByteRangeUtils +[INFO] Running org.apache.hadoop.hbase.util.TestKeyLocker +[INFO] Running org.apache.hadoop.hbase.util.TestClasses +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.001 s - in org.apache.hadoop.hbase.util.TestKeyLocker +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.121 s - in org.apache.hadoop.hbase.util.TestClasses +[INFO] Running org.apache.hadoop.hbase.util.TestCoprocessorClassLoader +[INFO] Running org.apache.hadoop.hbase.util.TestWeakObjectPool +[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.377 s - in org.apache.hadoop.hbase.util.TestWeakObjectPool +[INFO] Running org.apache.hadoop.hbase.util.TestOrderedBytes +[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.313 s - in org.apache.hadoop.hbase.util.TestCoprocessorClassLoader +[INFO] Running org.apache.hadoop.hbase.util.TestGsonUtil +[INFO] Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.307 s - in org.apache.hadoop.hbase.util.TestOrderedBytes +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.948 s - in org.apache.hadoop.hbase.util.TestGsonUtil +[INFO] Running org.apache.hadoop.hbase.util.TestBytes +[INFO] Running org.apache.hadoop.hbase.util.TestByteBufferUtils +[INFO] Tests run: 33, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.938 s - in org.apache.hadoop.hbase.util.TestBytes +[INFO] Running org.apache.hadoop.hbase.util.TestShowProperties +[INFO] Tests run: 38, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.76 s - in org.apache.hadoop.hbase.util.TestByteBufferUtils +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.869 s - in org.apache.hadoop.hbase.util.TestShowProperties +[INFO] Running org.apache.hadoop.hbase.util.TestFutureUtils +[INFO] Running org.apache.hadoop.hbase.util.TestConcatenatedLists +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.007 s - in org.apache.hadoop.hbase.util.TestFutureUtils +[INFO] Running org.apache.hadoop.hbase.util.TestDynamicClassLoader +[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.709 s - in org.apache.hadoop.hbase.util.TestConcatenatedLists +[INFO] Running org.apache.hadoop.hbase.util.TestStrings +[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.189 s - in org.apache.hadoop.hbase.util.TestStrings +[INFO] Running org.apache.hadoop.hbase.util.TestJRubyFormat +[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.34 s - in org.apache.hadoop.hbase.util.TestDynamicClassLoader +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.256 s - in org.apache.hadoop.hbase.util.TestJRubyFormat +[INFO] Running org.apache.hadoop.hbase.codec.TestCellCodec +[INFO] Running org.apache.hadoop.hbase.codec.TestKeyValueCodec +[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.507 s - in org.apache.hadoop.hbase.codec.TestCellCodec +[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.371 s - in org.apache.hadoop.hbase.codec.TestKeyValueCodec +[INFO] Running org.apache.hadoop.hbase.codec.TestKeyValueCodecWithTags +[INFO] Running org.apache.hadoop.hbase.codec.TestCellCodecWithTags +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.083 s - in org.apache.hadoop.hbase.codec.TestKeyValueCodecWithTags +[INFO] Running org.apache.hadoop.hbase.TestTableName +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.086 s - in org.apache.hadoop.hbase.codec.TestCellCodecWithTags +[INFO] Running org.apache.hadoop.hbase.TestIndividualBytesFieldCell +[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.731 s - in org.apache.hadoop.hbase.TestTableName +[INFO] Running org.apache.hadoop.hbase.io.TestTagCompressionContext +[INFO] Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.568 s - in org.apache.hadoop.hbase.TestIndividualBytesFieldCell +[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.629 s - in org.apache.hadoop.hbase.io.TestTagCompressionContext +[INFO] Running org.apache.hadoop.hbase.io.crypto.TestKeyStoreKeyProvider +[INFO] Running org.apache.hadoop.hbase.io.crypto.TestCipherProvider +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.375 s - in org.apache.hadoop.hbase.io.crypto.TestCipherProvider +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.185 s - in org.apache.hadoop.hbase.io.crypto.TestKeyStoreKeyProvider +[INFO] Running org.apache.hadoop.hbase.io.crypto.TestKeyProvider +[INFO] Running org.apache.hadoop.hbase.io.crypto.TestEncryption +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.353 s - in org.apache.hadoop.hbase.io.crypto.TestKeyProvider +[INFO] Running org.apache.hadoop.hbase.io.crypto.aes.TestCommonsAES +[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.142 s - in org.apache.hadoop.hbase.io.crypto.TestEncryption +[INFO] Running org.apache.hadoop.hbase.io.crypto.aes.TestAES +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.49 s - in org.apache.hadoop.hbase.io.crypto.aes.TestCommonsAES +[INFO] Running org.apache.hadoop.hbase.io.util.TestLRUDictionary +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.525 s - in org.apache.hadoop.hbase.io.crypto.aes.TestAES +[INFO] Running org.apache.hadoop.hbase.io.TestMultiByteBuffInputStream +[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.724 s - in org.apache.hadoop.hbase.io.util.TestLRUDictionary +[INFO] Running org.apache.hadoop.hbase.io.encoding.TestEncodedDataBlock +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.313 s - in org.apache.hadoop.hbase.io.TestMultiByteBuffInputStream +[INFO] Running org.apache.hadoop.hbase.io.hadoopbackport.TestThrottledInputStream +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.866 s - in org.apache.hadoop.hbase.io.hadoopbackport.TestThrottledInputStream +[INFO] Running org.apache.hadoop.hbase.io.TestByteBufferListOutputStream +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.274 s - in org.apache.hadoop.hbase.io.encoding.TestEncodedDataBlock +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.143 s - in org.apache.hadoop.hbase.io.TestByteBufferListOutputStream +[INFO] Running org.apache.hadoop.hbase.io.TestByteBuffAllocator +[INFO] Running org.apache.hadoop.hbase.TestServerName +[INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.168 s - in org.apache.hadoop.hbase.TestServerName +[INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.603 s - in org.apache.hadoop.hbase.io.TestByteBuffAllocator +[INFO] Running org.apache.hadoop.hbase.TestChoreService +[INFO] Running org.apache.hadoop.hbase.TestHDFSBlocksDistribution +[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 31.232 s - in org.apache.hadoop.hbase.TestHDFSBlocksDistribution +[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass2 +[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.086 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass2 +[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass2 Time elapsed: 0.011 s <<< ERROR! +java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass2 + at org.junit.Assert.fail(Assert.java:89) + at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) + at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) + at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) + at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) + at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) + at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) + at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) + at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) + at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) + at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) + at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) + +[INFO] Running org.apache.hadoop.hbase.TestCellUtil +[INFO] Tests run: 19, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 35.639 s - in org.apache.hadoop.hbase.TestChoreService +[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$InValidParameterizedClass +[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.077 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$InValidParameterizedClass +[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$InValidParameterizedClass Time elapsed: 0.009 s <<< ERROR! +java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$InValidParameterizedClass + at org.junit.Assert.fail(Assert.java:89) + at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) + at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) + at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) + at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) + at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) + at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) + at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) + at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) + at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) + at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) + at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) + +[INFO] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.744 s - in org.apache.hadoop.hbase.TestCellUtil +[INFO] Running org.apache.hadoop.hbase.zookeeper.TestZKConfig +[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass4 +[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.11 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass4 +[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass4 Time elapsed: 0.01 s <<< ERROR! +java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass4 + at org.junit.Assert.fail(Assert.java:89) + at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) + at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) + at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) + at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) + at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) + at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) + at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) + at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) + at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) + at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) + at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) + +[INFO] Running org.apache.hadoop.hbase.TestSystemExitInTest +[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.884 s - in org.apache.hadoop.hbase.zookeeper.TestZKConfig +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.845 s - in org.apache.hadoop.hbase.TestSystemExitInTest +[INFO] Running org.apache.hadoop.hbase.TestHBaseConfiguration +[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass2 +[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.118 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass2 +[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass2 Time elapsed: 0.012 s <<< ERROR! +java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass2 + at org.junit.Assert.fail(Assert.java:89) + at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) + at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) + at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) + at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) + at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) + at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) + at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) + at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) + at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) + at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) + at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) + +[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ParameterizedClassWithNoParametersMethod +[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.081 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ParameterizedClassWithNoParametersMethod +[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ParameterizedClassWithNoParametersMethod Time elapsed: 0.011 s <<< ERROR! +java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ParameterizedClassWithNoParametersMethod + at org.junit.Assert.fail(Assert.java:89) + at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) + at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) + at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) + at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) + at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) + at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) + at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) + at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) + at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) + at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) + at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) + +[INFO] Running org.apache.hadoop.hbase.nio.TestSingleByteBuff +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.296 s - in org.apache.hadoop.hbase.nio.TestSingleByteBuff +[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.469 s - in org.apache.hadoop.hbase.TestHBaseConfiguration +[INFO] Running org.apache.hadoop.hbase.nio.TestMultiByteBuff +[INFO] Running org.apache.hadoop.hbase.TestCompoundConfiguration +[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.965 s - in org.apache.hadoop.hbase.TestCompoundConfiguration +[INFO] Running org.apache.hadoop.hbase.TestKeyValue +[INFO] Tests run: 17, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.663 s - in org.apache.hadoop.hbase.nio.TestMultiByteBuff +[INFO] Running org.apache.hadoop.hbase.TestCellBuilder +[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.373 s - in org.apache.hadoop.hbase.TestCellBuilder +[INFO] Running org.apache.hadoop.hbase.conf.TestConfigurationManager +[INFO] Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.853 s - in org.apache.hadoop.hbase.TestKeyValue +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.16 s - in org.apache.hadoop.hbase.conf.TestConfigurationManager +[INFO] Running org.apache.hadoop.hbase.logging.TestLog4jUtils +[INFO] Running org.apache.hadoop.hbase.logging.TestJul2Slf4j +[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.101 s - in org.apache.hadoop.hbase.logging.TestLog4jUtils +[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass1 +[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.096 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass1 +[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass1 Time elapsed: 0.009 s <<< ERROR! +java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass1 + at org.junit.Assert.fail(Assert.java:89) + at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) + at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) + at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) + at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) + at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) + at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) + at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) + at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) + at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) + at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) + at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) + +[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.833 s - in org.apache.hadoop.hbase.TestHBaseClassTestRule +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.865 s - in org.apache.hadoop.hbase.logging.TestJul2Slf4j +[INFO] Running org.apache.hadoop.hbase.TestTagUtil +[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass3 +[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.099 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass3 +[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass3 Time elapsed: 0.009 s <<< ERROR! +java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass3 + at org.junit.Assert.fail(Assert.java:89) + at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) + at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) + at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) + at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) + at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) + at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) + at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) + at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) + at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) + at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) + at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) + +[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.947 s - in org.apache.hadoop.hbase.TestTagUtil +[INFO] Running org.apache.hadoop.hbase.TestTimeout +[INFO] Running org.apache.hadoop.hbase.TestClassFinder +[WARNING] Tests run: 2, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 1.081 s - in org.apache.hadoop.hbase.TestTimeout +[INFO] Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.113 s - in org.apache.hadoop.hbase.TestClassFinder +[INFO] +[INFO] Results: +[INFO] +[ERROR] Failures: +[ERROR] AbstractHBaseToolTest No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.util.AbstractHBaseToolTest +[ERROR] Errors: +[ERROR] TestHBaseClassTestRule$ExtendedParameterizedClass1 No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass1 +[ERROR] TestHBaseClassTestRule$ExtendedParameterizedClass2 No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass2 +[ERROR] TestHBaseClassTestRule$InValidParameterizedClass No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$InValidParameterizedClass +[ERROR] TestHBaseClassTestRule$ParameterizedClassWithNoParametersMethod No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ParameterizedClassWithNoParametersMethod +[ERROR] TestHBaseClassTestRule$ValidParameterizedClass1 No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass1 +[ERROR] TestHBaseClassTestRule$ValidParameterizedClass2 No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass2 +[ERROR] TestHBaseClassTestRule$ValidParameterizedClass3 No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass3 +[ERROR] TestHBaseClassTestRule$ValidParameterizedClass4 No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass4 +[INFO] +[ERROR] Tests run: 454, Failures: 1, Errors: 8, Skipped: 1 +[INFO] +[INFO] ------------------------------------------------------------------------ +[INFO] Reactor Summary for Apache HBase 3.0.0-alpha-2-SNAPSHOT: +[INFO] +[INFO] Apache HBase ....................................... SUCCESS [ 1.527 s] +[INFO] Apache HBase - Checkstyle .......................... SUCCESS [ 0.542 s] +[INFO] Apache HBase - Annotations ......................... SUCCESS [ 0.663 s] +[INFO] Apache HBase - Build Configuration ................. SUCCESS [ 0.093 s] +[INFO] Apache HBase - Logging ............................. SUCCESS [ 0.391 s] +[INFO] Apache HBase - Shaded Protocol ..................... SUCCESS [ 27.182 s] +[INFO] Apache HBase - Common .............................. FAILURE [02:50 min] +[INFO] Apache HBase - Metrics API ......................... SKIPPED +[INFO] Apache HBase - Metrics Implementation .............. SKIPPED +[INFO] Apache HBase - Hadoop Compatibility ................ SKIPPED +[INFO] Apache HBase - Client .............................. SKIPPED +[INFO] Apache HBase - Zookeeper ........................... SKIPPED +[INFO] Apache HBase - Replication ......................... SKIPPED +[INFO] Apache HBase - Balancer ............................ SKIPPED +[INFO] Apache HBase - Resource Bundle ..................... SKIPPED +[INFO] Apache HBase - HTTP ................................ SKIPPED +[INFO] Apache HBase - Asynchronous FileSystem ............. SKIPPED +[INFO] Apache HBase - Procedure ........................... SKIPPED +[INFO] Apache HBase - Server .............................. SKIPPED +[INFO] Apache HBase - MapReduce ........................... SKIPPED +[INFO] Apache HBase - Testing Util ........................ SKIPPED +[INFO] Apache HBase - Thrift .............................. SKIPPED +[INFO] Apache HBase - Shell ............................... SKIPPED +[INFO] Apache HBase - Coprocessor Endpoint ................ SKIPPED +[INFO] Apache HBase - Backup .............................. SKIPPED +[INFO] Apache HBase - Integration Tests ................... SKIPPED +[INFO] Apache HBase - Rest ................................ SKIPPED +[INFO] Apache HBase - Examples ............................ SKIPPED +[INFO] Apache HBase - Shaded .............................. SKIPPED +[INFO] Apache HBase - Shaded - Client (with Hadoop bundled) SKIPPED +[INFO] Apache HBase - Shaded - Client ..................... SKIPPED +[INFO] Apache HBase - Shaded - MapReduce .................. SKIPPED +[INFO] Apache HBase - External Block Cache ................ SKIPPED +[INFO] Apache HBase - HBTop ............................... SKIPPED +[INFO] Apache HBase - Assembly ............................ SKIPPED +[INFO] Apache HBase - Shaded - Testing Util ............... SKIPPED +[INFO] Apache HBase - Shaded - Testing Util Tester ........ SKIPPED +[INFO] Apache HBase Shaded Packaging Invariants ........... SKIPPED +[INFO] Apache HBase Shaded Packaging Invariants (with Hadoop bundled) SKIPPED +[INFO] Apache HBase - Archetypes .......................... SKIPPED +[INFO] Apache HBase - Exemplar for hbase-client archetype . SKIPPED +[INFO] Apache HBase - Exemplar for hbase-shaded-client archetype SKIPPED +[INFO] Apache HBase - Archetype builder ................... SKIPPED +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD FAILURE +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 03:22 min +[INFO] Finished at: 2021-09-21T13:16:54+02:00 +[INFO] ------------------------------------------------------------------------ +[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M4:test (default-test) on project hbase-common: There are test failures. +[ERROR] +[ERROR] Please refer to /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-common/target/surefire-reports for the individual test results. +[ERROR] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream. +[ERROR] -> [Help 1] +[ERROR] +[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. +[ERROR] Re-run Maven using the -X switch to enable full debug logging. +[ERROR] +[ERROR] For more information about the errors and possible solutions, please read the following articles: +[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException +[ERROR] +[ERROR] After correcting the problems, you can resume the build with the command +[ERROR] mvn -rf :hbase-common From b2bde2d6c2ddc39e54da2fa1c04a3581a9952b81 Mon Sep 17 00:00:00 2001 From: dorahorvath Date: Mon, 27 Sep 2021 08:52:50 +0200 Subject: [PATCH 2/5] revert generated files --- .../hbase/thrift/generated/AlreadyExists.java | 2 +- .../hbase/thrift/generated/BatchMutation.java | 2 +- .../thrift/generated/ColumnDescriptor.java | 2 +- .../hbase/thrift/generated/IOError.java | 2 +- .../thrift/generated/IllegalArgument.java | 2 +- .../hbase/thrift/generated/Mutation.java | 2 +- .../generated/TAccessControlEntity.java | 2 +- .../hbase/thrift/generated/TAppend.java | 2 +- .../hadoop/hbase/thrift/generated/TCell.java | 2 +- .../hbase/thrift/generated/TColumn.java | 2 +- .../hbase/thrift/generated/TIncrement.java | 2 +- .../thrift/generated/TPermissionScope.java | 2 +- .../hbase/thrift/generated/TRegionInfo.java | 2 +- .../hbase/thrift/generated/TRowResult.java | 2 +- .../hadoop/hbase/thrift/generated/TScan.java | 2 +- .../thrift/generated/TThriftServerType.java | 2 +- .../generated/TAccessControlEntity.java | 2 +- .../hbase/thrift2/generated/TAppend.java | 2 +- .../thrift2/generated/TAuthorization.java | 2 +- .../thrift2/generated/TBloomFilterType.java | 2 +- .../thrift2/generated/TCellVisibility.java | 2 +- .../hbase/thrift2/generated/TColumn.java | 2 +- .../generated/TColumnFamilyDescriptor.java | 2 +- .../thrift2/generated/TColumnIncrement.java | 2 +- .../hbase/thrift2/generated/TColumnValue.java | 2 +- .../thrift2/generated/TCompareOperator.java | 2 +- .../generated/TCompressionAlgorithm.java | 2 +- .../hbase/thrift2/generated/TConsistency.java | 2 +- .../thrift2/generated/TDataBlockEncoding.java | 2 +- .../hbase/thrift2/generated/TDelete.java | 2 +- .../hbase/thrift2/generated/TDeleteType.java | 2 +- .../hbase/thrift2/generated/TDurability.java | 2 +- .../thrift2/generated/TFilterByOperator.java | 2 +- .../hadoop/hbase/thrift2/generated/TGet.java | 2 +- .../thrift2/generated/THBaseService.java | 2 +- .../hbase/thrift2/generated/THRegionInfo.java | 2 +- .../thrift2/generated/THRegionLocation.java | 2 +- .../hbase/thrift2/generated/TIOError.java | 2 +- .../thrift2/generated/TIllegalArgument.java | 2 +- .../hbase/thrift2/generated/TIncrement.java | 2 +- .../thrift2/generated/TKeepDeletedCells.java | 2 +- .../thrift2/generated/TLogQueryFilter.java | 2 +- .../hbase/thrift2/generated/TLogType.java | 2 +- .../hbase/thrift2/generated/TMutation.java | 2 +- .../generated/TNamespaceDescriptor.java | 2 +- .../thrift2/generated/TOnlineLogRecord.java | 2 +- .../thrift2/generated/TPermissionScope.java | 2 +- .../hadoop/hbase/thrift2/generated/TPut.java | 2 +- .../hbase/thrift2/generated/TReadType.java | 2 +- .../hbase/thrift2/generated/TResult.java | 2 +- .../thrift2/generated/TRowMutations.java | 2 +- .../hadoop/hbase/thrift2/generated/TScan.java | 2 +- .../hbase/thrift2/generated/TServerName.java | 2 +- .../thrift2/generated/TTableDescriptor.java | 2 +- .../hbase/thrift2/generated/TTableName.java | 2 +- .../thrift2/generated/TThriftServerType.java | 2 +- .../hbase/thrift2/generated/TTimeRange.java | 2 +- test.txt | 965 ------------------ 58 files changed, 57 insertions(+), 1022 deletions(-) delete mode 100644 test.txt diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/AlreadyExists.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/AlreadyExists.java index 0e51f9b115de..612a3ce50083 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/AlreadyExists.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/AlreadyExists.java @@ -11,7 +11,7 @@ * An AlreadyExists exceptions signals that a table with the specified * name already exists */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class AlreadyExists extends org.apache.thrift.TException implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("AlreadyExists"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/BatchMutation.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/BatchMutation.java index 2740f747a9e5..e1ec71d12549 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/BatchMutation.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/BatchMutation.java @@ -10,7 +10,7 @@ /** * A BatchMutation object is used to apply a number of Mutations to a single row. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class BatchMutation implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("BatchMutation"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/ColumnDescriptor.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/ColumnDescriptor.java index 99824164b63f..58cdc9db506c 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/ColumnDescriptor.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/ColumnDescriptor.java @@ -12,7 +12,7 @@ * such as the number of versions, compression settings, etc. It is * used as input when creating a table or adding a column. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class ColumnDescriptor implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("ColumnDescriptor"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IOError.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IOError.java index 9b02127caf9b..f5f6b565c56c 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IOError.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IOError.java @@ -12,7 +12,7 @@ * to the Hbase master or an Hbase region server. Also used to return * more general Hbase error conditions. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class IOError extends org.apache.thrift.TException implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("IOError"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IllegalArgument.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IllegalArgument.java index a627b982af49..a0e2e97827a3 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IllegalArgument.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/IllegalArgument.java @@ -11,7 +11,7 @@ * An IllegalArgument exception indicates an illegal or invalid * argument was passed into a procedure. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class IllegalArgument extends org.apache.thrift.TException implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("IllegalArgument"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Mutation.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Mutation.java index 5df3147a0c1b..7bf919fda33e 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Mutation.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Mutation.java @@ -10,7 +10,7 @@ /** * A Mutation object is used to either update or delete a column-value. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class Mutation implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("Mutation"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAccessControlEntity.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAccessControlEntity.java index 9c8fb43de110..24fcb0586a24 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAccessControlEntity.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAccessControlEntity.java @@ -10,7 +10,7 @@ /** * TAccessControlEntity for permission control */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TAccessControlEntity implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TAccessControlEntity"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAppend.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAppend.java index 3b553362e8b1..3d0333ea30f6 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAppend.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TAppend.java @@ -10,7 +10,7 @@ /** * An Append object is used to specify the parameters for performing the append operation. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TAppend implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TAppend"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TCell.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TCell.java index e28f725de576..fe6ccf21d416 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TCell.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TCell.java @@ -13,7 +13,7 @@ * the timestamp of a cell to a first-class value, making it easy to take * note of temporal data. Cell is used all the way from HStore up to HTable. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TCell implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TCell"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TColumn.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TColumn.java index 6c53daf54bb6..8f486104691b 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TColumn.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TColumn.java @@ -10,7 +10,7 @@ /** * Holds column name and the cell. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TColumn implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumn"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TIncrement.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TIncrement.java index 6b786b930faf..ee1fdd1d0573 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TIncrement.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TIncrement.java @@ -11,7 +11,7 @@ * For increments that are not incrementColumnValue * equivalents. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TIncrement implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TIncrement"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TPermissionScope.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TPermissionScope.java index 6ce960fa614e..dc31e774d4b5 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TPermissionScope.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TPermissionScope.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift.generated; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TPermissionScope implements org.apache.thrift.TEnum { TABLE(0), NAMESPACE(1); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRegionInfo.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRegionInfo.java index a49e3bd22602..fdfb11aa8c87 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRegionInfo.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRegionInfo.java @@ -10,7 +10,7 @@ /** * A TRegionInfo contains information about an HTable region. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TRegionInfo implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TRegionInfo"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRowResult.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRowResult.java index 76d027ee6c77..d3959114e728 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRowResult.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TRowResult.java @@ -10,7 +10,7 @@ /** * Holds row name and then a map of columns to cells. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TRowResult implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TRowResult"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TScan.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TScan.java index 090e7f3bae42..ec486accf3ba 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TScan.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TScan.java @@ -10,7 +10,7 @@ /** * A Scan object is used to specify scanner parameters when opening a scanner. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TScan implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TScan"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TThriftServerType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TThriftServerType.java index 066c6afdbaa0..17bdd3e4e40a 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TThriftServerType.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/TThriftServerType.java @@ -10,7 +10,7 @@ /** * Specify type of thrift server: thrift and thrift2 */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TThriftServerType implements org.apache.thrift.TEnum { ONE(1), TWO(2); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAccessControlEntity.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAccessControlEntity.java index 4ddcfde5b68f..b68d7acd7a3d 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAccessControlEntity.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAccessControlEntity.java @@ -10,7 +10,7 @@ /** * TAccessControlEntity for permission control */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TAccessControlEntity implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TAccessControlEntity"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAppend.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAppend.java index 25e4a76f1917..33ccfd5cc8f8 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAppend.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAppend.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TAppend implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TAppend"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAuthorization.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAuthorization.java index 86afe95a8dcb..7962bfa8c26d 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAuthorization.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TAuthorization.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TAuthorization implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TAuthorization"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TBloomFilterType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TBloomFilterType.java index b93f0fbc393f..35bcfd58f8a3 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TBloomFilterType.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TBloomFilterType.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.regionserver.BloomType */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TBloomFilterType implements org.apache.thrift.TEnum { /** * Bloomfilters disabled diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCellVisibility.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCellVisibility.java index 7ffe2e1c78a5..7a29bd7596ad 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCellVisibility.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCellVisibility.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TCellVisibility implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TCellVisibility"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumn.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumn.java index 6c1da2f8f959..90f7cdec2204 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumn.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumn.java @@ -12,7 +12,7 @@ * in a HBase table by column family and optionally * a column qualifier and timestamp */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TColumn implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumn"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnFamilyDescriptor.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnFamilyDescriptor.java index 0653497bd485..0c48ba68effb 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnFamilyDescriptor.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnFamilyDescriptor.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.client.ColumnFamilyDescriptor */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TColumnFamilyDescriptor implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumnFamilyDescriptor"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnIncrement.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnIncrement.java index 2198cc035d63..2fb514d3a127 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnIncrement.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnIncrement.java @@ -10,7 +10,7 @@ /** * Represents a single cell and the amount to increment it by */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TColumnIncrement implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumnIncrement"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnValue.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnValue.java index 8a090220299e..a30487aac56d 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnValue.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TColumnValue.java @@ -10,7 +10,7 @@ /** * Represents a single cell and its value. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TColumnValue implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumnValue"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompareOperator.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompareOperator.java index 3c408162fc97..6c749d587869 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompareOperator.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompareOperator.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.CompareOperator. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TCompareOperator implements org.apache.thrift.TEnum { LESS(0), LESS_OR_EQUAL(1), diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompressionAlgorithm.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompressionAlgorithm.java index 5e2b43d533c5..e4deb1078832 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompressionAlgorithm.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TCompressionAlgorithm.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.io.compress.Algorithm */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TCompressionAlgorithm implements org.apache.thrift.TEnum { LZO(0), GZ(1), diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TConsistency.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TConsistency.java index e59fbff8e834..17b6d2bc0eba 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TConsistency.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TConsistency.java @@ -12,7 +12,7 @@ * - STRONG means reads only from primary region * - TIMELINE means reads might return values from secondary region replicas */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TConsistency implements org.apache.thrift.TEnum { STRONG(1), TIMELINE(2); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDataBlockEncoding.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDataBlockEncoding.java index 3dd43869d783..c3c7429f024a 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDataBlockEncoding.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDataBlockEncoding.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.io.encoding.DataBlockEncoding */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TDataBlockEncoding implements org.apache.thrift.TEnum { /** * Disable data block encoding. diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDelete.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDelete.java index c2e7b82f4577..bb217d13f96d 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDelete.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDelete.java @@ -33,7 +33,7 @@ * by changing the durability. If you don't provide durability, it defaults to * column family's default setting for durability. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TDelete implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TDelete"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDeleteType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDeleteType.java index 7216fcfba682..3ccf01ea4300 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDeleteType.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDeleteType.java @@ -12,7 +12,7 @@ * - DELETE_COLUMN means exactly one version will be removed, * - DELETE_COLUMNS means previous versions will also be removed. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TDeleteType implements org.apache.thrift.TEnum { DELETE_COLUMN(0), DELETE_COLUMNS(1), diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDurability.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDurability.java index a784ce582b47..638d440c01c9 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDurability.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TDurability.java @@ -14,7 +14,7 @@ * - SYNC_WAL means write the Mutation to the WAL synchronously, * - FSYNC_WAL means Write the Mutation to the WAL synchronously and force the entries to disk. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TDurability implements org.apache.thrift.TEnum { USE_DEFAULT(0), SKIP_WAL(1), diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TFilterByOperator.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TFilterByOperator.java index 9ce4e741f880..61ee2f6de513 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TFilterByOperator.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TFilterByOperator.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TFilterByOperator implements org.apache.thrift.TEnum { AND(0), OR(1); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TGet.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TGet.java index ef0a97cd2c8e..dfecde9ffb22 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TGet.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TGet.java @@ -20,7 +20,7 @@ * If you specify a time range and a timestamp the range is ignored. * Timestamps on TColumns are ignored. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TGet implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TGet"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THBaseService.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THBaseService.java index 9e5dd45c584c..0fde1dbf4753 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THBaseService.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THBaseService.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class THBaseService { public interface Iface { diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionInfo.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionInfo.java index 7e8033904592..b4ad2b9612ce 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionInfo.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionInfo.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class THRegionInfo implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("THRegionInfo"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionLocation.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionLocation.java index 317446a7a83f..8c9f2ba14d22 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionLocation.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/THRegionLocation.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class THRegionLocation implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("THRegionLocation"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIOError.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIOError.java index ab320fbeab63..86f8077cda47 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIOError.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIOError.java @@ -12,7 +12,7 @@ * to the HBase master or a HBase region server. Also used to return * more general HBase error conditions. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TIOError extends org.apache.thrift.TException implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TIOError"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIllegalArgument.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIllegalArgument.java index 825a024cf63d..9b634c54f10c 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIllegalArgument.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIllegalArgument.java @@ -11,7 +11,7 @@ * A TIllegalArgument exception indicates an illegal or invalid * argument was passed into a procedure. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TIllegalArgument extends org.apache.thrift.TException implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TIllegalArgument"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIncrement.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIncrement.java index 9d790adddb27..746f2199eedd 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIncrement.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TIncrement.java @@ -14,7 +14,7 @@ * by changing the durability. If you don't provide durability, it defaults to * column family's default setting for durability. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TIncrement implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TIncrement"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TKeepDeletedCells.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TKeepDeletedCells.java index 54c30193514b..dd723fd73242 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TKeepDeletedCells.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TKeepDeletedCells.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.KeepDeletedCells */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TKeepDeletedCells implements org.apache.thrift.TEnum { /** * Deleted Cells are not retained. diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogQueryFilter.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogQueryFilter.java index e6ee4467110b..49f7d5a4cd70 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogQueryFilter.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogQueryFilter.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.client.LogQueryFilter */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TLogQueryFilter implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TLogQueryFilter"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogType.java index 25bd0076ef0c..a353374d1004 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogType.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TLogType.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TLogType implements org.apache.thrift.TEnum { SLOW_LOG(1), LARGE_LOG(2); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TMutation.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TMutation.java index 99c78d8b8f29..6039ac39c02c 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TMutation.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TMutation.java @@ -10,7 +10,7 @@ /** * Atomic mutation for the specified row. It can be either Put or Delete. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TMutation extends org.apache.thrift.TUnion { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TMutation"); private static final org.apache.thrift.protocol.TField PUT_FIELD_DESC = new org.apache.thrift.protocol.TField("put", org.apache.thrift.protocol.TType.STRUCT, (short)1); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TNamespaceDescriptor.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TNamespaceDescriptor.java index 5cba9b69eb66..ad79d1f7117f 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TNamespaceDescriptor.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TNamespaceDescriptor.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.NamespaceDescriptor */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TNamespaceDescriptor implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TNamespaceDescriptor"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TOnlineLogRecord.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TOnlineLogRecord.java index 4f51e851e32a..4dcfb7561174 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TOnlineLogRecord.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TOnlineLogRecord.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.client.OnlineLogRecordrd */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TOnlineLogRecord implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TOnlineLogRecord"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPermissionScope.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPermissionScope.java index 27625d98b6ab..7ca83ced9d51 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPermissionScope.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPermissionScope.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TPermissionScope implements org.apache.thrift.TEnum { TABLE(0), NAMESPACE(1); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPut.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPut.java index 8c7ccdabb689..b458182fdc4c 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPut.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TPut.java @@ -19,7 +19,7 @@ * by changing the durability. If you don't provide durability, it defaults to * column family's default setting for durability. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TPut implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TPut"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TReadType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TReadType.java index d7b63a1e34c7..8af01cd1ed4c 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TReadType.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TReadType.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TReadType implements org.apache.thrift.TEnum { DEFAULT(1), STREAM(2), diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TResult.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TResult.java index db7df1820149..757856e3e649 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TResult.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TResult.java @@ -10,7 +10,7 @@ /** * if no Result is found, row and columnValues will not be set. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TResult implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TResult"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TRowMutations.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TRowMutations.java index f61a58aeacf8..6accf9d569ae 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TRowMutations.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TRowMutations.java @@ -10,7 +10,7 @@ /** * A TRowMutations object is used to apply a number of Mutations to a single row. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TRowMutations implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TRowMutations"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TScan.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TScan.java index 3d3ff02d437f..6cfae7ed49e7 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TScan.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TScan.java @@ -11,7 +11,7 @@ * Any timestamps in the columns are ignored but the colFamTimeRangeMap included, use timeRange to select by timestamp. * Max versions defaults to 1. */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TScan implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TScan"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TServerName.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TServerName.java index 87b7f09535ee..ec426e3296d3 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TServerName.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TServerName.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TServerName implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TServerName"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableDescriptor.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableDescriptor.java index 532febf53303..7a3079a1a4c3 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableDescriptor.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableDescriptor.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.client.TableDescriptor */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TTableDescriptor implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TTableDescriptor"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableName.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableName.java index a8adcbaafda0..80ae046e2ad3 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableName.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTableName.java @@ -11,7 +11,7 @@ * Thrift wrapper around * org.apache.hadoop.hbase.TableName */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TTableName implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TTableName"); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TThriftServerType.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TThriftServerType.java index b983746e66c1..722b0f582396 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TThriftServerType.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TThriftServerType.java @@ -10,7 +10,7 @@ /** * Specify type of thrift server: thrift and thrift2 */ -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public enum TThriftServerType implements org.apache.thrift.TEnum { ONE(1), TWO(2); diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTimeRange.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTimeRange.java index ae977c8fdb5e..fefa7cbf3e93 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTimeRange.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TTimeRange.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift2.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class TTimeRange implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TTimeRange"); diff --git a/test.txt b/test.txt deleted file mode 100644 index 58fb49f27daa..000000000000 --- a/test.txt +++ /dev/null @@ -1,965 +0,0 @@ -[INFO] Scanning for projects... -[INFO] ------------------------------------------------------------------------ -[INFO] Detecting the operating system and CPU architecture -[INFO] ------------------------------------------------------------------------ -[INFO] os.detected.name: osx -[INFO] os.detected.arch: x86_64 -[INFO] os.detected.version: 10.16 -[INFO] os.detected.version.major: 10 -[INFO] os.detected.version.minor: 16 -[INFO] os.detected.classifier: osx-x86_64 -[INFO] ------------------------------------------------------------------------ -[INFO] Reactor Build Order: -[INFO] -[INFO] Apache HBase [pom] -[INFO] Apache HBase - Checkstyle [jar] -[INFO] Apache HBase - Annotations [jar] -[INFO] Apache HBase - Build Configuration [pom] -[INFO] Apache HBase - Logging [jar] -[INFO] Apache HBase - Shaded Protocol [jar] -[INFO] Apache HBase - Common [jar] -[INFO] Apache HBase - Metrics API [jar] -[INFO] Apache HBase - Metrics Implementation [jar] -[INFO] Apache HBase - Hadoop Compatibility [jar] -[INFO] Apache HBase - Client [jar] -[INFO] Apache HBase - Zookeeper [jar] -[INFO] Apache HBase - Replication [jar] -[INFO] Apache HBase - Balancer [jar] -[INFO] Apache HBase - Resource Bundle [jar] -[INFO] Apache HBase - HTTP [jar] -[INFO] Apache HBase - Asynchronous FileSystem [jar] -[INFO] Apache HBase - Procedure [jar] -[INFO] Apache HBase - Server [jar] -[INFO] Apache HBase - MapReduce [jar] -[INFO] Apache HBase - Testing Util [jar] -[INFO] Apache HBase - Thrift [jar] -[INFO] Apache HBase - Shell [jar] -[INFO] Apache HBase - Coprocessor Endpoint [jar] -[INFO] Apache HBase - Backup [jar] -[INFO] Apache HBase - Integration Tests [jar] -[INFO] Apache HBase - Rest [jar] -[INFO] Apache HBase - Examples [jar] -[INFO] Apache HBase - Shaded [pom] -[INFO] Apache HBase - Shaded - Client (with Hadoop bundled) [jar] -[INFO] Apache HBase - Shaded - Client [jar] -[INFO] Apache HBase - Shaded - MapReduce [jar] -[INFO] Apache HBase - External Block Cache [jar] -[INFO] Apache HBase - HBTop [jar] -[INFO] Apache HBase - Assembly [pom] -[INFO] Apache HBase - Shaded - Testing Util [jar] -[INFO] Apache HBase - Shaded - Testing Util Tester [jar] -[INFO] Apache HBase Shaded Packaging Invariants [pom] -[INFO] Apache HBase Shaded Packaging Invariants (with Hadoop bundled) [pom] -[INFO] Apache HBase - Archetypes [pom] -[INFO] Apache HBase - Exemplar for hbase-client archetype [jar] -[INFO] Apache HBase - Exemplar for hbase-shaded-client archetype [jar] -[INFO] Apache HBase - Archetype builder [pom] -[INFO] -[INFO] -----------------------< org.apache.hbase:hbase >----------------------- -[INFO] Building Apache HBase 3.0.0-alpha-2-SNAPSHOT [1/43] -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase --- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase --- -[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase --- -[INFO] -[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:display-info (display-info) @ hbase --- -[INFO] Maven Version: 3.8.1 -[INFO] JDK Version: 1.8.0_292 normalized as: 1.8.0-292 -[INFO] OS Info: Arch: x86_64 Family: mac Name: mac os x Version: 10.16 -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase --- -[INFO] -[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase --- -[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 -[INFO] Copying 3 resources from 1 bundle. -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase --- -[INFO] Skipping Rule Enforcement. -[INFO] -[INFO] -----------------< org.apache.hbase:hbase-checkstyle >------------------ -[INFO] Building Apache HBase - Checkstyle 3.0.0-alpha-2-SNAPSHOT [2/43] -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase-checkstyle --- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase-checkstyle --- -[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-checkstyle/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-checkstyle/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase-checkstyle --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase-checkstyle --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase-checkstyle --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase-checkstyle --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase-checkstyle --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase-checkstyle --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase-checkstyle --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase-checkstyle --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase-checkstyle --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase-checkstyle --- -[INFO] -[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase-checkstyle --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase-checkstyle --- -[INFO] -[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase-checkstyle --- -[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 -[INFO] Copying 3 resources from 1 bundle. -[INFO] -[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ hbase-checkstyle --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] Copying 2 resources -[INFO] Copying 3 resources -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase-checkstyle --- -[INFO] Skipping Rule Enforcement. -[INFO] -[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ hbase-checkstyle --- -[INFO] No sources to compile -[INFO] -[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ hbase-checkstyle --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] skip non existing resourceDirectory /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-checkstyle/src/test/resources -[INFO] Copying 3 resources -[INFO] -[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ hbase-checkstyle --- -[INFO] No sources to compile -[INFO] -[INFO] --- maven-surefire-plugin:3.0.0-M4:test (default-test) @ hbase-checkstyle --- -[INFO] -[INFO] --- maven-surefire-plugin:3.0.0-M4:test (secondPartTestsExecution) @ hbase-checkstyle --- -[INFO] Tests are skipped. -[INFO] -[INFO] -----------------< org.apache.hbase:hbase-annotations >----------------- -[INFO] Building Apache HBase - Annotations 3.0.0-alpha-2-SNAPSHOT [3/43] -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase-annotations --- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase-annotations --- -[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-annotations/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-annotations/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase-annotations --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase-annotations --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase-annotations --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase-annotations --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase-annotations --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase-annotations --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase-annotations --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase-annotations --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase-annotations --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase-annotations --- -[INFO] -[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase-annotations --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase-annotations --- -[INFO] -[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase-annotations --- -[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 -[INFO] Copying 3 resources from 1 bundle. -[INFO] -[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ hbase-annotations --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] skip non existing resourceDirectory /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-annotations/src/main/resources -[INFO] Copying 3 resources -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase-annotations --- -[INFO] Skipping Rule Enforcement. -[INFO] -[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ hbase-annotations --- -[INFO] No sources to compile -[INFO] -[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ hbase-annotations --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] skip non existing resourceDirectory /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-annotations/src/test/resources -[INFO] Copying 3 resources -[INFO] -[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ hbase-annotations --- -[INFO] Nothing to compile - all classes are up to date -[INFO] -[INFO] --- warbucks-maven-plugin:1.1.0:check (run-warbucks) @ hbase-annotations --- -[INFO] Rule 0: Class Matches: 0 -[INFO] Rule 0: Class Failures: 0 -[INFO] Total class failures: 0 -[INFO] -[INFO] --- maven-surefire-plugin:3.0.0-M4:test (default-test) @ hbase-annotations --- -[INFO] -[INFO] ------------------------------------------------------- -[INFO] T E S T S -[INFO] ------------------------------------------------------- -[INFO] -[INFO] Results: -[INFO] -[INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 -[INFO] -[INFO] -[INFO] --- maven-surefire-plugin:3.0.0-M4:test (secondPartTestsExecution) @ hbase-annotations --- -[INFO] Tests are skipped. -[INFO] -[INFO] -------------< org.apache.hbase:hbase-build-configuration >------------- -[INFO] Building Apache HBase - Build Configuration 3.0.0-alpha-2-SNAPSHOT [4/43] -[INFO] --------------------------------[ pom ]--------------------------------- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase-build-configuration --- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase-build-configuration --- -[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-build-configuration/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-build-configuration/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase-build-configuration --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase-build-configuration --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase-build-configuration --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase-build-configuration --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase-build-configuration --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase-build-configuration --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase-build-configuration --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase-build-configuration --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase-build-configuration --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase-build-configuration --- -[INFO] -[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase-build-configuration --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase-build-configuration --- -[INFO] -[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase-build-configuration --- -[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 -[INFO] Copying 3 resources from 1 bundle. -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase-build-configuration --- -[INFO] Skipping Rule Enforcement. -[INFO] -[INFO] -------------------< org.apache.hbase:hbase-logging >------------------- -[INFO] Building Apache HBase - Logging 3.0.0-alpha-2-SNAPSHOT [5/43] -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase-logging --- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase-logging --- -[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-logging/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-logging/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase-logging --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase-logging --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase-logging --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase-logging --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase-logging --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase-logging --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase-logging --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase-logging --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase-logging --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase-logging --- -[INFO] -[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase-logging --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase-logging --- -[INFO] -[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase-logging --- -[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 -[INFO] Copying 3 resources from 1 bundle. -[INFO] -[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ hbase-logging --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] skip non existing resourceDirectory /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-logging/src/main/resources -[INFO] Copying 3 resources -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase-logging --- -[INFO] Skipping Rule Enforcement. -[INFO] -[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ hbase-logging --- -[INFO] Nothing to compile - all classes are up to date -[INFO] -[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ hbase-logging --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] Copying 1 resource -[INFO] Copying 3 resources -[INFO] -[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ hbase-logging --- -[INFO] Nothing to compile - all classes are up to date -[INFO] -[INFO] --- warbucks-maven-plugin:1.1.0:check (run-warbucks) @ hbase-logging --- -[INFO] Rule 0: Class Matches: 2 -[INFO] Rule 0: Class Failures: 0 -[INFO] Total class failures: 0 -[INFO] -[INFO] --- maven-surefire-plugin:3.0.0-M4:test (default-test) @ hbase-logging --- -[INFO] -[INFO] --- maven-surefire-plugin:3.0.0-M4:test (secondPartTestsExecution) @ hbase-logging --- -[INFO] Tests are skipped. -[INFO] -[INFO] ---------------< org.apache.hbase:hbase-protocol-shaded >--------------- -[INFO] Building Apache HBase - Shaded Protocol 3.0.0-alpha-2-SNAPSHOT [6/43] -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase-protocol-shaded --- -[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- protobuf-maven-plugin:0.6.1:compile (compile-protoc) @ hbase-protocol-shaded --- -[INFO] Skipping compilation because target directory newer than sources. -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- replacer:1.5.3:replace (default) @ hbase-protocol-shaded --- -[INFO] Replacement run on 62 files. -[INFO] -[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase-protocol-shaded --- -[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 -[INFO] Copying 3 resources from 1 bundle. -[INFO] -[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ hbase-protocol-shaded --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] skip non existing resourceDirectory /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/src/main/resources -[INFO] Copying 62 resources -[INFO] Copying 3 resources -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase-protocol-shaded --- -[INFO] Skipping Rule Enforcement. -[INFO] -[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ hbase-protocol-shaded --- -[INFO] Compiling 62 source files to /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/target/classes -[INFO] /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/LockServiceProtos.java: Some input files use or override a deprecated API. -[INFO] /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/target/generated-sources/protobuf/java/org/apache/hadoop/hbase/shaded/protobuf/generated/LockServiceProtos.java: Recompile with -Xlint:deprecation for details. -[INFO] -[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ hbase-protocol-shaded --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] skip non existing resourceDirectory /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-protocol-shaded/src/test/resources -[INFO] Copying 3 resources -[INFO] -[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ hbase-protocol-shaded --- -[INFO] No sources to compile -[INFO] -[INFO] --- warbucks-maven-plugin:1.1.0:check (run-warbucks) @ hbase-protocol-shaded --- -[INFO] Rule 0: Class Matches: 1 -[INFO] Rule 0: Class Failures: 0 -[INFO] Total class failures: 0 -[INFO] -[INFO] --- maven-surefire-plugin:3.0.0-M4:test (default-test) @ hbase-protocol-shaded --- -[INFO] -[INFO] --- maven-surefire-plugin:3.0.0-M4:test (secondPartTestsExecution) @ hbase-protocol-shaded --- -[INFO] Tests are skipped. -[INFO] -[INFO] -------------------< org.apache.hbase:hbase-common >-------------------- -[INFO] Building Apache HBase - Common 3.0.0-alpha-2-SNAPSHOT [7/43] -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:bsh-property (negate-license-bundles-property) @ hbase-common --- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:regex-property (create-license-file-path-property) @ hbase-common --- -[INFO] No match to regex '\\' found in '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-common/target/maven-shared-archive-resources/META-INF/LICENSE'. The initial value '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-common/target/maven-shared-archive-resources/META-INF/LICENSE' is left as-is... -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (enforce-maven-version) @ hbase-common --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (hadoop-profile-min-maven-min-java-banned-xerces) @ hbase-common --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jsr305) @ hbase-common --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-scala) @ hbase-common --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-commons-logging) @ hbase-common --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-log4j) @ hbase-common --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-slf4j-log4j12) @ hbase-common --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jetty) @ hbase-common --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-jersey) @ hbase-common --- -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-htrace) @ hbase-common --- -[INFO] -[INFO] --- buildnumber-maven-plugin:1.4:create-timestamp (default) @ hbase-common --- -[INFO] -[INFO] --- build-helper-maven-plugin:3.0.0:add-source (versionInfo-source) @ hbase-common --- -[INFO] Source directory: /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-common/target/generated-sources/java added. -[INFO] -[INFO] --- maven-antrun-plugin:1.8:run (generate-Version-information) @ hbase-common --- -[INFO] Executing tasks - -main: - [exec] ~/Projects/apache-hbase/hbase/hbase-common ~/Projects/apache-hbase/hbase/hbase-common - [exec] ~/Projects/apache-hbase/hbase/hbase-common -[INFO] Executed tasks -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (banned-illegal-imports) @ hbase-common --- -[INFO] -[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ hbase-common --- -[INFO] Preparing remote bundle org.apache:apache-jar-resource-bundle:1.4 -[INFO] Copying 3 resources from 1 bundle. -[INFO] -[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ hbase-common --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] Copying 1 resource -[INFO] Copying 3 resources -[INFO] -[INFO] --- maven-enforcer-plugin:3.0.0-M3:enforce (check-aggregate-license) @ hbase-common --- -[INFO] Skipping Rule Enforcement. -[INFO] -[INFO] --- maven-antrun-plugin:1.8:run (default) @ hbase-common --- -[INFO] Executing tasks - -main: -[INFO] Executed tasks -[INFO] -[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ hbase-common --- -[INFO] Compiling 2 source files to /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-common/target/classes -[INFO] -[INFO] --- maven-dependency-plugin:3.1.1:build-classpath (create-mrapp-generated-classpath) @ hbase-common --- -[INFO] Wrote classpath file '/Users/dorahorvath/Projects/apache-hbase/hbase/hbase-common/target/test-classes/mrapp-generated-classpath'. -[INFO] -[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ hbase-common --- -[INFO] Using 'UTF-8' encoding to copy filtered resources. -[INFO] Copying 1 resource to META-INF/ -[INFO] Copying 4 resources -[INFO] Copying 3 resources -[INFO] -[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ hbase-common --- -[INFO] Nothing to compile - all classes are up to date -[INFO] -[INFO] --- warbucks-maven-plugin:1.1.0:check (run-warbucks) @ hbase-common --- -[INFO] Rule 0: Class Matches: 264 -[INFO] Rule 0: Class Failures: 0 -[INFO] Total class failures: 0 -[INFO] -[INFO] --- maven-surefire-plugin:3.0.0-M4:test (default-test) @ hbase-common --- -[INFO] -[INFO] ------------------------------------------------------- -[INFO] T E S T S -[INFO] ------------------------------------------------------- -[INFO] Running org.apache.hadoop.hbase.TestTagBuilder -[INFO] Running org.apache.hadoop.hbase.TestCellComparator -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.318 s - in org.apache.hadoop.hbase.TestTagBuilder -[INFO] Running org.apache.hadoop.hbase.TestByteBufferKeyValue -[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.058 s - in org.apache.hadoop.hbase.TestCellComparator -[INFO] Running org.apache.hadoop.hbase.types.TestUnion2 -[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.624 s - in org.apache.hadoop.hbase.TestByteBufferKeyValue -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.264 s - in org.apache.hadoop.hbase.types.TestUnion2 -[INFO] Running org.apache.hadoop.hbase.types.TestOrderedString -[INFO] Running org.apache.hadoop.hbase.types.TestOrderedFloat32 -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.312 s - in org.apache.hadoop.hbase.types.TestOrderedString -[INFO] Running org.apache.hadoop.hbase.types.TestOrderedBlob -[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.879 s - in org.apache.hadoop.hbase.types.TestOrderedFloat32 -[INFO] Running org.apache.hadoop.hbase.types.TestStructNullExtension -[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.56 s - in org.apache.hadoop.hbase.types.TestOrderedBlob -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.166 s - in org.apache.hadoop.hbase.types.TestStructNullExtension -[INFO] Running org.apache.hadoop.hbase.types.TestFixedLengthWrapper -[INFO] Running org.apache.hadoop.hbase.types.TestOrderedBlobVar -[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.639 s - in org.apache.hadoop.hbase.types.TestFixedLengthWrapper -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.29 s - in org.apache.hadoop.hbase.types.TestOrderedBlobVar -[INFO] Running org.apache.hadoop.hbase.types.TestOrderedInt16 -[INFO] Running org.apache.hadoop.hbase.types.TestOrderedInt32 -[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.773 s - in org.apache.hadoop.hbase.types.TestOrderedInt16 -[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.609 s - in org.apache.hadoop.hbase.types.TestOrderedInt32 -[INFO] Running org.apache.hadoop.hbase.types.TestTerminatedWrapper -[INFO] Running org.apache.hadoop.hbase.types.TestOrderedNumeric -[INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.06 s - in org.apache.hadoop.hbase.types.TestTerminatedWrapper -[INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.848 s - in org.apache.hadoop.hbase.types.TestOrderedNumeric -[INFO] Running org.apache.hadoop.hbase.types.TestStruct -[INFO] Running org.apache.hadoop.hbase.types.TestOrderedInt64 -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.183 s - in org.apache.hadoop.hbase.types.TestStruct -[INFO] Running org.apache.hadoop.hbase.types.TestCopyOnWriteMaps -[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.6 s - in org.apache.hadoop.hbase.types.TestOrderedInt64 -[INFO] Running org.apache.hadoop.hbase.types.TestRawBytes -[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.522 s - in org.apache.hadoop.hbase.types.TestRawBytes -[INFO] Running org.apache.hadoop.hbase.types.TestRawString -[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.496 s - in org.apache.hadoop.hbase.types.TestRawString -[INFO] Running org.apache.hadoop.hbase.types.TestOrderedInt8 -[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.476 s - in org.apache.hadoop.hbase.types.TestOrderedInt8 -[INFO] Running org.apache.hadoop.hbase.types.TestOrderedFloat64 -[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.561 s - in org.apache.hadoop.hbase.types.TestOrderedFloat64 -[INFO] Running org.apache.hadoop.hbase.net.TestAddress -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.918 s - in org.apache.hadoop.hbase.net.TestAddress -[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass1 -[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.122 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass1 -[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass1 Time elapsed: 0.015 s <<< ERROR! -java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass1 - at org.junit.Assert.fail(Assert.java:89) - at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) - at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) - at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) - at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) - at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) - at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) - at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) - at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) - at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) - at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) - at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) - -[INFO] Running org.apache.hadoop.hbase.util.TestSimplePositionedMutableByteRange -[INFO] Tests run: 22, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 12.63 s - in org.apache.hadoop.hbase.types.TestCopyOnWriteMaps -[INFO] Running org.apache.hadoop.hbase.util.TestThreads -[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.218 s - in org.apache.hadoop.hbase.util.TestSimplePositionedMutableByteRange -[INFO] Running org.apache.hadoop.hbase.util.TestAvlUtil -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.877 s - in org.apache.hadoop.hbase.util.TestThreads -[INFO] Running org.apache.hadoop.hbase.util.TestByteBufferArray -[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.58 s - in org.apache.hadoop.hbase.util.TestAvlUtil -[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.131 s - in org.apache.hadoop.hbase.util.TestByteBufferArray -[INFO] Running org.apache.hadoop.hbase.util.TestLoadTestKVGenerator -[INFO] Running org.apache.hadoop.hbase.util.TestByteRangeWithKVSerialization -[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.504 s - in org.apache.hadoop.hbase.util.TestLoadTestKVGenerator -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.529 s - in org.apache.hadoop.hbase.util.TestByteRangeWithKVSerialization -[INFO] Running org.apache.hadoop.hbase.util.TestEnvironmentEdgeManager -[INFO] Running org.apache.hadoop.hbase.util.TestMovingAverage -[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.312 s - in org.apache.hadoop.hbase.util.TestMovingAverage -[INFO] Running org.apache.hadoop.hbase.util.TestOrder -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.08 s - in org.apache.hadoop.hbase.util.TestEnvironmentEdgeManager -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.002 s - in org.apache.hadoop.hbase.util.TestOrder -[INFO] Running org.apache.hadoop.hbase.util.TestSimpleMutableByteRange -[INFO] Running org.apache.hadoop.hbase.util.TestVersionInfo -[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.293 s - in org.apache.hadoop.hbase.util.TestSimpleMutableByteRange -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.927 s - in org.apache.hadoop.hbase.util.TestVersionInfo -[INFO] Running org.apache.hadoop.hbase.util.TestSimpleKdcServerUtil -[INFO] Running org.apache.hadoop.hbase.util.AbstractHBaseToolTest -[ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.109 s <<< FAILURE! - in org.apache.hadoop.hbase.util.AbstractHBaseToolTest -[ERROR] org.apache.hadoop.hbase.util.AbstractHBaseToolTest Time elapsed: 0.014 s <<< FAILURE! -java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.util.AbstractHBaseToolTest - at org.junit.Assert.fail(Assert.java:89) - at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) - at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) - at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) - at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) - at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) - at org.junit.internal.runners.model.EachTestNotifier.fireTestStarted(EachTestNotifier.java:42) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:364) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) - at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) - at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) - at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) - -[INFO] Running org.apache.hadoop.hbase.util.TestRetryCounter -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.754 s - in org.apache.hadoop.hbase.util.TestSimpleKdcServerUtil -[INFO] Running org.apache.hadoop.hbase.util.TestCommonFSUtils -[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.332 s - in org.apache.hadoop.hbase.util.TestCommonFSUtils -[INFO] Running org.apache.hadoop.hbase.util.TestByteRangeUtils -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.253 s - in org.apache.hadoop.hbase.util.TestRetryCounter -[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.064 s - in org.apache.hadoop.hbase.util.TestByteRangeUtils -[INFO] Running org.apache.hadoop.hbase.util.TestKeyLocker -[INFO] Running org.apache.hadoop.hbase.util.TestClasses -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.001 s - in org.apache.hadoop.hbase.util.TestKeyLocker -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.121 s - in org.apache.hadoop.hbase.util.TestClasses -[INFO] Running org.apache.hadoop.hbase.util.TestCoprocessorClassLoader -[INFO] Running org.apache.hadoop.hbase.util.TestWeakObjectPool -[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.377 s - in org.apache.hadoop.hbase.util.TestWeakObjectPool -[INFO] Running org.apache.hadoop.hbase.util.TestOrderedBytes -[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.313 s - in org.apache.hadoop.hbase.util.TestCoprocessorClassLoader -[INFO] Running org.apache.hadoop.hbase.util.TestGsonUtil -[INFO] Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.307 s - in org.apache.hadoop.hbase.util.TestOrderedBytes -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.948 s - in org.apache.hadoop.hbase.util.TestGsonUtil -[INFO] Running org.apache.hadoop.hbase.util.TestBytes -[INFO] Running org.apache.hadoop.hbase.util.TestByteBufferUtils -[INFO] Tests run: 33, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.938 s - in org.apache.hadoop.hbase.util.TestBytes -[INFO] Running org.apache.hadoop.hbase.util.TestShowProperties -[INFO] Tests run: 38, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.76 s - in org.apache.hadoop.hbase.util.TestByteBufferUtils -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.869 s - in org.apache.hadoop.hbase.util.TestShowProperties -[INFO] Running org.apache.hadoop.hbase.util.TestFutureUtils -[INFO] Running org.apache.hadoop.hbase.util.TestConcatenatedLists -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.007 s - in org.apache.hadoop.hbase.util.TestFutureUtils -[INFO] Running org.apache.hadoop.hbase.util.TestDynamicClassLoader -[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.709 s - in org.apache.hadoop.hbase.util.TestConcatenatedLists -[INFO] Running org.apache.hadoop.hbase.util.TestStrings -[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.189 s - in org.apache.hadoop.hbase.util.TestStrings -[INFO] Running org.apache.hadoop.hbase.util.TestJRubyFormat -[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.34 s - in org.apache.hadoop.hbase.util.TestDynamicClassLoader -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.256 s - in org.apache.hadoop.hbase.util.TestJRubyFormat -[INFO] Running org.apache.hadoop.hbase.codec.TestCellCodec -[INFO] Running org.apache.hadoop.hbase.codec.TestKeyValueCodec -[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.507 s - in org.apache.hadoop.hbase.codec.TestCellCodec -[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.371 s - in org.apache.hadoop.hbase.codec.TestKeyValueCodec -[INFO] Running org.apache.hadoop.hbase.codec.TestKeyValueCodecWithTags -[INFO] Running org.apache.hadoop.hbase.codec.TestCellCodecWithTags -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.083 s - in org.apache.hadoop.hbase.codec.TestKeyValueCodecWithTags -[INFO] Running org.apache.hadoop.hbase.TestTableName -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.086 s - in org.apache.hadoop.hbase.codec.TestCellCodecWithTags -[INFO] Running org.apache.hadoop.hbase.TestIndividualBytesFieldCell -[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.731 s - in org.apache.hadoop.hbase.TestTableName -[INFO] Running org.apache.hadoop.hbase.io.TestTagCompressionContext -[INFO] Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.568 s - in org.apache.hadoop.hbase.TestIndividualBytesFieldCell -[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.629 s - in org.apache.hadoop.hbase.io.TestTagCompressionContext -[INFO] Running org.apache.hadoop.hbase.io.crypto.TestKeyStoreKeyProvider -[INFO] Running org.apache.hadoop.hbase.io.crypto.TestCipherProvider -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.375 s - in org.apache.hadoop.hbase.io.crypto.TestCipherProvider -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.185 s - in org.apache.hadoop.hbase.io.crypto.TestKeyStoreKeyProvider -[INFO] Running org.apache.hadoop.hbase.io.crypto.TestKeyProvider -[INFO] Running org.apache.hadoop.hbase.io.crypto.TestEncryption -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.353 s - in org.apache.hadoop.hbase.io.crypto.TestKeyProvider -[INFO] Running org.apache.hadoop.hbase.io.crypto.aes.TestCommonsAES -[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.142 s - in org.apache.hadoop.hbase.io.crypto.TestEncryption -[INFO] Running org.apache.hadoop.hbase.io.crypto.aes.TestAES -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.49 s - in org.apache.hadoop.hbase.io.crypto.aes.TestCommonsAES -[INFO] Running org.apache.hadoop.hbase.io.util.TestLRUDictionary -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.525 s - in org.apache.hadoop.hbase.io.crypto.aes.TestAES -[INFO] Running org.apache.hadoop.hbase.io.TestMultiByteBuffInputStream -[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.724 s - in org.apache.hadoop.hbase.io.util.TestLRUDictionary -[INFO] Running org.apache.hadoop.hbase.io.encoding.TestEncodedDataBlock -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.313 s - in org.apache.hadoop.hbase.io.TestMultiByteBuffInputStream -[INFO] Running org.apache.hadoop.hbase.io.hadoopbackport.TestThrottledInputStream -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.866 s - in org.apache.hadoop.hbase.io.hadoopbackport.TestThrottledInputStream -[INFO] Running org.apache.hadoop.hbase.io.TestByteBufferListOutputStream -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.274 s - in org.apache.hadoop.hbase.io.encoding.TestEncodedDataBlock -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.143 s - in org.apache.hadoop.hbase.io.TestByteBufferListOutputStream -[INFO] Running org.apache.hadoop.hbase.io.TestByteBuffAllocator -[INFO] Running org.apache.hadoop.hbase.TestServerName -[INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.168 s - in org.apache.hadoop.hbase.TestServerName -[INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.603 s - in org.apache.hadoop.hbase.io.TestByteBuffAllocator -[INFO] Running org.apache.hadoop.hbase.TestChoreService -[INFO] Running org.apache.hadoop.hbase.TestHDFSBlocksDistribution -[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 31.232 s - in org.apache.hadoop.hbase.TestHDFSBlocksDistribution -[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass2 -[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.086 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass2 -[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass2 Time elapsed: 0.011 s <<< ERROR! -java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass2 - at org.junit.Assert.fail(Assert.java:89) - at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) - at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) - at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) - at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) - at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) - at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) - at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) - at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) - at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) - at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) - at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) - -[INFO] Running org.apache.hadoop.hbase.TestCellUtil -[INFO] Tests run: 19, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 35.639 s - in org.apache.hadoop.hbase.TestChoreService -[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$InValidParameterizedClass -[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.077 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$InValidParameterizedClass -[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$InValidParameterizedClass Time elapsed: 0.009 s <<< ERROR! -java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$InValidParameterizedClass - at org.junit.Assert.fail(Assert.java:89) - at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) - at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) - at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) - at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) - at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) - at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) - at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) - at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) - at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) - at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) - at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) - -[INFO] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.744 s - in org.apache.hadoop.hbase.TestCellUtil -[INFO] Running org.apache.hadoop.hbase.zookeeper.TestZKConfig -[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass4 -[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.11 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass4 -[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass4 Time elapsed: 0.01 s <<< ERROR! -java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass4 - at org.junit.Assert.fail(Assert.java:89) - at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) - at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) - at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) - at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) - at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) - at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) - at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) - at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) - at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) - at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) - at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) - -[INFO] Running org.apache.hadoop.hbase.TestSystemExitInTest -[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.884 s - in org.apache.hadoop.hbase.zookeeper.TestZKConfig -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.845 s - in org.apache.hadoop.hbase.TestSystemExitInTest -[INFO] Running org.apache.hadoop.hbase.TestHBaseConfiguration -[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass2 -[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.118 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass2 -[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass2 Time elapsed: 0.012 s <<< ERROR! -java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass2 - at org.junit.Assert.fail(Assert.java:89) - at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) - at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) - at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) - at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) - at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) - at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) - at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) - at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) - at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) - at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) - at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) - -[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ParameterizedClassWithNoParametersMethod -[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.081 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ParameterizedClassWithNoParametersMethod -[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ParameterizedClassWithNoParametersMethod Time elapsed: 0.011 s <<< ERROR! -java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ParameterizedClassWithNoParametersMethod - at org.junit.Assert.fail(Assert.java:89) - at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) - at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) - at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) - at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) - at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) - at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) - at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) - at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) - at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) - at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) - at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) - -[INFO] Running org.apache.hadoop.hbase.nio.TestSingleByteBuff -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.296 s - in org.apache.hadoop.hbase.nio.TestSingleByteBuff -[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.469 s - in org.apache.hadoop.hbase.TestHBaseConfiguration -[INFO] Running org.apache.hadoop.hbase.nio.TestMultiByteBuff -[INFO] Running org.apache.hadoop.hbase.TestCompoundConfiguration -[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.965 s - in org.apache.hadoop.hbase.TestCompoundConfiguration -[INFO] Running org.apache.hadoop.hbase.TestKeyValue -[INFO] Tests run: 17, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.663 s - in org.apache.hadoop.hbase.nio.TestMultiByteBuff -[INFO] Running org.apache.hadoop.hbase.TestCellBuilder -[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.373 s - in org.apache.hadoop.hbase.TestCellBuilder -[INFO] Running org.apache.hadoop.hbase.conf.TestConfigurationManager -[INFO] Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.853 s - in org.apache.hadoop.hbase.TestKeyValue -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.16 s - in org.apache.hadoop.hbase.conf.TestConfigurationManager -[INFO] Running org.apache.hadoop.hbase.logging.TestLog4jUtils -[INFO] Running org.apache.hadoop.hbase.logging.TestJul2Slf4j -[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.101 s - in org.apache.hadoop.hbase.logging.TestLog4jUtils -[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass1 -[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.096 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass1 -[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass1 Time elapsed: 0.009 s <<< ERROR! -java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass1 - at org.junit.Assert.fail(Assert.java:89) - at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) - at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) - at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) - at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) - at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) - at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) - at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) - at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) - at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) - at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) - at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) - -[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.833 s - in org.apache.hadoop.hbase.TestHBaseClassTestRule -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.865 s - in org.apache.hadoop.hbase.logging.TestJul2Slf4j -[INFO] Running org.apache.hadoop.hbase.TestTagUtil -[INFO] Running org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass3 -[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.099 s <<< FAILURE! - in org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass3 -[ERROR] org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass3 Time elapsed: 0.009 s <<< ERROR! -java.lang.AssertionError: No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass3 - at org.junit.Assert.fail(Assert.java:89) - at org.apache.hadoop.hbase.HBaseClassTestRuleChecker.testStarted(HBaseClassTestRuleChecker.java:64) - at org.junit.runner.notification.RunNotifier$5.notifyListener(RunNotifier.java:156) - at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:72) - at org.junit.runner.notification.RunNotifier.fireTestStarted(RunNotifier.java:153) - at org.apache.maven.surefire.common.junit4.Notifier.fireTestStarted(Notifier.java:100) - at org.junit.internal.runners.ErrorReportingRunner.runCause(ErrorReportingRunner.java:88) - at org.junit.internal.runners.ErrorReportingRunner.run(ErrorReportingRunner.java:49) - at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159) - at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:377) - at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:138) - at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:465) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:451) - -[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.947 s - in org.apache.hadoop.hbase.TestTagUtil -[INFO] Running org.apache.hadoop.hbase.TestTimeout -[INFO] Running org.apache.hadoop.hbase.TestClassFinder -[WARNING] Tests run: 2, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 1.081 s - in org.apache.hadoop.hbase.TestTimeout -[INFO] Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.113 s - in org.apache.hadoop.hbase.TestClassFinder -[INFO] -[INFO] Results: -[INFO] -[ERROR] Failures: -[ERROR] AbstractHBaseToolTest No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.util.AbstractHBaseToolTest -[ERROR] Errors: -[ERROR] TestHBaseClassTestRule$ExtendedParameterizedClass1 No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass1 -[ERROR] TestHBaseClassTestRule$ExtendedParameterizedClass2 No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ExtendedParameterizedClass2 -[ERROR] TestHBaseClassTestRule$InValidParameterizedClass No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$InValidParameterizedClass -[ERROR] TestHBaseClassTestRule$ParameterizedClassWithNoParametersMethod No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ParameterizedClassWithNoParametersMethod -[ERROR] TestHBaseClassTestRule$ValidParameterizedClass1 No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass1 -[ERROR] TestHBaseClassTestRule$ValidParameterizedClass2 No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass2 -[ERROR] TestHBaseClassTestRule$ValidParameterizedClass3 No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass3 -[ERROR] TestHBaseClassTestRule$ValidParameterizedClass4 No HBaseClassTestRule ClassRule for org.apache.hadoop.hbase.TestHBaseClassTestRule$ValidParameterizedClass4 -[INFO] -[ERROR] Tests run: 454, Failures: 1, Errors: 8, Skipped: 1 -[INFO] -[INFO] ------------------------------------------------------------------------ -[INFO] Reactor Summary for Apache HBase 3.0.0-alpha-2-SNAPSHOT: -[INFO] -[INFO] Apache HBase ....................................... SUCCESS [ 1.527 s] -[INFO] Apache HBase - Checkstyle .......................... SUCCESS [ 0.542 s] -[INFO] Apache HBase - Annotations ......................... SUCCESS [ 0.663 s] -[INFO] Apache HBase - Build Configuration ................. SUCCESS [ 0.093 s] -[INFO] Apache HBase - Logging ............................. SUCCESS [ 0.391 s] -[INFO] Apache HBase - Shaded Protocol ..................... SUCCESS [ 27.182 s] -[INFO] Apache HBase - Common .............................. FAILURE [02:50 min] -[INFO] Apache HBase - Metrics API ......................... SKIPPED -[INFO] Apache HBase - Metrics Implementation .............. SKIPPED -[INFO] Apache HBase - Hadoop Compatibility ................ SKIPPED -[INFO] Apache HBase - Client .............................. SKIPPED -[INFO] Apache HBase - Zookeeper ........................... SKIPPED -[INFO] Apache HBase - Replication ......................... SKIPPED -[INFO] Apache HBase - Balancer ............................ SKIPPED -[INFO] Apache HBase - Resource Bundle ..................... SKIPPED -[INFO] Apache HBase - HTTP ................................ SKIPPED -[INFO] Apache HBase - Asynchronous FileSystem ............. SKIPPED -[INFO] Apache HBase - Procedure ........................... SKIPPED -[INFO] Apache HBase - Server .............................. SKIPPED -[INFO] Apache HBase - MapReduce ........................... SKIPPED -[INFO] Apache HBase - Testing Util ........................ SKIPPED -[INFO] Apache HBase - Thrift .............................. SKIPPED -[INFO] Apache HBase - Shell ............................... SKIPPED -[INFO] Apache HBase - Coprocessor Endpoint ................ SKIPPED -[INFO] Apache HBase - Backup .............................. SKIPPED -[INFO] Apache HBase - Integration Tests ................... SKIPPED -[INFO] Apache HBase - Rest ................................ SKIPPED -[INFO] Apache HBase - Examples ............................ SKIPPED -[INFO] Apache HBase - Shaded .............................. SKIPPED -[INFO] Apache HBase - Shaded - Client (with Hadoop bundled) SKIPPED -[INFO] Apache HBase - Shaded - Client ..................... SKIPPED -[INFO] Apache HBase - Shaded - MapReduce .................. SKIPPED -[INFO] Apache HBase - External Block Cache ................ SKIPPED -[INFO] Apache HBase - HBTop ............................... SKIPPED -[INFO] Apache HBase - Assembly ............................ SKIPPED -[INFO] Apache HBase - Shaded - Testing Util ............... SKIPPED -[INFO] Apache HBase - Shaded - Testing Util Tester ........ SKIPPED -[INFO] Apache HBase Shaded Packaging Invariants ........... SKIPPED -[INFO] Apache HBase Shaded Packaging Invariants (with Hadoop bundled) SKIPPED -[INFO] Apache HBase - Archetypes .......................... SKIPPED -[INFO] Apache HBase - Exemplar for hbase-client archetype . SKIPPED -[INFO] Apache HBase - Exemplar for hbase-shaded-client archetype SKIPPED -[INFO] Apache HBase - Archetype builder ................... SKIPPED -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD FAILURE -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 03:22 min -[INFO] Finished at: 2021-09-21T13:16:54+02:00 -[INFO] ------------------------------------------------------------------------ -[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M4:test (default-test) on project hbase-common: There are test failures. -[ERROR] -[ERROR] Please refer to /Users/dorahorvath/Projects/apache-hbase/hbase/hbase-common/target/surefire-reports for the individual test results. -[ERROR] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream. -[ERROR] -> [Help 1] -[ERROR] -[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. -[ERROR] Re-run Maven using the -X switch to enable full debug logging. -[ERROR] -[ERROR] For more information about the errors and possible solutions, please read the following articles: -[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException -[ERROR] -[ERROR] After correcting the problems, you can resume the build with the command -[ERROR] mvn -rf :hbase-common From cbde8993106e5d746040e2de4d13f12abafa76ea Mon Sep 17 00:00:00 2001 From: dorahorvath Date: Mon, 27 Sep 2021 09:44:40 +0200 Subject: [PATCH 3/5] refactor DemoClient class --- .../hadoop/hbase/thrift/DemoClient.java | 53 ++++++++++--------- 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/DemoClient.java b/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/DemoClient.java index e4d9d0ec6945..0718538ad442 100644 --- a/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/DemoClient.java +++ b/hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift/DemoClient.java @@ -123,7 +123,7 @@ private void run() throws Exception { TProtocol protocol = new TBinaryProtocol(transport, true, true); Hbase.Client client = new Hbase.Client(protocol); - byte[] t = bytes("demo_table"); + ByteBuffer demoTable = ByteBuffer.wrap(bytes("demo_table")); ByteBuffer disabledTable = ByteBuffer.wrap(bytes("disabled_table")); // Scan all tables, look for the demo table and delete it. @@ -132,7 +132,7 @@ private void run() throws Exception { for (ByteBuffer name : client.getTableNames()) { System.out.println(" found: " + ClientUtils.utf8(name.array())); - if (ClientUtils.utf8(name.array()).equals(ClientUtils.utf8(t)) || name.equals(disabledTable)) { + if (name.equals(demoTable) || name.equals(disabledTable)) { if (client.isTableEnabled(name)) { System.out.println(" disabling table: " + ClientUtils.utf8(name.array())); client.disableTable(name); @@ -156,17 +156,17 @@ private void run() throws Exception { col.timeToLive = Integer.MAX_VALUE; columns.add(col); - System.out.println("creating table: " + ClientUtils.utf8(t)); + System.out.println("creating table: " + ClientUtils.utf8(demoTable.array())); try { - client.createTable(ByteBuffer.wrap(t), columns); + client.createTable(demoTable, columns); client.createTable(disabledTable, columns); } catch (AlreadyExists ae) { System.out.println("WARN: " + ae.message); } - System.out.println("column families in " + ClientUtils.utf8(t) + ": "); - Map columnMap = client.getColumnDescriptors(ByteBuffer.wrap(t)); + System.out.println("column families in " + ClientUtils.utf8(demoTable.array()) + ": "); + Map columnMap = client.getColumnDescriptors(demoTable); for (ColumnDescriptor col2 : columnMap.values()) { System.out.println(" column: " + ClientUtils.utf8(col2.name.array()) + ", maxVer: " @@ -174,11 +174,12 @@ private void run() throws Exception { } if (client.isTableEnabled(disabledTable)){ + System.out.println("disabling table: " + ClientUtils.utf8(disabledTable.array())); client.disableTable(disabledTable); } + System.out.println("list tables with enabled statuses : "); Map statusMap = client.getTableNamesWithIsTableEnabled(); - for (Map.Entry entry : statusMap.entrySet()) { System.out.println(" Table: " + ClientUtils.utf8(entry.getKey().array()) + ", is enabled: " + entry.getValue()); @@ -200,27 +201,27 @@ private void run() throws Exception { mutations = new ArrayList<>(1); mutations.add(new Mutation(false, ByteBuffer.wrap(bytes("entry:foo")), ByteBuffer.wrap(invalid), writeToWal)); - client.mutateRow(ByteBuffer.wrap(t), ByteBuffer.wrap(bytes("foo")), + client.mutateRow(demoTable, ByteBuffer.wrap(bytes("foo")), mutations, dummyAttributes); // this row name is valid utf8 mutations = new ArrayList<>(1); mutations.add(new Mutation(false, ByteBuffer.wrap(bytes("entry:foo")), ByteBuffer.wrap(valid), writeToWal)); - client.mutateRow(ByteBuffer.wrap(t), ByteBuffer.wrap(valid), mutations, dummyAttributes); + client.mutateRow(demoTable, ByteBuffer.wrap(valid), mutations, dummyAttributes); // non-utf8 is now allowed in row names because HBase stores values as binary mutations = new ArrayList<>(1); mutations.add(new Mutation(false, ByteBuffer.wrap(bytes("entry:foo")), ByteBuffer.wrap(invalid), writeToWal)); - client.mutateRow(ByteBuffer.wrap(t), ByteBuffer.wrap(invalid), mutations, dummyAttributes); + client.mutateRow(demoTable, ByteBuffer.wrap(invalid), mutations, dummyAttributes); // Run a scanner on the rows we just created ArrayList columnNames = new ArrayList<>(); columnNames.add(ByteBuffer.wrap(bytes("entry:"))); System.out.println("Starting scanner..."); - int scanner = client.scannerOpen(ByteBuffer.wrap(t), ByteBuffer.wrap(bytes("")), columnNames, + int scanner = client.scannerOpen(demoTable, ByteBuffer.wrap(bytes("")), columnNames, dummyAttributes); while (true) { @@ -244,9 +245,9 @@ private void run() throws Exception { mutations = new ArrayList<>(1); mutations.add(new Mutation(false, ByteBuffer.wrap(bytes("unused:")), ByteBuffer.wrap(bytes("DELETE_ME")), writeToWal)); - client.mutateRow(ByteBuffer.wrap(t), ByteBuffer.wrap(row), mutations, dummyAttributes); - printRow(client.getRow(ByteBuffer.wrap(t), ByteBuffer.wrap(row), dummyAttributes)); - client.deleteAllRow(ByteBuffer.wrap(t), ByteBuffer.wrap(row), dummyAttributes); + client.mutateRow(demoTable, ByteBuffer.wrap(row), mutations, dummyAttributes); + printRow(client.getRow(demoTable, ByteBuffer.wrap(row), dummyAttributes)); + client.deleteAllRow(demoTable, ByteBuffer.wrap(row), dummyAttributes); // sleep to force later timestamp try { @@ -260,8 +261,8 @@ private void run() throws Exception { ByteBuffer.wrap(bytes("0")), writeToWal)); mutations.add(new Mutation(false, ByteBuffer.wrap(bytes("entry:foo")), ByteBuffer.wrap(bytes("FOO")), writeToWal)); - client.mutateRow(ByteBuffer.wrap(t), ByteBuffer.wrap(row), mutations, dummyAttributes); - printRow(client.getRow(ByteBuffer.wrap(t), ByteBuffer.wrap(row), dummyAttributes)); + client.mutateRow(demoTable, ByteBuffer.wrap(row), mutations, dummyAttributes); + printRow(client.getRow(demoTable, ByteBuffer.wrap(row), dummyAttributes)); Mutation m; mutations = new ArrayList<>(2); @@ -273,16 +274,16 @@ private void run() throws Exception { m.column = ByteBuffer.wrap(bytes("entry:num")); m.value = ByteBuffer.wrap(bytes("-1")); mutations.add(m); - client.mutateRow(ByteBuffer.wrap(t), ByteBuffer.wrap(row), mutations, dummyAttributes); - printRow(client.getRow(ByteBuffer.wrap(t), ByteBuffer.wrap(row), dummyAttributes)); + client.mutateRow(demoTable, ByteBuffer.wrap(row), mutations, dummyAttributes); + printRow(client.getRow(demoTable, ByteBuffer.wrap(row), dummyAttributes)); mutations = new ArrayList<>(); mutations.add(new Mutation(false, ByteBuffer.wrap(bytes("entry:num")), ByteBuffer.wrap(bytes(Integer.toString(i))), writeToWal)); mutations.add(new Mutation(false, ByteBuffer.wrap(bytes("entry:sqr")), ByteBuffer.wrap(bytes(Integer.toString(i * i))), writeToWal)); - client.mutateRow(ByteBuffer.wrap(t), ByteBuffer.wrap(row), mutations, dummyAttributes); - printRow(client.getRow(ByteBuffer.wrap(t), ByteBuffer.wrap(row), dummyAttributes)); + client.mutateRow(demoTable, ByteBuffer.wrap(row), mutations, dummyAttributes); + printRow(client.getRow(demoTable, ByteBuffer.wrap(row), dummyAttributes)); // sleep to force later timestamp try { @@ -299,11 +300,11 @@ private void run() throws Exception { m = new Mutation(); m.column = ByteBuffer.wrap(bytes("entry:sqr")); m.isDelete = true; - client.mutateRowTs(ByteBuffer.wrap(t), ByteBuffer.wrap(row), mutations, 1, + client.mutateRowTs(demoTable, ByteBuffer.wrap(row), mutations, 1, dummyAttributes); // shouldn't override latest - printRow(client.getRow(ByteBuffer.wrap(t), ByteBuffer.wrap(row), dummyAttributes)); + printRow(client.getRow(demoTable, ByteBuffer.wrap(row), dummyAttributes)); - List versions = client.getVer(ByteBuffer.wrap(t), ByteBuffer.wrap(row), + List versions = client.getVer(demoTable, ByteBuffer.wrap(row), ByteBuffer.wrap(bytes("entry:num")), 10, dummyAttributes); printVersions(ByteBuffer.wrap(row), versions); @@ -312,7 +313,7 @@ private void run() throws Exception { System.exit(-1); } - List result = client.get(ByteBuffer.wrap(t), ByteBuffer.wrap(row), + List result = client.get(demoTable, ByteBuffer.wrap(row), ByteBuffer.wrap(bytes("entry:foo")), dummyAttributes); if (!result.isEmpty()) { @@ -326,7 +327,7 @@ private void run() throws Exception { // scan all rows/columnNames columnNames.clear(); - for (ColumnDescriptor col2 : client.getColumnDescriptors(ByteBuffer.wrap(t)).values()) { + for (ColumnDescriptor col2 : client.getColumnDescriptors(demoTable).values()) { System.out.println("column with name: " + new String(col2.name.array())); System.out.println(col2.toString()); @@ -334,7 +335,7 @@ private void run() throws Exception { } System.out.println("Starting scanner..."); - scanner = client.scannerOpenWithStop(ByteBuffer.wrap(t), ByteBuffer.wrap(bytes("00020")), + scanner = client.scannerOpenWithStop(demoTable, ByteBuffer.wrap(bytes("00020")), ByteBuffer.wrap(bytes("00040")), columnNames, dummyAttributes); while (true) { From 35782c0f67ef6998f024ba436db2706a6072a3ce Mon Sep 17 00:00:00 2001 From: Dora Horvath Date: Tue, 28 Sep 2021 07:55:01 +0200 Subject: [PATCH 4/5] revert generated HBase file --- .../hadoop/hbase/thrift/generated/Hbase.java | 5686 +++++++---------- 1 file changed, 2370 insertions(+), 3316 deletions(-) diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java index 568acf4299dc..52b63806bff5 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-09-21") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") public class Hbase { public interface Iface { @@ -45,13 +45,6 @@ public interface Iface { */ public java.util.List getTableNames() throws IOError, org.apache.thrift.TException; - /** - * List all the userspace tables and their enabled or disabled flags. - * - * @return list of tables with is enabled flags - */ - public java.util.Map getTableNamesWithIsTableEnabled() throws IOError, org.apache.thrift.TException; - /** * List all the column families assoicated with a table. * @@ -664,8 +657,6 @@ public interface AsyncIface { public void getTableNames(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; - public void getTableNamesWithIsTableEnabled(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; - public void getColumnDescriptors(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; public void getTableRegions(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; @@ -915,31 +906,6 @@ public java.util.List recv_getTableNames() throws IOError, throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getTableNames failed: unknown result"); } - public java.util.Map getTableNamesWithIsTableEnabled() throws IOError, org.apache.thrift.TException - { - send_getTableNamesWithIsTableEnabled(); - return recv_getTableNamesWithIsTableEnabled(); - } - - public void send_getTableNamesWithIsTableEnabled() throws org.apache.thrift.TException - { - getTableNamesWithIsTableEnabled_args args = new getTableNamesWithIsTableEnabled_args(); - sendBase("getTableNamesWithIsTableEnabled", args); - } - - public java.util.Map recv_getTableNamesWithIsTableEnabled() throws IOError, org.apache.thrift.TException - { - getTableNamesWithIsTableEnabled_result result = new getTableNamesWithIsTableEnabled_result(); - receiveBase(result, "getTableNamesWithIsTableEnabled"); - if (result.isSetSuccess()) { - return result.success; - } - if (result.io != null) { - throw result.io; - } - throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getTableNamesWithIsTableEnabled failed: unknown result"); - } - public java.util.Map getColumnDescriptors(java.nio.ByteBuffer tableName) throws IOError, org.apache.thrift.TException { send_getColumnDescriptors(tableName); @@ -2316,35 +2282,6 @@ public java.util.List getResult() throws IOError, org.apach } } - public void getTableNamesWithIsTableEnabled(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - checkReady(); - getTableNamesWithIsTableEnabled_call method_call = new getTableNamesWithIsTableEnabled_call(resultHandler, this, ___protocolFactory, ___transport); - this.___currentMethod = method_call; - ___manager.call(method_call); - } - - public static class getTableNamesWithIsTableEnabled_call extends org.apache.thrift.async.TAsyncMethodCall> { - public getTableNamesWithIsTableEnabled_call(org.apache.thrift.async.AsyncMethodCallback> resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException { - super(client, protocolFactory, transport, resultHandler, false); - } - - public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { - prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getTableNamesWithIsTableEnabled", org.apache.thrift.protocol.TMessageType.CALL, 0)); - getTableNamesWithIsTableEnabled_args args = new getTableNamesWithIsTableEnabled_args(); - args.write(prot); - prot.writeMessageEnd(); - } - - public java.util.Map getResult() throws IOError, org.apache.thrift.TException { - if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { - throw new java.lang.IllegalStateException("Method call not finished!"); - } - org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); - org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); - return (new Client(prot)).recv_getTableNamesWithIsTableEnabled(); - } - } - public void getColumnDescriptors(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getColumnDescriptors_call method_call = new getColumnDescriptors_call(tableName, resultHandler, this, ___protocolFactory, ___transport); @@ -3975,7 +3912,6 @@ protected Processor(I iface, java.util.Map extends org.apache.thrift.ProcessFunction { - public getTableNamesWithIsTableEnabled() { - super("getTableNamesWithIsTableEnabled"); - } - - public getTableNamesWithIsTableEnabled_args getEmptyArgsInstance() { - return new getTableNamesWithIsTableEnabled_args(); - } - - protected boolean isOneway() { - return false; - } - - @Override - protected boolean rethrowUnhandledExceptions() { - return false; - } - - public getTableNamesWithIsTableEnabled_result getResult(I iface, getTableNamesWithIsTableEnabled_args args) throws org.apache.thrift.TException { - getTableNamesWithIsTableEnabled_result result = new getTableNamesWithIsTableEnabled_result(); - try { - result.success = iface.getTableNamesWithIsTableEnabled(); - } catch (IOError io) { - result.io = io; - } - return result; - } - } - public static class getColumnDescriptors extends org.apache.thrift.ProcessFunction { public getColumnDescriptors() { super("getColumnDescriptors"); @@ -5486,7 +5393,6 @@ protected AsyncProcessor(I iface, java.util.Map extends org.apache.thrift.AsyncProcessFunction> { - public getTableNamesWithIsTableEnabled() { - super("getTableNamesWithIsTableEnabled"); + public static class getColumnDescriptors extends org.apache.thrift.AsyncProcessFunction> { + public getColumnDescriptors() { + super("getColumnDescriptors"); } - public getTableNamesWithIsTableEnabled_args getEmptyArgsInstance() { - return new getTableNamesWithIsTableEnabled_args(); + public getColumnDescriptors_args getEmptyArgsInstance() { + return new getColumnDescriptors_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.Map o) { - getTableNamesWithIsTableEnabled_result result = new getTableNamesWithIsTableEnabled_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.Map o) { + getColumnDescriptors_result result = new getColumnDescriptors_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -5947,7 +5853,7 @@ public void onComplete(java.util.Map o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getTableNamesWithIsTableEnabled_result result = new getTableNamesWithIsTableEnabled_result(); + getColumnDescriptors_result result = new getColumnDescriptors_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -5979,25 +5885,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getTableNamesWithIsTableEnabled_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getTableNamesWithIsTableEnabled(resultHandler); + public void start(I iface, getColumnDescriptors_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getColumnDescriptors(args.tableName,resultHandler); } } - public static class getColumnDescriptors extends org.apache.thrift.AsyncProcessFunction> { - public getColumnDescriptors() { - super("getColumnDescriptors"); + public static class getTableRegions extends org.apache.thrift.AsyncProcessFunction> { + public getTableRegions() { + super("getTableRegions"); } - public getColumnDescriptors_args getEmptyArgsInstance() { - return new getColumnDescriptors_args(); + public getTableRegions_args getEmptyArgsInstance() { + return new getTableRegions_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.Map o) { - getColumnDescriptors_result result = new getColumnDescriptors_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getTableRegions_result result = new getTableRegions_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6012,7 +5918,7 @@ public void onComplete(java.util.Map o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getColumnDescriptors_result result = new getColumnDescriptors_result(); + getTableRegions_result result = new getTableRegions_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6044,26 +5950,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getColumnDescriptors_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getColumnDescriptors(args.tableName,resultHandler); + public void start(I iface, getTableRegions_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getTableRegions(args.tableName,resultHandler); } } - public static class getTableRegions extends org.apache.thrift.AsyncProcessFunction> { - public getTableRegions() { - super("getTableRegions"); + public static class createTable extends org.apache.thrift.AsyncProcessFunction { + public createTable() { + super("createTable"); } - public getTableRegions_args getEmptyArgsInstance() { - return new getTableRegions_args(); + public createTable_args getEmptyArgsInstance() { + return new createTable_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getTableRegions_result result = new getTableRegions_result(); - result.success = o; + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + createTable_result result = new createTable_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6077,11 +5982,19 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getTableRegions_result result = new getTableRegions_result(); + createTable_result result = new createTable_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); + msg = result; + } else if (e instanceof AlreadyExists) { + result.exist = (AlreadyExists) e; + result.setExistIsSet(true); + msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -6109,25 +6022,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getTableRegions_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getTableRegions(args.tableName,resultHandler); + public void start(I iface, createTable_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.createTable(args.tableName, args.columnFamilies,resultHandler); } } - public static class createTable extends org.apache.thrift.AsyncProcessFunction { - public createTable() { - super("createTable"); + public static class deleteTable extends org.apache.thrift.AsyncProcessFunction { + public deleteTable() { + super("deleteTable"); } - public createTable_args getEmptyArgsInstance() { - return new createTable_args(); + public deleteTable_args getEmptyArgsInstance() { + return new deleteTable_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - createTable_result result = new createTable_result(); + deleteTable_result result = new deleteTable_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6141,18 +6054,140 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - createTable_result result = new createTable_result(); + deleteTable_result result = new deleteTable_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; + } + + protected boolean isOneway() { + return false; + } + + public void start(I iface, deleteTable_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteTable(args.tableName,resultHandler); + } + } + + public static class get extends org.apache.thrift.AsyncProcessFunction> { + public get() { + super("get"); + } + + public get_args getEmptyArgsInstance() { + return new get_args(); + } + + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + get_result result = new get_result(); + result.success = o; + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + get_result result = new get_result(); + if (e instanceof IOError) { + result.io = (IOError) e; + result.setIoIsSet(true); msg = result; - } else if (e instanceof AlreadyExists) { - result.exist = (AlreadyExists) e; - result.setExistIsSet(true); + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; + } + + protected boolean isOneway() { + return false; + } + + public void start(I iface, get_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.get(args.tableName, args.row, args.column, args.attributes,resultHandler); + } + } + + public static class getVer extends org.apache.thrift.AsyncProcessFunction> { + public getVer() { + super("getVer"); + } + + public getVer_args getEmptyArgsInstance() { + return new getVer_args(); + } + + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getVer_result result = new getVer_result(); + result.success = o; + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + getVer_result result = new getVer_result(); + if (e instanceof IOError) { + result.io = (IOError) e; + result.setIoIsSet(true); msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); @@ -6181,89 +6216,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, createTable_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.createTable(args.tableName, args.columnFamilies,resultHandler); - } - } - - public static class deleteTable extends org.apache.thrift.AsyncProcessFunction { - public deleteTable() { - super("deleteTable"); - } - - public deleteTable_args getEmptyArgsInstance() { - return new deleteTable_args(); - } - - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { - final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - deleteTable_result result = new deleteTable_result(); - try { - fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); - } catch (org.apache.thrift.transport.TTransportException e) { - _LOGGER.error("TTransportException writing to internal frame buffer", e); - fb.close(); - } catch (java.lang.Exception e) { - _LOGGER.error("Exception writing to internal frame buffer", e); - onError(e); - } - } - public void onError(java.lang.Exception e) { - byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; - org.apache.thrift.TSerializable msg; - deleteTable_result result = new deleteTable_result(); - if (e instanceof IOError) { - result.io = (IOError) e; - result.setIoIsSet(true); - msg = result; - } else if (e instanceof org.apache.thrift.transport.TTransportException) { - _LOGGER.error("TTransportException inside handler", e); - fb.close(); - return; - } else if (e instanceof org.apache.thrift.TApplicationException) { - _LOGGER.error("TApplicationException inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = (org.apache.thrift.TApplicationException)e; - } else { - _LOGGER.error("Exception inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); - } - try { - fcall.sendResponse(fb,msg,msgType,seqid); - } catch (java.lang.Exception ex) { - _LOGGER.error("Exception writing to internal frame buffer", ex); - fb.close(); - } - } - }; - } - - protected boolean isOneway() { - return false; - } - - public void start(I iface, deleteTable_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteTable(args.tableName,resultHandler); + public void start(I iface, getVer_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getVer(args.tableName, args.row, args.column, args.numVersions, args.attributes,resultHandler); } } - public static class get extends org.apache.thrift.AsyncProcessFunction> { - public get() { - super("get"); + public static class getVerTs extends org.apache.thrift.AsyncProcessFunction> { + public getVerTs() { + super("getVerTs"); } - public get_args getEmptyArgsInstance() { - return new get_args(); + public getVerTs_args getEmptyArgsInstance() { + return new getVerTs_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - get_result result = new get_result(); + getVerTs_result result = new getVerTs_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6278,7 +6249,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - get_result result = new get_result(); + getVerTs_result result = new getVerTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6310,25 +6281,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, get_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.get(args.tableName, args.row, args.column, args.attributes,resultHandler); + public void start(I iface, getVerTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getVerTs(args.tableName, args.row, args.column, args.timestamp, args.numVersions, args.attributes,resultHandler); } } - public static class getVer extends org.apache.thrift.AsyncProcessFunction> { - public getVer() { - super("getVer"); + public static class getRow extends org.apache.thrift.AsyncProcessFunction> { + public getRow() { + super("getRow"); } - public getVer_args getEmptyArgsInstance() { - return new getVer_args(); + public getRow_args getEmptyArgsInstance() { + return new getRow_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getVer_result result = new getVer_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getRow_result result = new getRow_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6343,7 +6314,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getVer_result result = new getVer_result(); + getRow_result result = new getRow_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6375,25 +6346,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getVer_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getVer(args.tableName, args.row, args.column, args.numVersions, args.attributes,resultHandler); + public void start(I iface, getRow_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRow(args.tableName, args.row, args.attributes,resultHandler); } } - public static class getVerTs extends org.apache.thrift.AsyncProcessFunction> { - public getVerTs() { - super("getVerTs"); + public static class getRowWithColumns extends org.apache.thrift.AsyncProcessFunction> { + public getRowWithColumns() { + super("getRowWithColumns"); } - public getVerTs_args getEmptyArgsInstance() { - return new getVerTs_args(); + public getRowWithColumns_args getEmptyArgsInstance() { + return new getRowWithColumns_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getVerTs_result result = new getVerTs_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getRowWithColumns_result result = new getRowWithColumns_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6408,7 +6379,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getVerTs_result result = new getVerTs_result(); + getRowWithColumns_result result = new getRowWithColumns_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6440,25 +6411,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getVerTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getVerTs(args.tableName, args.row, args.column, args.timestamp, args.numVersions, args.attributes,resultHandler); + public void start(I iface, getRowWithColumns_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowWithColumns(args.tableName, args.row, args.columns, args.attributes,resultHandler); } } - public static class getRow extends org.apache.thrift.AsyncProcessFunction> { - public getRow() { - super("getRow"); + public static class getRowTs extends org.apache.thrift.AsyncProcessFunction> { + public getRowTs() { + super("getRowTs"); } - public getRow_args getEmptyArgsInstance() { - return new getRow_args(); + public getRowTs_args getEmptyArgsInstance() { + return new getRowTs_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRow_result result = new getRow_result(); + getRowTs_result result = new getRowTs_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6473,7 +6444,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRow_result result = new getRow_result(); + getRowTs_result result = new getRowTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6505,25 +6476,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRow_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRow(args.tableName, args.row, args.attributes,resultHandler); + public void start(I iface, getRowTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowTs(args.tableName, args.row, args.timestamp, args.attributes,resultHandler); } } - public static class getRowWithColumns extends org.apache.thrift.AsyncProcessFunction> { - public getRowWithColumns() { - super("getRowWithColumns"); + public static class getRowWithColumnsTs extends org.apache.thrift.AsyncProcessFunction> { + public getRowWithColumnsTs() { + super("getRowWithColumnsTs"); } - public getRowWithColumns_args getEmptyArgsInstance() { - return new getRowWithColumns_args(); + public getRowWithColumnsTs_args getEmptyArgsInstance() { + return new getRowWithColumnsTs_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowWithColumns_result result = new getRowWithColumns_result(); + getRowWithColumnsTs_result result = new getRowWithColumnsTs_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6538,7 +6509,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowWithColumns_result result = new getRowWithColumns_result(); + getRowWithColumnsTs_result result = new getRowWithColumnsTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6570,25 +6541,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowWithColumns_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowWithColumns(args.tableName, args.row, args.columns, args.attributes,resultHandler); + public void start(I iface, getRowWithColumnsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowWithColumnsTs(args.tableName, args.row, args.columns, args.timestamp, args.attributes,resultHandler); } } - public static class getRowTs extends org.apache.thrift.AsyncProcessFunction> { - public getRowTs() { - super("getRowTs"); + public static class getRows extends org.apache.thrift.AsyncProcessFunction> { + public getRows() { + super("getRows"); } - public getRowTs_args getEmptyArgsInstance() { - return new getRowTs_args(); + public getRows_args getEmptyArgsInstance() { + return new getRows_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowTs_result result = new getRowTs_result(); + getRows_result result = new getRows_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6603,7 +6574,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowTs_result result = new getRowTs_result(); + getRows_result result = new getRows_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6635,25 +6606,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowTs(args.tableName, args.row, args.timestamp, args.attributes,resultHandler); + public void start(I iface, getRows_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRows(args.tableName, args.rows, args.attributes,resultHandler); } } - public static class getRowWithColumnsTs extends org.apache.thrift.AsyncProcessFunction> { - public getRowWithColumnsTs() { - super("getRowWithColumnsTs"); + public static class getRowsWithColumns extends org.apache.thrift.AsyncProcessFunction> { + public getRowsWithColumns() { + super("getRowsWithColumns"); } - public getRowWithColumnsTs_args getEmptyArgsInstance() { - return new getRowWithColumnsTs_args(); + public getRowsWithColumns_args getEmptyArgsInstance() { + return new getRowsWithColumns_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowWithColumnsTs_result result = new getRowWithColumnsTs_result(); + getRowsWithColumns_result result = new getRowsWithColumns_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6668,7 +6639,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowWithColumnsTs_result result = new getRowWithColumnsTs_result(); + getRowsWithColumns_result result = new getRowsWithColumns_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6700,25 +6671,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowWithColumnsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowWithColumnsTs(args.tableName, args.row, args.columns, args.timestamp, args.attributes,resultHandler); + public void start(I iface, getRowsWithColumns_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowsWithColumns(args.tableName, args.rows, args.columns, args.attributes,resultHandler); } } - public static class getRows extends org.apache.thrift.AsyncProcessFunction> { - public getRows() { - super("getRows"); + public static class getRowsTs extends org.apache.thrift.AsyncProcessFunction> { + public getRowsTs() { + super("getRowsTs"); } - public getRows_args getEmptyArgsInstance() { - return new getRows_args(); + public getRowsTs_args getEmptyArgsInstance() { + return new getRowsTs_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRows_result result = new getRows_result(); + getRowsTs_result result = new getRowsTs_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6733,7 +6704,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRows_result result = new getRows_result(); + getRowsTs_result result = new getRowsTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6765,25 +6736,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRows_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRows(args.tableName, args.rows, args.attributes,resultHandler); + public void start(I iface, getRowsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowsTs(args.tableName, args.rows, args.timestamp, args.attributes,resultHandler); } } - public static class getRowsWithColumns extends org.apache.thrift.AsyncProcessFunction> { - public getRowsWithColumns() { - super("getRowsWithColumns"); + public static class getRowsWithColumnsTs extends org.apache.thrift.AsyncProcessFunction> { + public getRowsWithColumnsTs() { + super("getRowsWithColumnsTs"); } - public getRowsWithColumns_args getEmptyArgsInstance() { - return new getRowsWithColumns_args(); + public getRowsWithColumnsTs_args getEmptyArgsInstance() { + return new getRowsWithColumnsTs_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowsWithColumns_result result = new getRowsWithColumns_result(); + getRowsWithColumnsTs_result result = new getRowsWithColumnsTs_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6798,7 +6769,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowsWithColumns_result result = new getRowsWithColumns_result(); + getRowsWithColumnsTs_result result = new getRowsWithColumnsTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6830,26 +6801,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowsWithColumns_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowsWithColumns(args.tableName, args.rows, args.columns, args.attributes,resultHandler); + public void start(I iface, getRowsWithColumnsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowsWithColumnsTs(args.tableName, args.rows, args.columns, args.timestamp, args.attributes,resultHandler); } } - public static class getRowsTs extends org.apache.thrift.AsyncProcessFunction> { - public getRowsTs() { - super("getRowsTs"); + public static class mutateRow extends org.apache.thrift.AsyncProcessFunction { + public mutateRow() { + super("mutateRow"); } - public getRowsTs_args getEmptyArgsInstance() { - return new getRowsTs_args(); + public mutateRow_args getEmptyArgsInstance() { + return new mutateRow_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getRowsTs_result result = new getRowsTs_result(); - result.success = o; + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + mutateRow_result result = new mutateRow_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6863,11 +6833,15 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowsTs_result result = new getRowsTs_result(); + mutateRow_result result = new mutateRow_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); + msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -6895,26 +6869,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowsTs(args.tableName, args.rows, args.timestamp, args.attributes,resultHandler); + public void start(I iface, mutateRow_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.mutateRow(args.tableName, args.row, args.mutations, args.attributes,resultHandler); } } - public static class getRowsWithColumnsTs extends org.apache.thrift.AsyncProcessFunction> { - public getRowsWithColumnsTs() { - super("getRowsWithColumnsTs"); + public static class mutateRowTs extends org.apache.thrift.AsyncProcessFunction { + public mutateRowTs() { + super("mutateRowTs"); } - public getRowsWithColumnsTs_args getEmptyArgsInstance() { - return new getRowsWithColumnsTs_args(); + public mutateRowTs_args getEmptyArgsInstance() { + return new mutateRowTs_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getRowsWithColumnsTs_result result = new getRowsWithColumnsTs_result(); - result.success = o; + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + mutateRowTs_result result = new mutateRowTs_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6928,11 +6901,15 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowsWithColumnsTs_result result = new getRowsWithColumnsTs_result(); + mutateRowTs_result result = new mutateRowTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); + msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -6960,25 +6937,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowsWithColumnsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowsWithColumnsTs(args.tableName, args.rows, args.columns, args.timestamp, args.attributes,resultHandler); + public void start(I iface, mutateRowTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.mutateRowTs(args.tableName, args.row, args.mutations, args.timestamp, args.attributes,resultHandler); } } - public static class mutateRow extends org.apache.thrift.AsyncProcessFunction { - public mutateRow() { - super("mutateRow"); + public static class mutateRows extends org.apache.thrift.AsyncProcessFunction { + public mutateRows() { + super("mutateRows"); } - public mutateRow_args getEmptyArgsInstance() { - return new mutateRow_args(); + public mutateRows_args getEmptyArgsInstance() { + return new mutateRows_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - mutateRow_result result = new mutateRow_result(); + mutateRows_result result = new mutateRows_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6992,7 +6969,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - mutateRow_result result = new mutateRow_result(); + mutateRows_result result = new mutateRows_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7028,25 +7005,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, mutateRow_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.mutateRow(args.tableName, args.row, args.mutations, args.attributes,resultHandler); + public void start(I iface, mutateRows_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.mutateRows(args.tableName, args.rowBatches, args.attributes,resultHandler); } } - public static class mutateRowTs extends org.apache.thrift.AsyncProcessFunction { - public mutateRowTs() { - super("mutateRowTs"); + public static class mutateRowsTs extends org.apache.thrift.AsyncProcessFunction { + public mutateRowsTs() { + super("mutateRowsTs"); } - public mutateRowTs_args getEmptyArgsInstance() { - return new mutateRowTs_args(); + public mutateRowsTs_args getEmptyArgsInstance() { + return new mutateRowsTs_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - mutateRowTs_result result = new mutateRowTs_result(); + mutateRowsTs_result result = new mutateRowsTs_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7060,7 +7037,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - mutateRowTs_result result = new mutateRowTs_result(); + mutateRowsTs_result result = new mutateRowsTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7096,25 +7073,27 @@ protected boolean isOneway() { return false; } - public void start(I iface, mutateRowTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.mutateRowTs(args.tableName, args.row, args.mutations, args.timestamp, args.attributes,resultHandler); + public void start(I iface, mutateRowsTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.mutateRowsTs(args.tableName, args.rowBatches, args.timestamp, args.attributes,resultHandler); } } - public static class mutateRows extends org.apache.thrift.AsyncProcessFunction { - public mutateRows() { - super("mutateRows"); + public static class atomicIncrement extends org.apache.thrift.AsyncProcessFunction { + public atomicIncrement() { + super("atomicIncrement"); } - public mutateRows_args getEmptyArgsInstance() { - return new mutateRows_args(); + public atomicIncrement_args getEmptyArgsInstance() { + return new atomicIncrement_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - mutateRows_result result = new mutateRows_result(); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(java.lang.Long o) { + atomicIncrement_result result = new atomicIncrement_result(); + result.success = o; + result.setSuccessIsSet(true); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7128,7 +7107,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - mutateRows_result result = new mutateRows_result(); + atomicIncrement_result result = new atomicIncrement_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7164,25 +7143,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, mutateRows_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.mutateRows(args.tableName, args.rowBatches, args.attributes,resultHandler); + public void start(I iface, atomicIncrement_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.atomicIncrement(args.tableName, args.row, args.column, args.value,resultHandler); } } - public static class mutateRowsTs extends org.apache.thrift.AsyncProcessFunction { - public mutateRowsTs() { - super("mutateRowsTs"); + public static class deleteAll extends org.apache.thrift.AsyncProcessFunction { + public deleteAll() { + super("deleteAll"); } - public mutateRowsTs_args getEmptyArgsInstance() { - return new mutateRowsTs_args(); + public deleteAll_args getEmptyArgsInstance() { + return new deleteAll_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - mutateRowsTs_result result = new mutateRowsTs_result(); + deleteAll_result result = new deleteAll_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7196,15 +7175,11 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - mutateRowsTs_result result = new mutateRowsTs_result(); + deleteAll_result result = new deleteAll_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -7232,27 +7207,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, mutateRowsTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.mutateRowsTs(args.tableName, args.rowBatches, args.timestamp, args.attributes,resultHandler); + public void start(I iface, deleteAll_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteAll(args.tableName, args.row, args.column, args.attributes,resultHandler); } } - public static class atomicIncrement extends org.apache.thrift.AsyncProcessFunction { - public atomicIncrement() { - super("atomicIncrement"); + public static class deleteAllTs extends org.apache.thrift.AsyncProcessFunction { + public deleteAllTs() { + super("deleteAllTs"); } - public atomicIncrement_args getEmptyArgsInstance() { - return new atomicIncrement_args(); + public deleteAllTs_args getEmptyArgsInstance() { + return new deleteAllTs_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(java.lang.Long o) { - atomicIncrement_result result = new atomicIncrement_result(); - result.success = o; - result.setSuccessIsSet(true); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + deleteAllTs_result result = new deleteAllTs_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7266,14 +7239,74 @@ public void onComplete(java.lang.Long o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - atomicIncrement_result result = new atomicIncrement_result(); + deleteAllTs_result result = new deleteAllTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; + } + + protected boolean isOneway() { + return false; + } + + public void start(I iface, deleteAllTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteAllTs(args.tableName, args.row, args.column, args.timestamp, args.attributes,resultHandler); + } + } + + public static class deleteAllRow extends org.apache.thrift.AsyncProcessFunction { + public deleteAllRow() { + super("deleteAllRow"); + } + + public deleteAllRow_args getEmptyArgsInstance() { + return new deleteAllRow_args(); + } + + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + deleteAllRow_result result = new deleteAllRow_result(); + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + deleteAllRow_result result = new deleteAllRow_result(); + if (e instanceof IOError) { + result.io = (IOError) e; + result.setIoIsSet(true); msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); @@ -7302,25 +7335,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, atomicIncrement_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.atomicIncrement(args.tableName, args.row, args.column, args.value,resultHandler); + public void start(I iface, deleteAllRow_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteAllRow(args.tableName, args.row, args.attributes,resultHandler); } } - public static class deleteAll extends org.apache.thrift.AsyncProcessFunction { - public deleteAll() { - super("deleteAll"); + public static class increment extends org.apache.thrift.AsyncProcessFunction { + public increment() { + super("increment"); } - public deleteAll_args getEmptyArgsInstance() { - return new deleteAll_args(); + public increment_args getEmptyArgsInstance() { + return new increment_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - deleteAll_result result = new deleteAll_result(); + increment_result result = new increment_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7334,7 +7367,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - deleteAll_result result = new deleteAll_result(); + increment_result result = new increment_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7366,25 +7399,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, deleteAll_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteAll(args.tableName, args.row, args.column, args.attributes,resultHandler); + public void start(I iface, increment_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.increment(args.increment,resultHandler); } } - public static class deleteAllTs extends org.apache.thrift.AsyncProcessFunction { - public deleteAllTs() { - super("deleteAllTs"); + public static class incrementRows extends org.apache.thrift.AsyncProcessFunction { + public incrementRows() { + super("incrementRows"); } - public deleteAllTs_args getEmptyArgsInstance() { - return new deleteAllTs_args(); + public incrementRows_args getEmptyArgsInstance() { + return new incrementRows_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - deleteAllTs_result result = new deleteAllTs_result(); + incrementRows_result result = new incrementRows_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7398,7 +7431,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - deleteAllTs_result result = new deleteAllTs_result(); + incrementRows_result result = new incrementRows_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7430,25 +7463,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, deleteAllTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteAllTs(args.tableName, args.row, args.column, args.timestamp, args.attributes,resultHandler); + public void start(I iface, incrementRows_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.incrementRows(args.increments,resultHandler); } } - public static class deleteAllRow extends org.apache.thrift.AsyncProcessFunction { - public deleteAllRow() { - super("deleteAllRow"); + public static class deleteAllRowTs extends org.apache.thrift.AsyncProcessFunction { + public deleteAllRowTs() { + super("deleteAllRowTs"); } - public deleteAllRow_args getEmptyArgsInstance() { - return new deleteAllRow_args(); + public deleteAllRowTs_args getEmptyArgsInstance() { + return new deleteAllRowTs_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - deleteAllRow_result result = new deleteAllRow_result(); + deleteAllRowTs_result result = new deleteAllRowTs_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7462,7 +7495,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - deleteAllRow_result result = new deleteAllRow_result(); + deleteAllRowTs_result result = new deleteAllRowTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7494,89 +7527,27 @@ protected boolean isOneway() { return false; } - public void start(I iface, deleteAllRow_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteAllRow(args.tableName, args.row, args.attributes,resultHandler); - } - } - - public static class increment extends org.apache.thrift.AsyncProcessFunction { - public increment() { - super("increment"); - } - - public increment_args getEmptyArgsInstance() { - return new increment_args(); - } - - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { - final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - increment_result result = new increment_result(); - try { - fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); - } catch (org.apache.thrift.transport.TTransportException e) { - _LOGGER.error("TTransportException writing to internal frame buffer", e); - fb.close(); - } catch (java.lang.Exception e) { - _LOGGER.error("Exception writing to internal frame buffer", e); - onError(e); - } - } - public void onError(java.lang.Exception e) { - byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; - org.apache.thrift.TSerializable msg; - increment_result result = new increment_result(); - if (e instanceof IOError) { - result.io = (IOError) e; - result.setIoIsSet(true); - msg = result; - } else if (e instanceof org.apache.thrift.transport.TTransportException) { - _LOGGER.error("TTransportException inside handler", e); - fb.close(); - return; - } else if (e instanceof org.apache.thrift.TApplicationException) { - _LOGGER.error("TApplicationException inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = (org.apache.thrift.TApplicationException)e; - } else { - _LOGGER.error("Exception inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); - } - try { - fcall.sendResponse(fb,msg,msgType,seqid); - } catch (java.lang.Exception ex) { - _LOGGER.error("Exception writing to internal frame buffer", ex); - fb.close(); - } - } - }; - } - - protected boolean isOneway() { - return false; - } - - public void start(I iface, increment_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.increment(args.increment,resultHandler); + public void start(I iface, deleteAllRowTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteAllRowTs(args.tableName, args.row, args.timestamp, args.attributes,resultHandler); } } - public static class incrementRows extends org.apache.thrift.AsyncProcessFunction { - public incrementRows() { - super("incrementRows"); + public static class scannerOpenWithScan extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenWithScan() { + super("scannerOpenWithScan"); } - public incrementRows_args getEmptyArgsInstance() { - return new incrementRows_args(); + public scannerOpenWithScan_args getEmptyArgsInstance() { + return new scannerOpenWithScan_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - incrementRows_result result = new incrementRows_result(); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(java.lang.Integer o) { + scannerOpenWithScan_result result = new scannerOpenWithScan_result(); + result.success = o; + result.setSuccessIsSet(true); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7590,7 +7561,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - incrementRows_result result = new incrementRows_result(); + scannerOpenWithScan_result result = new scannerOpenWithScan_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7622,25 +7593,27 @@ protected boolean isOneway() { return false; } - public void start(I iface, incrementRows_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.incrementRows(args.increments,resultHandler); + public void start(I iface, scannerOpenWithScan_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenWithScan(args.tableName, args.scan, args.attributes,resultHandler); } } - public static class deleteAllRowTs extends org.apache.thrift.AsyncProcessFunction { - public deleteAllRowTs() { - super("deleteAllRowTs"); + public static class scannerOpen extends org.apache.thrift.AsyncProcessFunction { + public scannerOpen() { + super("scannerOpen"); } - public deleteAllRowTs_args getEmptyArgsInstance() { - return new deleteAllRowTs_args(); + public scannerOpen_args getEmptyArgsInstance() { + return new scannerOpen_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - deleteAllRowTs_result result = new deleteAllRowTs_result(); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(java.lang.Integer o) { + scannerOpen_result result = new scannerOpen_result(); + result.success = o; + result.setSuccessIsSet(true); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7654,7 +7627,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - deleteAllRowTs_result result = new deleteAllRowTs_result(); + scannerOpen_result result = new scannerOpen_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7686,25 +7659,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, deleteAllRowTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteAllRowTs(args.tableName, args.row, args.timestamp, args.attributes,resultHandler); + public void start(I iface, scannerOpen_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpen(args.tableName, args.startRow, args.columns, args.attributes,resultHandler); } } - public static class scannerOpenWithScan extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenWithScan() { - super("scannerOpenWithScan"); + public static class scannerOpenWithStop extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenWithStop() { + super("scannerOpenWithStop"); } - public scannerOpenWithScan_args getEmptyArgsInstance() { - return new scannerOpenWithScan_args(); + public scannerOpenWithStop_args getEmptyArgsInstance() { + return new scannerOpenWithStop_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(java.lang.Integer o) { - scannerOpenWithScan_result result = new scannerOpenWithScan_result(); + scannerOpenWithStop_result result = new scannerOpenWithStop_result(); result.success = o; result.setSuccessIsSet(true); try { @@ -7720,7 +7693,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenWithScan_result result = new scannerOpenWithScan_result(); + scannerOpenWithStop_result result = new scannerOpenWithStop_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7752,25 +7725,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenWithScan_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenWithScan(args.tableName, args.scan, args.attributes,resultHandler); + public void start(I iface, scannerOpenWithStop_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenWithStop(args.tableName, args.startRow, args.stopRow, args.columns, args.attributes,resultHandler); } } - public static class scannerOpen extends org.apache.thrift.AsyncProcessFunction { - public scannerOpen() { - super("scannerOpen"); + public static class scannerOpenWithPrefix extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenWithPrefix() { + super("scannerOpenWithPrefix"); } - public scannerOpen_args getEmptyArgsInstance() { - return new scannerOpen_args(); + public scannerOpenWithPrefix_args getEmptyArgsInstance() { + return new scannerOpenWithPrefix_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(java.lang.Integer o) { - scannerOpen_result result = new scannerOpen_result(); + scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result(); result.success = o; result.setSuccessIsSet(true); try { @@ -7786,7 +7759,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpen_result result = new scannerOpen_result(); + scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7818,25 +7791,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpen_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpen(args.tableName, args.startRow, args.columns, args.attributes,resultHandler); + public void start(I iface, scannerOpenWithPrefix_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenWithPrefix(args.tableName, args.startAndPrefix, args.columns, args.attributes,resultHandler); } } - public static class scannerOpenWithStop extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenWithStop() { - super("scannerOpenWithStop"); + public static class scannerOpenTs extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenTs() { + super("scannerOpenTs"); } - public scannerOpenWithStop_args getEmptyArgsInstance() { - return new scannerOpenWithStop_args(); + public scannerOpenTs_args getEmptyArgsInstance() { + return new scannerOpenTs_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(java.lang.Integer o) { - scannerOpenWithStop_result result = new scannerOpenWithStop_result(); + scannerOpenTs_result result = new scannerOpenTs_result(); result.success = o; result.setSuccessIsSet(true); try { @@ -7852,7 +7825,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenWithStop_result result = new scannerOpenWithStop_result(); + scannerOpenTs_result result = new scannerOpenTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7884,25 +7857,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenWithStop_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenWithStop(args.tableName, args.startRow, args.stopRow, args.columns, args.attributes,resultHandler); + public void start(I iface, scannerOpenTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenTs(args.tableName, args.startRow, args.columns, args.timestamp, args.attributes,resultHandler); } } - public static class scannerOpenWithPrefix extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenWithPrefix() { - super("scannerOpenWithPrefix"); + public static class scannerOpenWithStopTs extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenWithStopTs() { + super("scannerOpenWithStopTs"); } - public scannerOpenWithPrefix_args getEmptyArgsInstance() { - return new scannerOpenWithPrefix_args(); + public scannerOpenWithStopTs_args getEmptyArgsInstance() { + return new scannerOpenWithStopTs_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(java.lang.Integer o) { - scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result(); + scannerOpenWithStopTs_result result = new scannerOpenWithStopTs_result(); result.success = o; result.setSuccessIsSet(true); try { @@ -7918,7 +7891,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result(); + scannerOpenWithStopTs_result result = new scannerOpenWithStopTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7950,27 +7923,26 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenWithPrefix_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenWithPrefix(args.tableName, args.startAndPrefix, args.columns, args.attributes,resultHandler); + public void start(I iface, scannerOpenWithStopTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenWithStopTs(args.tableName, args.startRow, args.stopRow, args.columns, args.timestamp, args.attributes,resultHandler); } } - public static class scannerOpenTs extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenTs() { - super("scannerOpenTs"); + public static class scannerGet extends org.apache.thrift.AsyncProcessFunction> { + public scannerGet() { + super("scannerGet"); } - public scannerOpenTs_args getEmptyArgsInstance() { - return new scannerOpenTs_args(); + public scannerGet_args getEmptyArgsInstance() { + return new scannerGet_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(java.lang.Integer o) { - scannerOpenTs_result result = new scannerOpenTs_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + scannerGet_result result = new scannerGet_result(); result.success = o; - result.setSuccessIsSet(true); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7984,11 +7956,15 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenTs_result result = new scannerOpenTs_result(); + scannerGet_result result = new scannerGet_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); + msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -8016,27 +7992,26 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenTs(args.tableName, args.startRow, args.columns, args.timestamp, args.attributes,resultHandler); + public void start(I iface, scannerGet_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.scannerGet(args.id,resultHandler); } } - public static class scannerOpenWithStopTs extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenWithStopTs() { - super("scannerOpenWithStopTs"); + public static class scannerGetList extends org.apache.thrift.AsyncProcessFunction> { + public scannerGetList() { + super("scannerGetList"); } - public scannerOpenWithStopTs_args getEmptyArgsInstance() { - return new scannerOpenWithStopTs_args(); + public scannerGetList_args getEmptyArgsInstance() { + return new scannerGetList_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(java.lang.Integer o) { - scannerOpenWithStopTs_result result = new scannerOpenWithStopTs_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + scannerGetList_result result = new scannerGetList_result(); result.success = o; - result.setSuccessIsSet(true); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -8050,11 +8025,15 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenWithStopTs_result result = new scannerOpenWithStopTs_result(); + scannerGetList_result result = new scannerGetList_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); + msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -8082,26 +8061,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenWithStopTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenWithStopTs(args.tableName, args.startRow, args.stopRow, args.columns, args.timestamp, args.attributes,resultHandler); + public void start(I iface, scannerGetList_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.scannerGetList(args.id, args.nbRows,resultHandler); } } - public static class scannerGet extends org.apache.thrift.AsyncProcessFunction> { - public scannerGet() { - super("scannerGet"); + public static class scannerClose extends org.apache.thrift.AsyncProcessFunction { + public scannerClose() { + super("scannerClose"); } - public scannerGet_args getEmptyArgsInstance() { - return new scannerGet_args(); + public scannerClose_args getEmptyArgsInstance() { + return new scannerClose_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - scannerGet_result result = new scannerGet_result(); - result.success = o; + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + scannerClose_result result = new scannerClose_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -8115,144 +8093,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerGet_result result = new scannerGet_result(); - if (e instanceof IOError) { - result.io = (IOError) e; - result.setIoIsSet(true); - msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; - } else if (e instanceof org.apache.thrift.transport.TTransportException) { - _LOGGER.error("TTransportException inside handler", e); - fb.close(); - return; - } else if (e instanceof org.apache.thrift.TApplicationException) { - _LOGGER.error("TApplicationException inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = (org.apache.thrift.TApplicationException)e; - } else { - _LOGGER.error("Exception inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); - } - try { - fcall.sendResponse(fb,msg,msgType,seqid); - } catch (java.lang.Exception ex) { - _LOGGER.error("Exception writing to internal frame buffer", ex); - fb.close(); - } - } - }; - } - - protected boolean isOneway() { - return false; - } - - public void start(I iface, scannerGet_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.scannerGet(args.id,resultHandler); - } - } - - public static class scannerGetList extends org.apache.thrift.AsyncProcessFunction> { - public scannerGetList() { - super("scannerGetList"); - } - - public scannerGetList_args getEmptyArgsInstance() { - return new scannerGetList_args(); - } - - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { - final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - scannerGetList_result result = new scannerGetList_result(); - result.success = o; - try { - fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); - } catch (org.apache.thrift.transport.TTransportException e) { - _LOGGER.error("TTransportException writing to internal frame buffer", e); - fb.close(); - } catch (java.lang.Exception e) { - _LOGGER.error("Exception writing to internal frame buffer", e); - onError(e); - } - } - public void onError(java.lang.Exception e) { - byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; - org.apache.thrift.TSerializable msg; - scannerGetList_result result = new scannerGetList_result(); - if (e instanceof IOError) { - result.io = (IOError) e; - result.setIoIsSet(true); - msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; - } else if (e instanceof org.apache.thrift.transport.TTransportException) { - _LOGGER.error("TTransportException inside handler", e); - fb.close(); - return; - } else if (e instanceof org.apache.thrift.TApplicationException) { - _LOGGER.error("TApplicationException inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = (org.apache.thrift.TApplicationException)e; - } else { - _LOGGER.error("Exception inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); - } - try { - fcall.sendResponse(fb,msg,msgType,seqid); - } catch (java.lang.Exception ex) { - _LOGGER.error("Exception writing to internal frame buffer", ex); - fb.close(); - } - } - }; - } - - protected boolean isOneway() { - return false; - } - - public void start(I iface, scannerGetList_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.scannerGetList(args.id, args.nbRows,resultHandler); - } - } - - public static class scannerClose extends org.apache.thrift.AsyncProcessFunction { - public scannerClose() { - super("scannerClose"); - } - - public scannerClose_args getEmptyArgsInstance() { - return new scannerClose_args(); - } - - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { - final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - scannerClose_result result = new scannerClose_result(); - try { - fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); - } catch (org.apache.thrift.transport.TTransportException e) { - _LOGGER.error("TTransportException writing to internal frame buffer", e); - fb.close(); - } catch (java.lang.Exception e) { - _LOGGER.error("Exception writing to internal frame buffer", e); - onError(e); - } - } - public void onError(java.lang.Exception e) { - byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; - org.apache.thrift.TSerializable msg; - scannerClose_result result = new scannerClose_result(); + scannerClose_result result = new scannerClose_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -9453,764 +9294,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, enableTable_result struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, enableTable_result struct) throws org.apache.thrift.TException { - struct.validate(); - - oprot.writeStructBegin(STRUCT_DESC); - if (struct.io != null) { - oprot.writeFieldBegin(IO_FIELD_DESC); - struct.io.write(oprot); - oprot.writeFieldEnd(); - } - oprot.writeFieldStop(); - oprot.writeStructEnd(); - } - - } - - private static class enableTable_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public enableTable_resultTupleScheme getScheme() { - return new enableTable_resultTupleScheme(); - } - } - - private static class enableTable_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { - - @Override - public void write(org.apache.thrift.protocol.TProtocol prot, enableTable_result struct) throws org.apache.thrift.TException { - org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetIo()) { - optionals.set(0); - } - oprot.writeBitSet(optionals, 1); - if (struct.isSetIo()) { - struct.io.write(oprot); - } - } - - @Override - public void read(org.apache.thrift.protocol.TProtocol prot, enableTable_result struct) throws org.apache.thrift.TException { - org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(1); - if (incoming.get(0)) { - struct.io = new IOError(); - struct.io.read(iprot); - struct.setIoIsSet(true); - } - } - } - - private static S scheme(org.apache.thrift.protocol.TProtocol proto) { - return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); - } - } - - public static class disableTable_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("disableTable_args"); - - private static final org.apache.thrift.protocol.TField TABLE_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableName", org.apache.thrift.protocol.TType.STRING, (short)1); - - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new disableTable_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new disableTable_argsTupleSchemeFactory(); - - /** - * name of the table - */ - public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName; // required - - /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ - public enum _Fields implements org.apache.thrift.TFieldIdEnum { - /** - * name of the table - */ - TABLE_NAME((short)1, "tableName"); - - private static final java.util.Map byName = new java.util.HashMap(); - - static { - for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { - byName.put(field.getFieldName(), field); - } - } - - /** - * Find the _Fields constant that matches fieldId, or null if its not found. - */ - @org.apache.thrift.annotation.Nullable - public static _Fields findByThriftId(int fieldId) { - switch(fieldId) { - case 1: // TABLE_NAME - return TABLE_NAME; - default: - return null; - } - } - - /** - * Find the _Fields constant that matches fieldId, throwing an exception - * if it is not found. - */ - public static _Fields findByThriftIdOrThrow(int fieldId) { - _Fields fields = findByThriftId(fieldId); - if (fields == null) throw new java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); - return fields; - } - - /** - * Find the _Fields constant that matches name, or null if its not found. - */ - @org.apache.thrift.annotation.Nullable - public static _Fields findByName(java.lang.String name) { - return byName.get(name); - } - - private final short _thriftId; - private final java.lang.String _fieldName; - - _Fields(short thriftId, java.lang.String fieldName) { - _thriftId = thriftId; - _fieldName = fieldName; - } - - public short getThriftFieldId() { - return _thriftId; - } - - public java.lang.String getFieldName() { - return _fieldName; - } - } - - // isset id assignments - public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; - static { - java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.TABLE_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableName", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); - metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(disableTable_args.class, metaDataMap); - } - - public disableTable_args() { - } - - public disableTable_args( - java.nio.ByteBuffer tableName) - { - this(); - this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); - } - - /** - * Performs a deep copy on other. - */ - public disableTable_args(disableTable_args other) { - if (other.isSetTableName()) { - this.tableName = org.apache.thrift.TBaseHelper.copyBinary(other.tableName); - } - } - - public disableTable_args deepCopy() { - return new disableTable_args(this); - } - - @Override - public void clear() { - this.tableName = null; - } - - /** - * name of the table - */ - public byte[] getTableName() { - setTableName(org.apache.thrift.TBaseHelper.rightSize(tableName)); - return tableName == null ? null : tableName.array(); - } - - public java.nio.ByteBuffer bufferForTableName() { - return org.apache.thrift.TBaseHelper.copyBinary(tableName); - } - - /** - * name of the table - */ - public disableTable_args setTableName(byte[] tableName) { - this.tableName = tableName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableName.clone()); - return this; - } - - public disableTable_args setTableName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName) { - this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); - return this; - } - - public void unsetTableName() { - this.tableName = null; - } - - /** Returns true if field tableName is set (has been assigned a value) and false otherwise */ - public boolean isSetTableName() { - return this.tableName != null; - } - - public void setTableNameIsSet(boolean value) { - if (!value) { - this.tableName = null; - } - } - - public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { - switch (field) { - case TABLE_NAME: - if (value == null) { - unsetTableName(); - } else { - if (value instanceof byte[]) { - setTableName((byte[])value); - } else { - setTableName((java.nio.ByteBuffer)value); - } - } - break; - - } - } - - @org.apache.thrift.annotation.Nullable - public java.lang.Object getFieldValue(_Fields field) { - switch (field) { - case TABLE_NAME: - return getTableName(); - - } - throw new java.lang.IllegalStateException(); - } - - /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ - public boolean isSet(_Fields field) { - if (field == null) { - throw new java.lang.IllegalArgumentException(); - } - - switch (field) { - case TABLE_NAME: - return isSetTableName(); - } - throw new java.lang.IllegalStateException(); - } - - @Override - public boolean equals(java.lang.Object that) { - if (that instanceof disableTable_args) - return this.equals((disableTable_args)that); - return false; - } - - public boolean equals(disableTable_args that) { - if (that == null) - return false; - if (this == that) - return true; - - boolean this_present_tableName = true && this.isSetTableName(); - boolean that_present_tableName = true && that.isSetTableName(); - if (this_present_tableName || that_present_tableName) { - if (!(this_present_tableName && that_present_tableName)) - return false; - if (!this.tableName.equals(that.tableName)) - return false; - } - - return true; - } - - @Override - public int hashCode() { - int hashCode = 1; - - hashCode = hashCode * 8191 + ((isSetTableName()) ? 131071 : 524287); - if (isSetTableName()) - hashCode = hashCode * 8191 + tableName.hashCode(); - - return hashCode; - } - - @Override - public int compareTo(disableTable_args other) { - if (!getClass().equals(other.getClass())) { - return getClass().getName().compareTo(other.getClass().getName()); - } - - int lastComparison = 0; - - lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTableName()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableName, other.tableName); - if (lastComparison != 0) { - return lastComparison; - } - } - return 0; - } - - @org.apache.thrift.annotation.Nullable - public _Fields fieldForId(int fieldId) { - return _Fields.findByThriftId(fieldId); - } - - public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { - scheme(iprot).read(iprot, this); - } - - public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { - scheme(oprot).write(oprot, this); - } - - @Override - public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("disableTable_args("); - boolean first = true; - - sb.append("tableName:"); - if (this.tableName == null) { - sb.append("null"); - } else { - org.apache.thrift.TBaseHelper.toString(this.tableName, sb); - } - first = false; - sb.append(")"); - return sb.toString(); - } - - public void validate() throws org.apache.thrift.TException { - // check for required fields - // check for sub-struct validity - } - - private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { - try { - write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out))); - } catch (org.apache.thrift.TException te) { - throw new java.io.IOException(te); - } - } - - private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException { - try { - read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); - } catch (org.apache.thrift.TException te) { - throw new java.io.IOException(te); - } - } - - private static class disableTable_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public disableTable_argsStandardScheme getScheme() { - return new disableTable_argsStandardScheme(); - } - } - - private static class disableTable_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - - public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_args struct) throws org.apache.thrift.TException { - org.apache.thrift.protocol.TField schemeField; - iprot.readStructBegin(); - while (true) - { - schemeField = iprot.readFieldBegin(); - if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { - break; - } - switch (schemeField.id) { - case 1: // TABLE_NAME - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tableName = iprot.readBinary(); - struct.setTableNameIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - default: - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - iprot.readFieldEnd(); - } - iprot.readStructEnd(); - - // check for required fields of primitive type, which can't be checked in the validate method - struct.validate(); - } - - public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_args struct) throws org.apache.thrift.TException { - struct.validate(); - - oprot.writeStructBegin(STRUCT_DESC); - if (struct.tableName != null) { - oprot.writeFieldBegin(TABLE_NAME_FIELD_DESC); - oprot.writeBinary(struct.tableName); - oprot.writeFieldEnd(); - } - oprot.writeFieldStop(); - oprot.writeStructEnd(); - } - - } - - private static class disableTable_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public disableTable_argsTupleScheme getScheme() { - return new disableTable_argsTupleScheme(); - } - } - - private static class disableTable_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { - - @Override - public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_args struct) throws org.apache.thrift.TException { - org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetTableName()) { - optionals.set(0); - } - oprot.writeBitSet(optionals, 1); - if (struct.isSetTableName()) { - oprot.writeBinary(struct.tableName); - } - } - - @Override - public void read(org.apache.thrift.protocol.TProtocol prot, disableTable_args struct) throws org.apache.thrift.TException { - org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(1); - if (incoming.get(0)) { - struct.tableName = iprot.readBinary(); - struct.setTableNameIsSet(true); - } - } - } - - private static S scheme(org.apache.thrift.protocol.TProtocol proto) { - return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); - } - } - - public static class disableTable_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("disableTable_result"); - - private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new disableTable_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new disableTable_resultTupleSchemeFactory(); - - public @org.apache.thrift.annotation.Nullable IOError io; // required - - /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ - public enum _Fields implements org.apache.thrift.TFieldIdEnum { - IO((short)1, "io"); - - private static final java.util.Map byName = new java.util.HashMap(); - - static { - for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { - byName.put(field.getFieldName(), field); - } - } - - /** - * Find the _Fields constant that matches fieldId, or null if its not found. - */ - @org.apache.thrift.annotation.Nullable - public static _Fields findByThriftId(int fieldId) { - switch(fieldId) { - case 1: // IO - return IO; - default: - return null; - } - } - - /** - * Find the _Fields constant that matches fieldId, throwing an exception - * if it is not found. - */ - public static _Fields findByThriftIdOrThrow(int fieldId) { - _Fields fields = findByThriftId(fieldId); - if (fields == null) throw new java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); - return fields; - } - - /** - * Find the _Fields constant that matches name, or null if its not found. - */ - @org.apache.thrift.annotation.Nullable - public static _Fields findByName(java.lang.String name) { - return byName.get(name); - } - - private final short _thriftId; - private final java.lang.String _fieldName; - - _Fields(short thriftId, java.lang.String fieldName) { - _thriftId = thriftId; - _fieldName = fieldName; - } - - public short getThriftFieldId() { - return _thriftId; - } - - public java.lang.String getFieldName() { - return _fieldName; - } - } - - // isset id assignments - public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; - static { - java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); - metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(disableTable_result.class, metaDataMap); - } - - public disableTable_result() { - } - - public disableTable_result( - IOError io) - { - this(); - this.io = io; - } - - /** - * Performs a deep copy on other. - */ - public disableTable_result(disableTable_result other) { - if (other.isSetIo()) { - this.io = new IOError(other.io); - } - } - - public disableTable_result deepCopy() { - return new disableTable_result(this); - } - - @Override - public void clear() { - this.io = null; - } - - @org.apache.thrift.annotation.Nullable - public IOError getIo() { - return this.io; - } - - public disableTable_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { - this.io = io; - return this; - } - - public void unsetIo() { - this.io = null; - } - - /** Returns true if field io is set (has been assigned a value) and false otherwise */ - public boolean isSetIo() { - return this.io != null; - } - - public void setIoIsSet(boolean value) { - if (!value) { - this.io = null; - } - } - - public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { - switch (field) { - case IO: - if (value == null) { - unsetIo(); - } else { - setIo((IOError)value); - } - break; - - } - } - - @org.apache.thrift.annotation.Nullable - public java.lang.Object getFieldValue(_Fields field) { - switch (field) { - case IO: - return getIo(); - - } - throw new java.lang.IllegalStateException(); - } - - /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ - public boolean isSet(_Fields field) { - if (field == null) { - throw new java.lang.IllegalArgumentException(); - } - - switch (field) { - case IO: - return isSetIo(); - } - throw new java.lang.IllegalStateException(); - } - - @Override - public boolean equals(java.lang.Object that) { - if (that instanceof disableTable_result) - return this.equals((disableTable_result)that); - return false; - } - - public boolean equals(disableTable_result that) { - if (that == null) - return false; - if (this == that) - return true; - - boolean this_present_io = true && this.isSetIo(); - boolean that_present_io = true && that.isSetIo(); - if (this_present_io || that_present_io) { - if (!(this_present_io && that_present_io)) - return false; - if (!this.io.equals(that.io)) - return false; - } - - return true; - } - - @Override - public int hashCode() { - int hashCode = 1; - - hashCode = hashCode * 8191 + ((isSetIo()) ? 131071 : 524287); - if (isSetIo()) - hashCode = hashCode * 8191 + io.hashCode(); - - return hashCode; - } - - @Override - public int compareTo(disableTable_result other) { - if (!getClass().equals(other.getClass())) { - return getClass().getName().compareTo(other.getClass().getName()); - } - - int lastComparison = 0; - - lastComparison = java.lang.Boolean.compare(isSetIo(), other.isSetIo()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetIo()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.io, other.io); - if (lastComparison != 0) { - return lastComparison; - } - } - return 0; - } - - @org.apache.thrift.annotation.Nullable - public _Fields fieldForId(int fieldId) { - return _Fields.findByThriftId(fieldId); - } - - public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { - scheme(iprot).read(iprot, this); - } - - public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { - scheme(oprot).write(oprot, this); - } - - @Override - public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("disableTable_result("); - boolean first = true; - - sb.append("io:"); - if (this.io == null) { - sb.append("null"); - } else { - sb.append(this.io); - } - first = false; - sb.append(")"); - return sb.toString(); - } - - public void validate() throws org.apache.thrift.TException { - // check for required fields - // check for sub-struct validity - } - - private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { - try { - write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out))); - } catch (org.apache.thrift.TException te) { - throw new java.io.IOException(te); - } - } - - private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException { - try { - read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); - } catch (org.apache.thrift.TException te) { - throw new java.io.IOException(te); - } - } - - private static class disableTable_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public disableTable_resultStandardScheme getScheme() { - return new disableTable_resultStandardScheme(); - } - } - - private static class disableTable_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - - public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_result struct) throws org.apache.thrift.TException { - org.apache.thrift.protocol.TField schemeField; - iprot.readStructBegin(); - while (true) - { - schemeField = iprot.readFieldBegin(); - if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { - break; - } - switch (schemeField.id) { - case 1: // IO - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.io = new IOError(); - struct.io.read(iprot); - struct.setIoIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - default: - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - iprot.readFieldEnd(); - } - iprot.readStructEnd(); - - // check for required fields of primitive type, which can't be checked in the validate method - struct.validate(); - } - - public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, enableTable_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -10225,16 +9309,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_resul } - private static class disableTable_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public disableTable_resultTupleScheme getScheme() { - return new disableTable_resultTupleScheme(); + private static class enableTable_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public enableTable_resultTupleScheme getScheme() { + return new enableTable_resultTupleScheme(); } } - private static class disableTable_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class enableTable_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, enableTable_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetIo()) { @@ -10247,7 +9331,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, disableTable_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, enableTable_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { @@ -10263,23 +9347,23 @@ private static S scheme(org.apache. } } - public static class isTableEnabled_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isTableEnabled_args"); + public static class disableTable_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("disableTable_args"); private static final org.apache.thrift.protocol.TField TABLE_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableName", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new isTableEnabled_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new isTableEnabled_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new disableTable_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new disableTable_argsTupleSchemeFactory(); /** - * name of the table to check + * name of the table */ public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { /** - * name of the table to check + * name of the table */ TABLE_NAME((short)1, "tableName"); @@ -10346,13 +9430,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.TABLE_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableName", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(isTableEnabled_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(disableTable_args.class, metaDataMap); } - public isTableEnabled_args() { + public disableTable_args() { } - public isTableEnabled_args( + public disableTable_args( java.nio.ByteBuffer tableName) { this(); @@ -10362,14 +9446,14 @@ public isTableEnabled_args( /** * Performs a deep copy on other. */ - public isTableEnabled_args(isTableEnabled_args other) { + public disableTable_args(disableTable_args other) { if (other.isSetTableName()) { this.tableName = org.apache.thrift.TBaseHelper.copyBinary(other.tableName); } } - public isTableEnabled_args deepCopy() { - return new isTableEnabled_args(this); + public disableTable_args deepCopy() { + return new disableTable_args(this); } @Override @@ -10378,7 +9462,7 @@ public void clear() { } /** - * name of the table to check + * name of the table */ public byte[] getTableName() { setTableName(org.apache.thrift.TBaseHelper.rightSize(tableName)); @@ -10390,14 +9474,14 @@ public java.nio.ByteBuffer bufferForTableName() { } /** - * name of the table to check + * name of the table */ - public isTableEnabled_args setTableName(byte[] tableName) { + public disableTable_args setTableName(byte[] tableName) { this.tableName = tableName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableName.clone()); return this; } - public isTableEnabled_args setTableName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName) { + public disableTable_args setTableName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName) { this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); return this; } @@ -10459,12 +9543,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof isTableEnabled_args) - return this.equals((isTableEnabled_args)that); + if (that instanceof disableTable_args) + return this.equals((disableTable_args)that); return false; } - public boolean equals(isTableEnabled_args that) { + public boolean equals(disableTable_args that) { if (that == null) return false; if (this == that) @@ -10494,7 +9578,7 @@ public int hashCode() { } @Override - public int compareTo(isTableEnabled_args other) { + public int compareTo(disableTable_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -10529,7 +9613,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("isTableEnabled_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("disableTable_args("); boolean first = true; sb.append("tableName:"); @@ -10564,15 +9648,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class isTableEnabled_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public isTableEnabled_argsStandardScheme getScheme() { - return new isTableEnabled_argsStandardScheme(); + private static class disableTable_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public disableTable_argsStandardScheme getScheme() { + return new disableTable_argsStandardScheme(); } } - private static class isTableEnabled_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class disableTable_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -10601,7 +9685,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_args struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -10616,16 +9700,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_arg } - private static class isTableEnabled_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public isTableEnabled_argsTupleScheme getScheme() { - return new isTableEnabled_argsTupleScheme(); + private static class disableTable_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public disableTable_argsTupleScheme getScheme() { + return new disableTable_argsTupleScheme(); } } - private static class isTableEnabled_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class disableTable_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetTableName()) { @@ -10638,7 +9722,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, disableTable_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { @@ -10653,21 +9737,18 @@ private static S scheme(org.apache. } } - public static class isTableEnabled_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isTableEnabled_result"); + public static class disableTable_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("disableTable_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.BOOL, (short)0); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new isTableEnabled_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new isTableEnabled_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new disableTable_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new disableTable_resultTupleSchemeFactory(); - public boolean success; // required public @org.apache.thrift.annotation.Nullable IOError io; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { - SUCCESS((short)0, "success"), IO((short)1, "io"); private static final java.util.Map byName = new java.util.HashMap(); @@ -10684,8 +9765,6 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 0: // SUCCESS - return SUCCESS; case 1: // IO return IO; default: @@ -10729,83 +9808,49 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(isTableEnabled_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(disableTable_result.class, metaDataMap); } - public isTableEnabled_result() { + public disableTable_result() { } - public isTableEnabled_result( - boolean success, + public disableTable_result( IOError io) { this(); - this.success = success; - setSuccessIsSet(true); this.io = io; } /** * Performs a deep copy on other. */ - public isTableEnabled_result(isTableEnabled_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public disableTable_result(disableTable_result other) { if (other.isSetIo()) { this.io = new IOError(other.io); } } - public isTableEnabled_result deepCopy() { - return new isTableEnabled_result(this); + public disableTable_result deepCopy() { + return new disableTable_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = false; this.io = null; } - public boolean isSuccess() { - return this.success; - } - - public isTableEnabled_result setSuccess(boolean success) { - this.success = success; - setSuccessIsSet(true); - return this; - } - - public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - /** Returns true if field success is set (has been assigned a value) and false otherwise */ - public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public IOError getIo() { return this.io; } - public isTableEnabled_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public disableTable_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -10827,14 +9872,6 @@ public void setIoIsSet(boolean value) { public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((java.lang.Boolean)value); - } - break; - case IO: if (value == null) { unsetIo(); @@ -10849,9 +9886,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case SUCCESS: - return isSuccess(); - case IO: return getIo(); @@ -10866,8 +9900,6 @@ public boolean isSet(_Fields field) { } switch (field) { - case SUCCESS: - return isSetSuccess(); case IO: return isSetIo(); } @@ -10876,26 +9908,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof isTableEnabled_result) - return this.equals((isTableEnabled_result)that); + if (that instanceof disableTable_result) + return this.equals((disableTable_result)that); return false; } - public boolean equals(isTableEnabled_result that) { + public boolean equals(disableTable_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; - if (this_present_success || that_present_success) { - if (!(this_present_success && that_present_success)) - return false; - if (this.success != that.success) - return false; - } - boolean this_present_io = true && this.isSetIo(); boolean that_present_io = true && that.isSetIo(); if (this_present_io || that_present_io) { @@ -10912,8 +9935,6 @@ public boolean equals(isTableEnabled_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); - hashCode = hashCode * 8191 + ((isSetIo()) ? 131071 : 524287); if (isSetIo()) hashCode = hashCode * 8191 + io.hashCode(); @@ -10922,23 +9943,13 @@ public int hashCode() { } @Override - public int compareTo(isTableEnabled_result other) { + public int compareTo(disableTable_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetSuccess()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetIo(), other.isSetIo()); if (lastComparison != 0) { return lastComparison; @@ -10967,13 +9978,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("isTableEnabled_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("disableTable_result("); boolean first = true; - sb.append("success:"); - sb.append(this.success); - first = false; - if (!first) sb.append(", "); sb.append("io:"); if (this.io == null) { sb.append("null"); @@ -11000,23 +10007,21 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException { try { - // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor. - __isset_bitfield = 0; read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); } catch (org.apache.thrift.TException te) { throw new java.io.IOException(te); } } - private static class isTableEnabled_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public isTableEnabled_resultStandardScheme getScheme() { - return new isTableEnabled_resultStandardScheme(); + private static class disableTable_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public disableTable_resultStandardScheme getScheme() { + return new disableTable_resultStandardScheme(); } } - private static class isTableEnabled_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class disableTable_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -11026,14 +10031,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_resu break; } switch (schemeField.id) { - case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.success = iprot.readBool(); - struct.setSuccessIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; case 1: // IO if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.io = new IOError(); @@ -11054,15 +10051,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_resu struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { - oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeBool(struct.success); - oprot.writeFieldEnd(); - } if (struct.io != null) { oprot.writeFieldBegin(IO_FIELD_DESC); struct.io.write(oprot); @@ -11074,42 +10066,32 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_res } - private static class isTableEnabled_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public isTableEnabled_resultTupleScheme getScheme() { - return new isTableEnabled_resultTupleScheme(); + private static class disableTable_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public disableTable_resultTupleScheme getScheme() { + return new disableTable_resultTupleScheme(); } } - private static class isTableEnabled_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class disableTable_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetSuccess()) { - optionals.set(0); - } if (struct.isSetIo()) { - optionals.set(1); - } - oprot.writeBitSet(optionals, 2); - if (struct.isSetSuccess()) { - oprot.writeBool(struct.success); + optionals.set(0); } + oprot.writeBitSet(optionals, 1); if (struct.isSetIo()) { struct.io.write(oprot); } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, disableTable_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(2); + java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { - struct.success = iprot.readBool(); - struct.setSuccessIsSet(true); - } - if (incoming.get(1)) { struct.io = new IOError(); struct.io.read(iprot); struct.setIoIsSet(true); @@ -11122,19 +10104,25 @@ private static S scheme(org.apache. } } - public static class compact_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("compact_args"); + public static class isTableEnabled_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isTableEnabled_args"); - private static final org.apache.thrift.protocol.TField TABLE_NAME_OR_REGION_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableNameOrRegionName", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField TABLE_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableName", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new compact_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new compact_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new isTableEnabled_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new isTableEnabled_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName; // required + /** + * name of the table to check + */ + public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { - TABLE_NAME_OR_REGION_NAME((short)1, "tableNameOrRegionName"); + /** + * name of the table to check + */ + TABLE_NAME((short)1, "tableName"); private static final java.util.Map byName = new java.util.HashMap(); @@ -11150,8 +10138,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // TABLE_NAME_OR_REGION_NAME - return TABLE_NAME_OR_REGION_NAME; + case 1: // TABLE_NAME + return TABLE_NAME; default: return null; } @@ -11196,84 +10184,90 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.TABLE_NAME_OR_REGION_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableNameOrRegionName", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.TABLE_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableName", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(compact_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(isTableEnabled_args.class, metaDataMap); } - public compact_args() { + public isTableEnabled_args() { } - public compact_args( - java.nio.ByteBuffer tableNameOrRegionName) + public isTableEnabled_args( + java.nio.ByteBuffer tableName) { this(); - this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); + this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); } /** * Performs a deep copy on other. */ - public compact_args(compact_args other) { - if (other.isSetTableNameOrRegionName()) { - this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(other.tableNameOrRegionName); + public isTableEnabled_args(isTableEnabled_args other) { + if (other.isSetTableName()) { + this.tableName = org.apache.thrift.TBaseHelper.copyBinary(other.tableName); } } - public compact_args deepCopy() { - return new compact_args(this); + public isTableEnabled_args deepCopy() { + return new isTableEnabled_args(this); } @Override public void clear() { - this.tableNameOrRegionName = null; + this.tableName = null; } - public byte[] getTableNameOrRegionName() { - setTableNameOrRegionName(org.apache.thrift.TBaseHelper.rightSize(tableNameOrRegionName)); - return tableNameOrRegionName == null ? null : tableNameOrRegionName.array(); + /** + * name of the table to check + */ + public byte[] getTableName() { + setTableName(org.apache.thrift.TBaseHelper.rightSize(tableName)); + return tableName == null ? null : tableName.array(); } - public java.nio.ByteBuffer bufferForTableNameOrRegionName() { - return org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); + public java.nio.ByteBuffer bufferForTableName() { + return org.apache.thrift.TBaseHelper.copyBinary(tableName); } - public compact_args setTableNameOrRegionName(byte[] tableNameOrRegionName) { - this.tableNameOrRegionName = tableNameOrRegionName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableNameOrRegionName.clone()); + /** + * name of the table to check + */ + public isTableEnabled_args setTableName(byte[] tableName) { + this.tableName = tableName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableName.clone()); return this; } - public compact_args setTableNameOrRegionName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName) { - this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); + public isTableEnabled_args setTableName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName) { + this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); return this; } - public void unsetTableNameOrRegionName() { - this.tableNameOrRegionName = null; + public void unsetTableName() { + this.tableName = null; } - /** Returns true if field tableNameOrRegionName is set (has been assigned a value) and false otherwise */ - public boolean isSetTableNameOrRegionName() { - return this.tableNameOrRegionName != null; + /** Returns true if field tableName is set (has been assigned a value) and false otherwise */ + public boolean isSetTableName() { + return this.tableName != null; } - public void setTableNameOrRegionNameIsSet(boolean value) { + public void setTableNameIsSet(boolean value) { if (!value) { - this.tableNameOrRegionName = null; + this.tableName = null; } } public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case TABLE_NAME_OR_REGION_NAME: + case TABLE_NAME: if (value == null) { - unsetTableNameOrRegionName(); + unsetTableName(); } else { if (value instanceof byte[]) { - setTableNameOrRegionName((byte[])value); + setTableName((byte[])value); } else { - setTableNameOrRegionName((java.nio.ByteBuffer)value); + setTableName((java.nio.ByteBuffer)value); } } break; @@ -11284,8 +10278,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case TABLE_NAME_OR_REGION_NAME: - return getTableNameOrRegionName(); + case TABLE_NAME: + return getTableName(); } throw new java.lang.IllegalStateException(); @@ -11298,31 +10292,31 @@ public boolean isSet(_Fields field) { } switch (field) { - case TABLE_NAME_OR_REGION_NAME: - return isSetTableNameOrRegionName(); + case TABLE_NAME: + return isSetTableName(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof compact_args) - return this.equals((compact_args)that); + if (that instanceof isTableEnabled_args) + return this.equals((isTableEnabled_args)that); return false; } - public boolean equals(compact_args that) { + public boolean equals(isTableEnabled_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_tableNameOrRegionName = true && this.isSetTableNameOrRegionName(); - boolean that_present_tableNameOrRegionName = true && that.isSetTableNameOrRegionName(); - if (this_present_tableNameOrRegionName || that_present_tableNameOrRegionName) { - if (!(this_present_tableNameOrRegionName && that_present_tableNameOrRegionName)) + boolean this_present_tableName = true && this.isSetTableName(); + boolean that_present_tableName = true && that.isSetTableName(); + if (this_present_tableName || that_present_tableName) { + if (!(this_present_tableName && that_present_tableName)) return false; - if (!this.tableNameOrRegionName.equals(that.tableNameOrRegionName)) + if (!this.tableName.equals(that.tableName)) return false; } @@ -11333,27 +10327,27 @@ public boolean equals(compact_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetTableNameOrRegionName()) ? 131071 : 524287); - if (isSetTableNameOrRegionName()) - hashCode = hashCode * 8191 + tableNameOrRegionName.hashCode(); + hashCode = hashCode * 8191 + ((isSetTableName()) ? 131071 : 524287); + if (isSetTableName()) + hashCode = hashCode * 8191 + tableName.hashCode(); return hashCode; } @Override - public int compareTo(compact_args other) { + public int compareTo(isTableEnabled_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetTableNameOrRegionName(), other.isSetTableNameOrRegionName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } - if (isSetTableNameOrRegionName()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableNameOrRegionName, other.tableNameOrRegionName); + if (isSetTableName()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableName, other.tableName); if (lastComparison != 0) { return lastComparison; } @@ -11376,14 +10370,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("compact_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("isTableEnabled_args("); boolean first = true; - sb.append("tableNameOrRegionName:"); - if (this.tableNameOrRegionName == null) { + sb.append("tableName:"); + if (this.tableName == null) { sb.append("null"); } else { - org.apache.thrift.TBaseHelper.toString(this.tableNameOrRegionName, sb); + org.apache.thrift.TBaseHelper.toString(this.tableName, sb); } first = false; sb.append(")"); @@ -11411,15 +10405,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class compact_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public compact_argsStandardScheme getScheme() { - return new compact_argsStandardScheme(); + private static class isTableEnabled_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public isTableEnabled_argsStandardScheme getScheme() { + return new isTableEnabled_argsStandardScheme(); } } - private static class compact_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class isTableEnabled_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, compact_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -11429,10 +10423,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, compact_args struct break; } switch (schemeField.id) { - case 1: // TABLE_NAME_OR_REGION_NAME + case 1: // TABLE_NAME if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tableNameOrRegionName = iprot.readBinary(); - struct.setTableNameOrRegionNameIsSet(true); + struct.tableName = iprot.readBinary(); + struct.setTableNameIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -11448,13 +10442,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, compact_args struct struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, compact_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.tableNameOrRegionName != null) { - oprot.writeFieldBegin(TABLE_NAME_OR_REGION_NAME_FIELD_DESC); - oprot.writeBinary(struct.tableNameOrRegionName); + if (struct.tableName != null) { + oprot.writeFieldBegin(TABLE_NAME_FIELD_DESC); + oprot.writeBinary(struct.tableName); oprot.writeFieldEnd(); } oprot.writeFieldStop(); @@ -11463,34 +10457,34 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, compact_args struc } - private static class compact_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public compact_argsTupleScheme getScheme() { - return new compact_argsTupleScheme(); + private static class isTableEnabled_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public isTableEnabled_argsTupleScheme getScheme() { + return new isTableEnabled_argsTupleScheme(); } } - private static class compact_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class isTableEnabled_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, compact_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetTableNameOrRegionName()) { + if (struct.isSetTableName()) { optionals.set(0); } oprot.writeBitSet(optionals, 1); - if (struct.isSetTableNameOrRegionName()) { - oprot.writeBinary(struct.tableNameOrRegionName); + if (struct.isSetTableName()) { + oprot.writeBinary(struct.tableName); } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, compact_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { - struct.tableNameOrRegionName = iprot.readBinary(); - struct.setTableNameOrRegionNameIsSet(true); + struct.tableName = iprot.readBinary(); + struct.setTableNameIsSet(true); } } } @@ -11500,18 +10494,21 @@ private static S scheme(org.apache. } } - public static class compact_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("compact_result"); + public static class isTableEnabled_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isTableEnabled_result"); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.BOOL, (short)0); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new compact_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new compact_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new isTableEnabled_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new isTableEnabled_resultTupleSchemeFactory(); + public boolean success; // required public @org.apache.thrift.annotation.Nullable IOError io; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { + SUCCESS((short)0, "success"), IO((short)1, "io"); private static final java.util.Map byName = new java.util.HashMap(); @@ -11528,6 +10525,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; case 1: // IO return IO; default: @@ -11571,49 +10570,83 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(compact_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(isTableEnabled_result.class, metaDataMap); } - public compact_result() { + public isTableEnabled_result() { } - public compact_result( + public isTableEnabled_result( + boolean success, IOError io) { this(); + this.success = success; + setSuccessIsSet(true); this.io = io; } /** * Performs a deep copy on other. */ - public compact_result(compact_result other) { + public isTableEnabled_result(isTableEnabled_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; if (other.isSetIo()) { this.io = new IOError(other.io); } } - public compact_result deepCopy() { - return new compact_result(this); + public isTableEnabled_result deepCopy() { + return new isTableEnabled_result(this); } @Override public void clear() { + setSuccessIsSet(false); + this.success = false; this.io = null; } + public boolean isSuccess() { + return this.success; + } + + public isTableEnabled_result setSuccess(boolean success) { + this.success = success; + setSuccessIsSet(true); + return this; + } + + public void unsetSuccess() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + /** Returns true if field success is set (has been assigned a value) and false otherwise */ + public boolean isSetSuccess() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + public void setSuccessIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + } + @org.apache.thrift.annotation.Nullable public IOError getIo() { return this.io; } - public compact_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public isTableEnabled_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -11635,6 +10668,14 @@ public void setIoIsSet(boolean value) { public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.lang.Boolean)value); + } + break; + case IO: if (value == null) { unsetIo(); @@ -11649,6 +10690,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case SUCCESS: + return isSuccess(); + case IO: return getIo(); @@ -11663,6 +10707,8 @@ public boolean isSet(_Fields field) { } switch (field) { + case SUCCESS: + return isSetSuccess(); case IO: return isSetIo(); } @@ -11671,17 +10717,26 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof compact_result) - return this.equals((compact_result)that); + if (that instanceof isTableEnabled_result) + return this.equals((isTableEnabled_result)that); return false; } - public boolean equals(compact_result that) { + public boolean equals(isTableEnabled_result that) { if (that == null) return false; if (this == that) return true; + boolean this_present_success = true; + boolean that_present_success = true; + if (this_present_success || that_present_success) { + if (!(this_present_success && that_present_success)) + return false; + if (this.success != that.success) + return false; + } + boolean this_present_io = true && this.isSetIo(); boolean that_present_io = true && that.isSetIo(); if (this_present_io || that_present_io) { @@ -11698,6 +10753,8 @@ public boolean equals(compact_result that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); + hashCode = hashCode * 8191 + ((isSetIo()) ? 131071 : 524287); if (isSetIo()) hashCode = hashCode * 8191 + io.hashCode(); @@ -11706,13 +10763,23 @@ public int hashCode() { } @Override - public int compareTo(compact_result other) { + public int compareTo(isTableEnabled_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSuccess()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetIo(), other.isSetIo()); if (lastComparison != 0) { return lastComparison; @@ -11741,9 +10808,13 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("compact_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("isTableEnabled_result("); boolean first = true; + sb.append("success:"); + sb.append(this.success); + first = false; + if (!first) sb.append(", "); sb.append("io:"); if (this.io == null) { sb.append("null"); @@ -11770,21 +10841,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException { try { + // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor. + __isset_bitfield = 0; read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); } catch (org.apache.thrift.TException te) { throw new java.io.IOException(te); } } - private static class compact_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public compact_resultStandardScheme getScheme() { - return new compact_resultStandardScheme(); + private static class isTableEnabled_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public isTableEnabled_resultStandardScheme getScheme() { + return new isTableEnabled_resultStandardScheme(); } } - private static class compact_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class isTableEnabled_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, compact_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -11794,6 +10867,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, compact_result stru break; } switch (schemeField.id) { + case 0: // SUCCESS + if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { + struct.success = iprot.readBool(); + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; case 1: // IO if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.io = new IOError(); @@ -11814,10 +10895,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, compact_result stru struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, compact_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.isSetSuccess()) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + oprot.writeBool(struct.success); + oprot.writeFieldEnd(); + } if (struct.io != null) { oprot.writeFieldBegin(IO_FIELD_DESC); struct.io.write(oprot); @@ -11829,32 +10915,42 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, compact_result str } - private static class compact_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public compact_resultTupleScheme getScheme() { - return new compact_resultTupleScheme(); + private static class isTableEnabled_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public isTableEnabled_resultTupleScheme getScheme() { + return new isTableEnabled_resultTupleScheme(); } } - private static class compact_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class isTableEnabled_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, compact_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetIo()) { + if (struct.isSetSuccess()) { optionals.set(0); } - oprot.writeBitSet(optionals, 1); + if (struct.isSetIo()) { + optionals.set(1); + } + oprot.writeBitSet(optionals, 2); + if (struct.isSetSuccess()) { + oprot.writeBool(struct.success); + } if (struct.isSetIo()) { struct.io.write(oprot); } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, compact_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(1); + java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { + struct.success = iprot.readBool(); + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { struct.io = new IOError(); struct.io.read(iprot); struct.setIoIsSet(true); @@ -11867,13 +10963,13 @@ private static S scheme(org.apache. } } - public static class majorCompact_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("majorCompact_args"); + public static class compact_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("compact_args"); private static final org.apache.thrift.protocol.TField TABLE_NAME_OR_REGION_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableNameOrRegionName", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new majorCompact_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new majorCompact_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new compact_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new compact_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName; // required @@ -11944,13 +11040,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.TABLE_NAME_OR_REGION_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableNameOrRegionName", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(majorCompact_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(compact_args.class, metaDataMap); } - public majorCompact_args() { + public compact_args() { } - public majorCompact_args( + public compact_args( java.nio.ByteBuffer tableNameOrRegionName) { this(); @@ -11960,14 +11056,14 @@ public majorCompact_args( /** * Performs a deep copy on other. */ - public majorCompact_args(majorCompact_args other) { + public compact_args(compact_args other) { if (other.isSetTableNameOrRegionName()) { this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(other.tableNameOrRegionName); } } - public majorCompact_args deepCopy() { - return new majorCompact_args(this); + public compact_args deepCopy() { + return new compact_args(this); } @Override @@ -11984,12 +11080,12 @@ public java.nio.ByteBuffer bufferForTableNameOrRegionName() { return org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); } - public majorCompact_args setTableNameOrRegionName(byte[] tableNameOrRegionName) { + public compact_args setTableNameOrRegionName(byte[] tableNameOrRegionName) { this.tableNameOrRegionName = tableNameOrRegionName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableNameOrRegionName.clone()); return this; } - public majorCompact_args setTableNameOrRegionName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName) { + public compact_args setTableNameOrRegionName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName) { this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); return this; } @@ -12051,12 +11147,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof majorCompact_args) - return this.equals((majorCompact_args)that); + if (that instanceof compact_args) + return this.equals((compact_args)that); return false; } - public boolean equals(majorCompact_args that) { + public boolean equals(compact_args that) { if (that == null) return false; if (this == that) @@ -12086,7 +11182,7 @@ public int hashCode() { } @Override - public int compareTo(majorCompact_args other) { + public int compareTo(compact_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -12121,7 +11217,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("majorCompact_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("compact_args("); boolean first = true; sb.append("tableNameOrRegionName:"); @@ -12156,15 +11252,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class majorCompact_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public majorCompact_argsStandardScheme getScheme() { - return new majorCompact_argsStandardScheme(); + private static class compact_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public compact_argsStandardScheme getScheme() { + return new compact_argsStandardScheme(); } } - private static class majorCompact_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class compact_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, compact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -12193,7 +11289,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_args s struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, compact_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -12208,16 +11304,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_args } - private static class majorCompact_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public majorCompact_argsTupleScheme getScheme() { - return new majorCompact_argsTupleScheme(); + private static class compact_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public compact_argsTupleScheme getScheme() { + return new compact_argsTupleScheme(); } } - private static class majorCompact_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class compact_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, compact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetTableNameOrRegionName()) { @@ -12230,7 +11326,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, majorCompact_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, compact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { @@ -12245,13 +11341,13 @@ private static S scheme(org.apache. } } - public static class majorCompact_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("majorCompact_result"); + public static class compact_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("compact_result"); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new majorCompact_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new majorCompact_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new compact_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new compact_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable IOError io; // required @@ -12322,13 +11418,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(majorCompact_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(compact_result.class, metaDataMap); } - public majorCompact_result() { + public compact_result() { } - public majorCompact_result( + public compact_result( IOError io) { this(); @@ -12338,14 +11434,14 @@ public majorCompact_result( /** * Performs a deep copy on other. */ - public majorCompact_result(majorCompact_result other) { + public compact_result(compact_result other) { if (other.isSetIo()) { this.io = new IOError(other.io); } } - public majorCompact_result deepCopy() { - return new majorCompact_result(this); + public compact_result deepCopy() { + return new compact_result(this); } @Override @@ -12358,7 +11454,7 @@ public IOError getIo() { return this.io; } - public majorCompact_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public compact_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -12416,12 +11512,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof majorCompact_result) - return this.equals((majorCompact_result)that); + if (that instanceof compact_result) + return this.equals((compact_result)that); return false; } - public boolean equals(majorCompact_result that) { + public boolean equals(compact_result that) { if (that == null) return false; if (this == that) @@ -12451,7 +11547,7 @@ public int hashCode() { } @Override - public int compareTo(majorCompact_result other) { + public int compareTo(compact_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -12486,7 +11582,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("majorCompact_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("compact_result("); boolean first = true; sb.append("io:"); @@ -12521,15 +11617,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class majorCompact_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public majorCompact_resultStandardScheme getScheme() { - return new majorCompact_resultStandardScheme(); + private static class compact_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public compact_resultStandardScheme getScheme() { + return new compact_resultStandardScheme(); } } - private static class majorCompact_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class compact_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, compact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -12559,7 +11655,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_result struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, compact_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -12574,16 +11670,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_resul } - private static class majorCompact_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public majorCompact_resultTupleScheme getScheme() { - return new majorCompact_resultTupleScheme(); + private static class compact_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public compact_resultTupleScheme getScheme() { + return new compact_resultTupleScheme(); } } - private static class majorCompact_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class compact_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, compact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetIo()) { @@ -12596,7 +11692,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, majorCompact_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, compact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { @@ -12612,17 +11708,19 @@ private static S scheme(org.apache. } } - public static class getTableNames_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNames_args"); + public static class majorCompact_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("majorCompact_args"); + private static final org.apache.thrift.protocol.TField TABLE_NAME_OR_REGION_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableNameOrRegionName", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNames_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNames_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new majorCompact_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new majorCompact_argsTupleSchemeFactory(); + public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { -; + TABLE_NAME_OR_REGION_NAME((short)1, "tableNameOrRegionName"); private static final java.util.Map byName = new java.util.HashMap(); @@ -12638,6 +11736,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 1: // TABLE_NAME_OR_REGION_NAME + return TABLE_NAME_OR_REGION_NAME; default: return null; } @@ -12677,38 +11777,102 @@ public java.lang.String getFieldName() { return _fieldName; } } + + // isset id assignments public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.TABLE_NAME_OR_REGION_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableNameOrRegionName", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNames_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(majorCompact_args.class, metaDataMap); } - public getTableNames_args() { + public majorCompact_args() { + } + + public majorCompact_args( + java.nio.ByteBuffer tableNameOrRegionName) + { + this(); + this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); } /** * Performs a deep copy on other. */ - public getTableNames_args(getTableNames_args other) { + public majorCompact_args(majorCompact_args other) { + if (other.isSetTableNameOrRegionName()) { + this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(other.tableNameOrRegionName); + } } - public getTableNames_args deepCopy() { - return new getTableNames_args(this); + public majorCompact_args deepCopy() { + return new majorCompact_args(this); } @Override public void clear() { + this.tableNameOrRegionName = null; + } + + public byte[] getTableNameOrRegionName() { + setTableNameOrRegionName(org.apache.thrift.TBaseHelper.rightSize(tableNameOrRegionName)); + return tableNameOrRegionName == null ? null : tableNameOrRegionName.array(); + } + + public java.nio.ByteBuffer bufferForTableNameOrRegionName() { + return org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); + } + + public majorCompact_args setTableNameOrRegionName(byte[] tableNameOrRegionName) { + this.tableNameOrRegionName = tableNameOrRegionName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableNameOrRegionName.clone()); + return this; + } + + public majorCompact_args setTableNameOrRegionName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName) { + this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); + return this; + } + + public void unsetTableNameOrRegionName() { + this.tableNameOrRegionName = null; + } + + /** Returns true if field tableNameOrRegionName is set (has been assigned a value) and false otherwise */ + public boolean isSetTableNameOrRegionName() { + return this.tableNameOrRegionName != null; + } + + public void setTableNameOrRegionNameIsSet(boolean value) { + if (!value) { + this.tableNameOrRegionName = null; + } } public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case TABLE_NAME_OR_REGION_NAME: + if (value == null) { + unsetTableNameOrRegionName(); + } else { + if (value instanceof byte[]) { + setTableNameOrRegionName((byte[])value); + } else { + setTableNameOrRegionName((java.nio.ByteBuffer)value); + } + } + break; + } } @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case TABLE_NAME_OR_REGION_NAME: + return getTableNameOrRegionName(); + } throw new java.lang.IllegalStateException(); } @@ -12720,23 +11884,34 @@ public boolean isSet(_Fields field) { } switch (field) { + case TABLE_NAME_OR_REGION_NAME: + return isSetTableNameOrRegionName(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof getTableNames_args) - return this.equals((getTableNames_args)that); + if (that instanceof majorCompact_args) + return this.equals((majorCompact_args)that); return false; } - public boolean equals(getTableNames_args that) { + public boolean equals(majorCompact_args that) { if (that == null) return false; if (this == that) return true; + boolean this_present_tableNameOrRegionName = true && this.isSetTableNameOrRegionName(); + boolean that_present_tableNameOrRegionName = true && that.isSetTableNameOrRegionName(); + if (this_present_tableNameOrRegionName || that_present_tableNameOrRegionName) { + if (!(this_present_tableNameOrRegionName && that_present_tableNameOrRegionName)) + return false; + if (!this.tableNameOrRegionName.equals(that.tableNameOrRegionName)) + return false; + } + return true; } @@ -12744,17 +11919,31 @@ public boolean equals(getTableNames_args that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((isSetTableNameOrRegionName()) ? 131071 : 524287); + if (isSetTableNameOrRegionName()) + hashCode = hashCode * 8191 + tableNameOrRegionName.hashCode(); + return hashCode; } @Override - public int compareTo(getTableNames_args other) { + public int compareTo(majorCompact_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetTableNameOrRegionName(), other.isSetTableNameOrRegionName()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTableNameOrRegionName()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableNameOrRegionName, other.tableNameOrRegionName); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -12773,9 +11962,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNames_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("majorCompact_args("); boolean first = true; + sb.append("tableNameOrRegionName:"); + if (this.tableNameOrRegionName == null) { + sb.append("null"); + } else { + org.apache.thrift.TBaseHelper.toString(this.tableNameOrRegionName, sb); + } + first = false; sb.append(")"); return sb.toString(); } @@ -12801,15 +11997,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getTableNames_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNames_argsStandardScheme getScheme() { - return new getTableNames_argsStandardScheme(); + private static class majorCompact_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public majorCompact_argsStandardScheme getScheme() { + return new majorCompact_argsStandardScheme(); } } - private static class getTableNames_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class majorCompact_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -12819,6 +12015,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_args break; } switch (schemeField.id) { + case 1: // TABLE_NAME_OR_REGION_NAME + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.tableNameOrRegionName = iprot.readBinary(); + struct.setTableNameOrRegionNameIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -12830,32 +12034,50 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_args struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.tableNameOrRegionName != null) { + oprot.writeFieldBegin(TABLE_NAME_OR_REGION_NAME_FIELD_DESC); + oprot.writeBinary(struct.tableNameOrRegionName); + oprot.writeFieldEnd(); + } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class getTableNames_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNames_argsTupleScheme getScheme() { - return new getTableNames_argsTupleScheme(); + private static class majorCompact_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public majorCompact_argsTupleScheme getScheme() { + return new majorCompact_argsTupleScheme(); } } - private static class getTableNames_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class majorCompact_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetTableNameOrRegionName()) { + optionals.set(0); + } + oprot.writeBitSet(optionals, 1); + if (struct.isSetTableNameOrRegionName()) { + oprot.writeBinary(struct.tableNameOrRegionName); + } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getTableNames_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, majorCompact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(1); + if (incoming.get(0)) { + struct.tableNameOrRegionName = iprot.readBinary(); + struct.setTableNameOrRegionNameIsSet(true); + } } } @@ -12864,21 +12086,18 @@ private static S scheme(org.apache. } } - public static class getTableNames_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNames_result"); + public static class majorCompact_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("majorCompact_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.LIST, (short)0); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNames_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNames_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new majorCompact_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new majorCompact_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List success; // required public @org.apache.thrift.annotation.Nullable IOError io; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { - SUCCESS((short)0, "success"), IO((short)1, "io"); private static final java.util.Map byName = new java.util.HashMap(); @@ -12895,8 +12114,6 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 0: // SUCCESS - return SUCCESS; case 1: // IO return IO; default: @@ -12943,100 +12160,46 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Text")))); tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNames_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(majorCompact_result.class, metaDataMap); } - public getTableNames_result() { + public majorCompact_result() { } - public getTableNames_result( - java.util.List success, + public majorCompact_result( IOError io) { this(); - this.success = success; this.io = io; } /** * Performs a deep copy on other. */ - public getTableNames_result(getTableNames_result other) { - if (other.isSetSuccess()) { - java.util.List __this__success = new java.util.ArrayList(other.success.size()); - for (java.nio.ByteBuffer other_element : other.success) { - __this__success.add(org.apache.thrift.TBaseHelper.copyBinary(other_element)); - } - this.success = __this__success; - } + public majorCompact_result(majorCompact_result other) { if (other.isSetIo()) { this.io = new IOError(other.io); } } - public getTableNames_result deepCopy() { - return new getTableNames_result(this); + public majorCompact_result deepCopy() { + return new majorCompact_result(this); } @Override public void clear() { - this.success = null; this.io = null; } - public int getSuccessSize() { - return (this.success == null) ? 0 : this.success.size(); - } - - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getSuccessIterator() { - return (this.success == null) ? null : this.success.iterator(); - } - - public void addToSuccess(java.nio.ByteBuffer elem) { - if (this.success == null) { - this.success = new java.util.ArrayList(); - } - this.success.add(elem); - } - - @org.apache.thrift.annotation.Nullable - public java.util.List getSuccess() { - return this.success; - } - - public getTableNames_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.List success) { - this.success = success; - return this; - } - - public void unsetSuccess() { - this.success = null; - } - - /** Returns true if field success is set (has been assigned a value) and false otherwise */ - public boolean isSetSuccess() { - return this.success != null; - } - - public void setSuccessIsSet(boolean value) { - if (!value) { - this.success = null; - } - } - @org.apache.thrift.annotation.Nullable public IOError getIo() { return this.io; } - public getTableNames_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public majorCompact_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -13058,14 +12221,6 @@ public void setIoIsSet(boolean value) { public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((java.util.List)value); - } - break; - case IO: if (value == null) { unsetIo(); @@ -13080,9 +12235,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case SUCCESS: - return getSuccess(); - case IO: return getIo(); @@ -13097,8 +12249,6 @@ public boolean isSet(_Fields field) { } switch (field) { - case SUCCESS: - return isSetSuccess(); case IO: return isSetIo(); } @@ -13107,26 +12257,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getTableNames_result) - return this.equals((getTableNames_result)that); + if (that instanceof majorCompact_result) + return this.equals((majorCompact_result)that); return false; } - public boolean equals(getTableNames_result that) { + public boolean equals(majorCompact_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true && this.isSetSuccess(); - boolean that_present_success = true && that.isSetSuccess(); - if (this_present_success || that_present_success) { - if (!(this_present_success && that_present_success)) - return false; - if (!this.success.equals(that.success)) - return false; - } - boolean this_present_io = true && this.isSetIo(); boolean that_present_io = true && that.isSetIo(); if (this_present_io || that_present_io) { @@ -13143,10 +12284,6 @@ public boolean equals(getTableNames_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); - if (isSetSuccess()) - hashCode = hashCode * 8191 + success.hashCode(); - hashCode = hashCode * 8191 + ((isSetIo()) ? 131071 : 524287); if (isSetIo()) hashCode = hashCode * 8191 + io.hashCode(); @@ -13155,23 +12292,13 @@ public int hashCode() { } @Override - public int compareTo(getTableNames_result other) { + public int compareTo(majorCompact_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetSuccess()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetIo(), other.isSetIo()); if (lastComparison != 0) { return lastComparison; @@ -13200,17 +12327,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNames_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("majorCompact_result("); boolean first = true; - sb.append("success:"); - if (this.success == null) { - sb.append("null"); - } else { - org.apache.thrift.TBaseHelper.toString(this.success, sb); - } - first = false; - if (!first) sb.append(", "); sb.append("io:"); if (this.io == null) { sb.append("null"); @@ -13243,15 +12362,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getTableNames_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNames_resultStandardScheme getScheme() { - return new getTableNames_resultStandardScheme(); + private static class majorCompact_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public majorCompact_resultStandardScheme getScheme() { + return new majorCompact_resultStandardScheme(); } } - private static class getTableNames_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class majorCompact_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -13261,24 +12380,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_resul break; } switch (schemeField.id) { - case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { - { - org.apache.thrift.protocol.TList _list50 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list50.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem51; - for (int _i52 = 0; _i52 < _list50.size; ++_i52) - { - _elem51 = iprot.readBinary(); - struct.success.add(_elem51); - } - iprot.readListEnd(); - } - struct.setSuccessIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; case 1: // IO if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.io = new IOError(); @@ -13299,22 +12400,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_resul struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.success != null) { - oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (java.nio.ByteBuffer _iter53 : struct.success) - { - oprot.writeBinary(_iter53); - } - oprot.writeListEnd(); - } - oprot.writeFieldEnd(); - } if (struct.io != null) { oprot.writeFieldBegin(IO_FIELD_DESC); struct.io.write(oprot); @@ -13326,57 +12415,32 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_resu } - private static class getTableNames_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNames_resultTupleScheme getScheme() { - return new getTableNames_resultTupleScheme(); + private static class majorCompact_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public majorCompact_resultTupleScheme getScheme() { + return new majorCompact_resultTupleScheme(); } } - private static class getTableNames_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class majorCompact_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetSuccess()) { - optionals.set(0); - } if (struct.isSetIo()) { - optionals.set(1); - } - oprot.writeBitSet(optionals, 2); - if (struct.isSetSuccess()) { - { - oprot.writeI32(struct.success.size()); - for (java.nio.ByteBuffer _iter54 : struct.success) - { - oprot.writeBinary(_iter54); - } - } + optionals.set(0); } + oprot.writeBitSet(optionals, 1); if (struct.isSetIo()) { struct.io.write(oprot); } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getTableNames_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, majorCompact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(2); + java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { - { - org.apache.thrift.protocol.TList _list55 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.success = new java.util.ArrayList(_list55.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem56; - for (int _i57 = 0; _i57 < _list55.size; ++_i57) - { - _elem56 = iprot.readBinary(); - struct.success.add(_elem56); - } - } - struct.setSuccessIsSet(true); - } - if (incoming.get(1)) { struct.io = new IOError(); struct.io.read(iprot); struct.setIoIsSet(true); @@ -13389,12 +12453,12 @@ private static S scheme(org.apache. } } - public static class getTableNamesWithIsTableEnabled_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNamesWithIsTableEnabled_args"); + public static class getTableNames_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNames_args"); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNamesWithIsTableEnabled_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNamesWithIsTableEnabled_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNames_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNames_argsTupleSchemeFactory(); /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ @@ -13458,20 +12522,20 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNamesWithIsTableEnabled_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNames_args.class, metaDataMap); } - public getTableNamesWithIsTableEnabled_args() { + public getTableNames_args() { } /** * Performs a deep copy on other. */ - public getTableNamesWithIsTableEnabled_args(getTableNamesWithIsTableEnabled_args other) { + public getTableNames_args(getTableNames_args other) { } - public getTableNamesWithIsTableEnabled_args deepCopy() { - return new getTableNamesWithIsTableEnabled_args(this); + public getTableNames_args deepCopy() { + return new getTableNames_args(this); } @Override @@ -13503,12 +12567,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getTableNamesWithIsTableEnabled_args) - return this.equals((getTableNamesWithIsTableEnabled_args)that); + if (that instanceof getTableNames_args) + return this.equals((getTableNames_args)that); return false; } - public boolean equals(getTableNamesWithIsTableEnabled_args that) { + public boolean equals(getTableNames_args that) { if (that == null) return false; if (this == that) @@ -13525,7 +12589,7 @@ public int hashCode() { } @Override - public int compareTo(getTableNamesWithIsTableEnabled_args other) { + public int compareTo(getTableNames_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -13550,7 +12614,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNamesWithIsTableEnabled_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNames_args("); boolean first = true; sb.append(")"); @@ -13578,15 +12642,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getTableNamesWithIsTableEnabled_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNamesWithIsTableEnabled_argsStandardScheme getScheme() { - return new getTableNamesWithIsTableEnabled_argsStandardScheme(); + private static class getTableNames_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNames_argsStandardScheme getScheme() { + return new getTableNames_argsStandardScheme(); } } - private static class getTableNamesWithIsTableEnabled_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getTableNames_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNamesWithIsTableEnabled_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -13607,7 +12671,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNamesWithIs struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNamesWithIsTableEnabled_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -13617,21 +12681,21 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNamesWithI } - private static class getTableNamesWithIsTableEnabled_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNamesWithIsTableEnabled_argsTupleScheme getScheme() { - return new getTableNamesWithIsTableEnabled_argsTupleScheme(); + private static class getTableNames_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNames_argsTupleScheme getScheme() { + return new getTableNames_argsTupleScheme(); } } - private static class getTableNamesWithIsTableEnabled_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getTableNames_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIsTableEnabled_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIsTableEnabled_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getTableNames_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; } } @@ -13641,16 +12705,16 @@ private static S scheme(org.apache. } } - public static class getTableNamesWithIsTableEnabled_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNamesWithIsTableEnabled_result"); + public static class getTableNames_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNames_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.LIST, (short)0); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNamesWithIsTableEnabled_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNamesWithIsTableEnabled_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNames_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNames_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.Map success; // required + public @org.apache.thrift.annotation.Nullable java.util.List success; // required public @org.apache.thrift.annotation.Nullable IOError io; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ @@ -13721,20 +12785,19 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Text"), - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)))); + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Text")))); tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNamesWithIsTableEnabled_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNames_result.class, metaDataMap); } - public getTableNamesWithIsTableEnabled_result() { + public getTableNames_result() { } - public getTableNamesWithIsTableEnabled_result( - java.util.Map success, + public getTableNames_result( + java.util.List success, IOError io) { this(); @@ -13745,19 +12808,11 @@ public getTableNamesWithIsTableEnabled_result( /** * Performs a deep copy on other. */ - public getTableNamesWithIsTableEnabled_result(getTableNamesWithIsTableEnabled_result other) { + public getTableNames_result(getTableNames_result other) { if (other.isSetSuccess()) { - java.util.Map __this__success = new java.util.HashMap(other.success.size()); - for (java.util.Map.Entry other_element : other.success.entrySet()) { - - java.nio.ByteBuffer other_element_key = other_element.getKey(); - java.lang.Boolean other_element_value = other_element.getValue(); - - java.nio.ByteBuffer __this__success_copy_key = org.apache.thrift.TBaseHelper.copyBinary(other_element_key); - - java.lang.Boolean __this__success_copy_value = other_element_value; - - __this__success.put(__this__success_copy_key, __this__success_copy_value); + java.util.List __this__success = new java.util.ArrayList(other.success.size()); + for (java.nio.ByteBuffer other_element : other.success) { + __this__success.add(org.apache.thrift.TBaseHelper.copyBinary(other_element)); } this.success = __this__success; } @@ -13766,8 +12821,8 @@ public getTableNamesWithIsTableEnabled_result(getTableNamesWithIsTableEnabled_re } } - public getTableNamesWithIsTableEnabled_result deepCopy() { - return new getTableNamesWithIsTableEnabled_result(this); + public getTableNames_result deepCopy() { + return new getTableNames_result(this); } @Override @@ -13780,19 +12835,24 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - public void putToSuccess(java.nio.ByteBuffer key, boolean val) { + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getSuccessIterator() { + return (this.success == null) ? null : this.success.iterator(); + } + + public void addToSuccess(java.nio.ByteBuffer elem) { if (this.success == null) { - this.success = new java.util.HashMap(); + this.success = new java.util.ArrayList(); } - this.success.put(key, val); + this.success.add(elem); } @org.apache.thrift.annotation.Nullable - public java.util.Map getSuccess() { + public java.util.List getSuccess() { return this.success; } - public getTableNamesWithIsTableEnabled_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { + public getTableNames_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.List success) { this.success = success; return this; } @@ -13817,7 +12877,7 @@ public IOError getIo() { return this.io; } - public getTableNamesWithIsTableEnabled_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public getTableNames_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -13843,7 +12903,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.Map)value); + setSuccess((java.util.List)value); } break; @@ -13888,12 +12948,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getTableNamesWithIsTableEnabled_result) - return this.equals((getTableNamesWithIsTableEnabled_result)that); + if (that instanceof getTableNames_result) + return this.equals((getTableNames_result)that); return false; } - public boolean equals(getTableNamesWithIsTableEnabled_result that) { + public boolean equals(getTableNames_result that) { if (that == null) return false; if (this == that) @@ -13936,7 +12996,7 @@ public int hashCode() { } @Override - public int compareTo(getTableNamesWithIsTableEnabled_result other) { + public int compareTo(getTableNames_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -13981,14 +13041,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNamesWithIsTableEnabled_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNames_result("); boolean first = true; sb.append("success:"); if (this.success == null) { sb.append("null"); } else { - sb.append(this.success); + org.apache.thrift.TBaseHelper.toString(this.success, sb); } first = false; if (!first) sb.append(", "); @@ -14024,15 +13084,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getTableNamesWithIsTableEnabled_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNamesWithIsTableEnabled_resultStandardScheme getScheme() { - return new getTableNamesWithIsTableEnabled_resultStandardScheme(); + private static class getTableNames_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNames_resultStandardScheme getScheme() { + return new getTableNames_resultStandardScheme(); } } - private static class getTableNamesWithIsTableEnabled_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getTableNames_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNamesWithIsTableEnabled_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -14043,19 +13103,17 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNamesWithIs } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TMap _map58 = iprot.readMapBegin(); - struct.success = new java.util.HashMap(2*_map58.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key59; - boolean _val60; - for (int _i61 = 0; _i61 < _map58.size; ++_i61) + org.apache.thrift.protocol.TList _list50 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list50.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem51; + for (int _i52 = 0; _i52 < _list50.size; ++_i52) { - _key59 = iprot.readBinary(); - _val60 = iprot.readBool(); - struct.success.put(_key59, _val60); + _elem51 = iprot.readBinary(); + struct.success.add(_elem51); } - iprot.readMapEnd(); + iprot.readListEnd(); } struct.setSuccessIsSet(true); } else { @@ -14082,20 +13140,19 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNamesWithIs struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNamesWithIsTableEnabled_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.BOOL, struct.success.size())); - for (java.util.Map.Entry _iter62 : struct.success.entrySet()) + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); + for (java.nio.ByteBuffer _iter53 : struct.success) { - oprot.writeBinary(_iter62.getKey()); - oprot.writeBool(_iter62.getValue()); + oprot.writeBinary(_iter53); } - oprot.writeMapEnd(); + oprot.writeListEnd(); } oprot.writeFieldEnd(); } @@ -14110,16 +13167,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNamesWithI } - private static class getTableNamesWithIsTableEnabled_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNamesWithIsTableEnabled_resultTupleScheme getScheme() { - return new getTableNamesWithIsTableEnabled_resultTupleScheme(); + private static class getTableNames_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNames_resultTupleScheme getScheme() { + return new getTableNames_resultTupleScheme(); } } - private static class getTableNamesWithIsTableEnabled_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getTableNames_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIsTableEnabled_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -14132,10 +13189,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIs if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter63 : struct.success.entrySet()) + for (java.nio.ByteBuffer _iter54 : struct.success) { - oprot.writeBinary(_iter63.getKey()); - oprot.writeBool(_iter63.getValue()); + oprot.writeBinary(_iter54); } } } @@ -14145,20 +13201,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIs } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIsTableEnabled_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getTableNames_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map64 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.BOOL); - struct.success = new java.util.HashMap(2*_map64.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key65; - boolean _val66; - for (int _i67 = 0; _i67 < _map64.size; ++_i67) + org.apache.thrift.protocol.TList _list55 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.success = new java.util.ArrayList(_list55.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem56; + for (int _i57 = 0; _i57 < _list55.size; ++_i57) { - _key65 = iprot.readBinary(); - _val66 = iprot.readBool(); - struct.success.put(_key65, _val66); + _elem56 = iprot.readBinary(); + struct.success.add(_elem56); } } struct.setSuccessIsSet(true); @@ -14970,16 +14024,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getColumnDescriptor case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map68 = iprot.readMapBegin(); - struct.success = new java.util.HashMap(2*_map68.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key69; - @org.apache.thrift.annotation.Nullable ColumnDescriptor _val70; - for (int _i71 = 0; _i71 < _map68.size; ++_i71) + org.apache.thrift.protocol.TMap _map58 = iprot.readMapBegin(); + struct.success = new java.util.HashMap(2*_map58.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key59; + @org.apache.thrift.annotation.Nullable ColumnDescriptor _val60; + for (int _i61 = 0; _i61 < _map58.size; ++_i61) { - _key69 = iprot.readBinary(); - _val70 = new ColumnDescriptor(); - _val70.read(iprot); - struct.success.put(_key69, _val70); + _key59 = iprot.readBinary(); + _val60 = new ColumnDescriptor(); + _val60.read(iprot); + struct.success.put(_key59, _val60); } iprot.readMapEnd(); } @@ -15016,10 +14070,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getColumnDescripto oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter72 : struct.success.entrySet()) + for (java.util.Map.Entry _iter62 : struct.success.entrySet()) { - oprot.writeBinary(_iter72.getKey()); - _iter72.getValue().write(oprot); + oprot.writeBinary(_iter62.getKey()); + _iter62.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -15058,10 +14112,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getColumnDescriptor if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter73 : struct.success.entrySet()) + for (java.util.Map.Entry _iter63 : struct.success.entrySet()) { - oprot.writeBinary(_iter73.getKey()); - _iter73.getValue().write(oprot); + oprot.writeBinary(_iter63.getKey()); + _iter63.getValue().write(oprot); } } } @@ -15076,16 +14130,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getColumnDescriptors java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map74 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.HashMap(2*_map74.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key75; - @org.apache.thrift.annotation.Nullable ColumnDescriptor _val76; - for (int _i77 = 0; _i77 < _map74.size; ++_i77) + org.apache.thrift.protocol.TMap _map64 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.HashMap(2*_map64.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key65; + @org.apache.thrift.annotation.Nullable ColumnDescriptor _val66; + for (int _i67 = 0; _i67 < _map64.size; ++_i67) { - _key75 = iprot.readBinary(); - _val76 = new ColumnDescriptor(); - _val76.read(iprot); - struct.success.put(_key75, _val76); + _key65 = iprot.readBinary(); + _val66 = new ColumnDescriptor(); + _val66.read(iprot); + struct.success.put(_key65, _val66); } } struct.setSuccessIsSet(true); @@ -15893,14 +14947,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableRegions_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list78 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list78.size); - @org.apache.thrift.annotation.Nullable TRegionInfo _elem79; - for (int _i80 = 0; _i80 < _list78.size; ++_i80) + org.apache.thrift.protocol.TList _list68 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list68.size); + @org.apache.thrift.annotation.Nullable TRegionInfo _elem69; + for (int _i70 = 0; _i70 < _list68.size; ++_i70) { - _elem79 = new TRegionInfo(); - _elem79.read(iprot); - struct.success.add(_elem79); + _elem69 = new TRegionInfo(); + _elem69.read(iprot); + struct.success.add(_elem69); } iprot.readListEnd(); } @@ -15937,9 +14991,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getTableRegions_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRegionInfo _iter81 : struct.success) + for (TRegionInfo _iter71 : struct.success) { - _iter81.write(oprot); + _iter71.write(oprot); } oprot.writeListEnd(); } @@ -15978,9 +15032,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getTableRegions_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRegionInfo _iter82 : struct.success) + for (TRegionInfo _iter72 : struct.success) { - _iter82.write(oprot); + _iter72.write(oprot); } } } @@ -15995,14 +15049,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getTableRegions_resu java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list83 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list83.size); - @org.apache.thrift.annotation.Nullable TRegionInfo _elem84; - for (int _i85 = 0; _i85 < _list83.size; ++_i85) + org.apache.thrift.protocol.TList _list73 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list73.size); + @org.apache.thrift.annotation.Nullable TRegionInfo _elem74; + for (int _i75 = 0; _i75 < _list73.size; ++_i75) { - _elem84 = new TRegionInfo(); - _elem84.read(iprot); - struct.success.add(_elem84); + _elem74 = new TRegionInfo(); + _elem74.read(iprot); + struct.success.add(_elem74); } } struct.setSuccessIsSet(true); @@ -16465,14 +15519,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, createTable_args st case 2: // COLUMN_FAMILIES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list86 = iprot.readListBegin(); - struct.columnFamilies = new java.util.ArrayList(_list86.size); - @org.apache.thrift.annotation.Nullable ColumnDescriptor _elem87; - for (int _i88 = 0; _i88 < _list86.size; ++_i88) + org.apache.thrift.protocol.TList _list76 = iprot.readListBegin(); + struct.columnFamilies = new java.util.ArrayList(_list76.size); + @org.apache.thrift.annotation.Nullable ColumnDescriptor _elem77; + for (int _i78 = 0; _i78 < _list76.size; ++_i78) { - _elem87 = new ColumnDescriptor(); - _elem87.read(iprot); - struct.columnFamilies.add(_elem87); + _elem77 = new ColumnDescriptor(); + _elem77.read(iprot); + struct.columnFamilies.add(_elem77); } iprot.readListEnd(); } @@ -16505,9 +15559,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, createTable_args s oprot.writeFieldBegin(COLUMN_FAMILIES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.columnFamilies.size())); - for (ColumnDescriptor _iter89 : struct.columnFamilies) + for (ColumnDescriptor _iter79 : struct.columnFamilies) { - _iter89.write(oprot); + _iter79.write(oprot); } oprot.writeListEnd(); } @@ -16544,9 +15598,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, createTable_args st if (struct.isSetColumnFamilies()) { { oprot.writeI32(struct.columnFamilies.size()); - for (ColumnDescriptor _iter90 : struct.columnFamilies) + for (ColumnDescriptor _iter80 : struct.columnFamilies) { - _iter90.write(oprot); + _iter80.write(oprot); } } } @@ -16562,14 +15616,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, createTable_args str } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list91 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.columnFamilies = new java.util.ArrayList(_list91.size); - @org.apache.thrift.annotation.Nullable ColumnDescriptor _elem92; - for (int _i93 = 0; _i93 < _list91.size; ++_i93) + org.apache.thrift.protocol.TList _list81 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.columnFamilies = new java.util.ArrayList(_list81.size); + @org.apache.thrift.annotation.Nullable ColumnDescriptor _elem82; + for (int _i83 = 0; _i83 < _list81.size; ++_i83) { - _elem92 = new ColumnDescriptor(); - _elem92.read(iprot); - struct.columnFamilies.add(_elem92); + _elem82 = new ColumnDescriptor(); + _elem82.read(iprot); + struct.columnFamilies.add(_elem82); } } struct.setColumnFamiliesIsSet(true); @@ -18599,15 +17653,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_args struct) th case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map94 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map94.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key95; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val96; - for (int _i97 = 0; _i97 < _map94.size; ++_i97) + org.apache.thrift.protocol.TMap _map84 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map84.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key85; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val86; + for (int _i87 = 0; _i87 < _map84.size; ++_i87) { - _key95 = iprot.readBinary(); - _val96 = iprot.readBinary(); - struct.attributes.put(_key95, _val96); + _key85 = iprot.readBinary(); + _val86 = iprot.readBinary(); + struct.attributes.put(_key85, _val86); } iprot.readMapEnd(); } @@ -18650,10 +17704,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_args struct) t oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter98 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter88 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter98.getKey()); - oprot.writeBinary(_iter98.getValue()); + oprot.writeBinary(_iter88.getKey()); + oprot.writeBinary(_iter88.getValue()); } oprot.writeMapEnd(); } @@ -18702,10 +17756,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_args struct) th if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter99 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter89 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter99.getKey()); - oprot.writeBinary(_iter99.getValue()); + oprot.writeBinary(_iter89.getKey()); + oprot.writeBinary(_iter89.getValue()); } } } @@ -18729,15 +17783,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_args struct) thr } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map100 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map100.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key101; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val102; - for (int _i103 = 0; _i103 < _map100.size; ++_i103) + org.apache.thrift.protocol.TMap _map90 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map90.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key91; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val92; + for (int _i93 = 0; _i93 < _map90.size; ++_i93) { - _key101 = iprot.readBinary(); - _val102 = iprot.readBinary(); - struct.attributes.put(_key101, _val102); + _key91 = iprot.readBinary(); + _val92 = iprot.readBinary(); + struct.attributes.put(_key91, _val92); } } struct.setAttributesIsSet(true); @@ -19150,14 +18204,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_result struct) case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list104 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list104.size); - @org.apache.thrift.annotation.Nullable TCell _elem105; - for (int _i106 = 0; _i106 < _list104.size; ++_i106) + org.apache.thrift.protocol.TList _list94 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list94.size); + @org.apache.thrift.annotation.Nullable TCell _elem95; + for (int _i96 = 0; _i96 < _list94.size; ++_i96) { - _elem105 = new TCell(); - _elem105.read(iprot); - struct.success.add(_elem105); + _elem95 = new TCell(); + _elem95.read(iprot); + struct.success.add(_elem95); } iprot.readListEnd(); } @@ -19194,9 +18248,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_result struct) oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TCell _iter107 : struct.success) + for (TCell _iter97 : struct.success) { - _iter107.write(oprot); + _iter97.write(oprot); } oprot.writeListEnd(); } @@ -19235,9 +18289,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_result struct) if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TCell _iter108 : struct.success) + for (TCell _iter98 : struct.success) { - _iter108.write(oprot); + _iter98.write(oprot); } } } @@ -19252,14 +18306,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_result struct) t java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list109 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list109.size); - @org.apache.thrift.annotation.Nullable TCell _elem110; - for (int _i111 = 0; _i111 < _list109.size; ++_i111) + org.apache.thrift.protocol.TList _list99 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list99.size); + @org.apache.thrift.annotation.Nullable TCell _elem100; + for (int _i101 = 0; _i101 < _list99.size; ++_i101) { - _elem110 = new TCell(); - _elem110.read(iprot); - struct.success.add(_elem110); + _elem100 = new TCell(); + _elem100.read(iprot); + struct.success.add(_elem100); } } struct.setSuccessIsSet(true); @@ -20055,15 +19109,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getVer_args struct) case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map112 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map112.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key113; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val114; - for (int _i115 = 0; _i115 < _map112.size; ++_i115) + org.apache.thrift.protocol.TMap _map102 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map102.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key103; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val104; + for (int _i105 = 0; _i105 < _map102.size; ++_i105) { - _key113 = iprot.readBinary(); - _val114 = iprot.readBinary(); - struct.attributes.put(_key113, _val114); + _key103 = iprot.readBinary(); + _val104 = iprot.readBinary(); + struct.attributes.put(_key103, _val104); } iprot.readMapEnd(); } @@ -20109,10 +19163,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getVer_args struct oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter116 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter106 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter116.getKey()); - oprot.writeBinary(_iter116.getValue()); + oprot.writeBinary(_iter106.getKey()); + oprot.writeBinary(_iter106.getValue()); } oprot.writeMapEnd(); } @@ -20167,10 +19221,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getVer_args struct) if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter117 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter107 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter117.getKey()); - oprot.writeBinary(_iter117.getValue()); + oprot.writeBinary(_iter107.getKey()); + oprot.writeBinary(_iter107.getValue()); } } } @@ -20198,15 +19252,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getVer_args struct) } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map118 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map118.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key119; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val120; - for (int _i121 = 0; _i121 < _map118.size; ++_i121) + org.apache.thrift.protocol.TMap _map108 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map108.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key109; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val110; + for (int _i111 = 0; _i111 < _map108.size; ++_i111) { - _key119 = iprot.readBinary(); - _val120 = iprot.readBinary(); - struct.attributes.put(_key119, _val120); + _key109 = iprot.readBinary(); + _val110 = iprot.readBinary(); + struct.attributes.put(_key109, _val110); } } struct.setAttributesIsSet(true); @@ -20619,14 +19673,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getVer_result struc case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list122 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list122.size); - @org.apache.thrift.annotation.Nullable TCell _elem123; - for (int _i124 = 0; _i124 < _list122.size; ++_i124) + org.apache.thrift.protocol.TList _list112 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list112.size); + @org.apache.thrift.annotation.Nullable TCell _elem113; + for (int _i114 = 0; _i114 < _list112.size; ++_i114) { - _elem123 = new TCell(); - _elem123.read(iprot); - struct.success.add(_elem123); + _elem113 = new TCell(); + _elem113.read(iprot); + struct.success.add(_elem113); } iprot.readListEnd(); } @@ -20663,9 +19717,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getVer_result stru oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TCell _iter125 : struct.success) + for (TCell _iter115 : struct.success) { - _iter125.write(oprot); + _iter115.write(oprot); } oprot.writeListEnd(); } @@ -20704,9 +19758,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getVer_result struc if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TCell _iter126 : struct.success) + for (TCell _iter116 : struct.success) { - _iter126.write(oprot); + _iter116.write(oprot); } } } @@ -20721,14 +19775,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getVer_result struct java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list127 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list127.size); - @org.apache.thrift.annotation.Nullable TCell _elem128; - for (int _i129 = 0; _i129 < _list127.size; ++_i129) + org.apache.thrift.protocol.TList _list117 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list117.size); + @org.apache.thrift.annotation.Nullable TCell _elem118; + for (int _i119 = 0; _i119 < _list117.size; ++_i119) { - _elem128 = new TCell(); - _elem128.read(iprot); - struct.success.add(_elem128); + _elem118 = new TCell(); + _elem118.read(iprot); + struct.success.add(_elem118); } } struct.setSuccessIsSet(true); @@ -21619,15 +20673,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getVerTs_args struc case 6: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map130 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map130.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key131; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val132; - for (int _i133 = 0; _i133 < _map130.size; ++_i133) + org.apache.thrift.protocol.TMap _map120 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map120.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key121; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val122; + for (int _i123 = 0; _i123 < _map120.size; ++_i123) { - _key131 = iprot.readBinary(); - _val132 = iprot.readBinary(); - struct.attributes.put(_key131, _val132); + _key121 = iprot.readBinary(); + _val122 = iprot.readBinary(); + struct.attributes.put(_key121, _val122); } iprot.readMapEnd(); } @@ -21676,10 +20730,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getVerTs_args stru oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter134 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter124 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter134.getKey()); - oprot.writeBinary(_iter134.getValue()); + oprot.writeBinary(_iter124.getKey()); + oprot.writeBinary(_iter124.getValue()); } oprot.writeMapEnd(); } @@ -21740,10 +20794,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getVerTs_args struc if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter135 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter125 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter135.getKey()); - oprot.writeBinary(_iter135.getValue()); + oprot.writeBinary(_iter125.getKey()); + oprot.writeBinary(_iter125.getValue()); } } } @@ -21775,15 +20829,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getVerTs_args struct } if (incoming.get(5)) { { - org.apache.thrift.protocol.TMap _map136 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map136.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key137; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val138; - for (int _i139 = 0; _i139 < _map136.size; ++_i139) + org.apache.thrift.protocol.TMap _map126 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map126.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key127; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val128; + for (int _i129 = 0; _i129 < _map126.size; ++_i129) { - _key137 = iprot.readBinary(); - _val138 = iprot.readBinary(); - struct.attributes.put(_key137, _val138); + _key127 = iprot.readBinary(); + _val128 = iprot.readBinary(); + struct.attributes.put(_key127, _val128); } } struct.setAttributesIsSet(true); @@ -22196,14 +21250,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getVerTs_result str case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list140 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list140.size); - @org.apache.thrift.annotation.Nullable TCell _elem141; - for (int _i142 = 0; _i142 < _list140.size; ++_i142) + org.apache.thrift.protocol.TList _list130 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list130.size); + @org.apache.thrift.annotation.Nullable TCell _elem131; + for (int _i132 = 0; _i132 < _list130.size; ++_i132) { - _elem141 = new TCell(); - _elem141.read(iprot); - struct.success.add(_elem141); + _elem131 = new TCell(); + _elem131.read(iprot); + struct.success.add(_elem131); } iprot.readListEnd(); } @@ -22240,9 +21294,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getVerTs_result st oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TCell _iter143 : struct.success) + for (TCell _iter133 : struct.success) { - _iter143.write(oprot); + _iter133.write(oprot); } oprot.writeListEnd(); } @@ -22281,9 +21335,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getVerTs_result str if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TCell _iter144 : struct.success) + for (TCell _iter134 : struct.success) { - _iter144.write(oprot); + _iter134.write(oprot); } } } @@ -22298,14 +21352,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getVerTs_result stru java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list145 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list145.size); - @org.apache.thrift.annotation.Nullable TCell _elem146; - for (int _i147 = 0; _i147 < _list145.size; ++_i147) + org.apache.thrift.protocol.TList _list135 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list135.size); + @org.apache.thrift.annotation.Nullable TCell _elem136; + for (int _i137 = 0; _i137 < _list135.size; ++_i137) { - _elem146 = new TCell(); - _elem146.read(iprot); - struct.success.add(_elem146); + _elem136 = new TCell(); + _elem136.read(iprot); + struct.success.add(_elem136); } } struct.setSuccessIsSet(true); @@ -22887,15 +21941,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRow_args struct) case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map148 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map148.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key149; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val150; - for (int _i151 = 0; _i151 < _map148.size; ++_i151) + org.apache.thrift.protocol.TMap _map138 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map138.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key139; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val140; + for (int _i141 = 0; _i141 < _map138.size; ++_i141) { - _key149 = iprot.readBinary(); - _val150 = iprot.readBinary(); - struct.attributes.put(_key149, _val150); + _key139 = iprot.readBinary(); + _val140 = iprot.readBinary(); + struct.attributes.put(_key139, _val140); } iprot.readMapEnd(); } @@ -22933,10 +21987,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRow_args struct oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter152 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter142 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter152.getKey()); - oprot.writeBinary(_iter152.getValue()); + oprot.writeBinary(_iter142.getKey()); + oprot.writeBinary(_iter142.getValue()); } oprot.writeMapEnd(); } @@ -22979,10 +22033,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRow_args struct) if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter153 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter143 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter153.getKey()); - oprot.writeBinary(_iter153.getValue()); + oprot.writeBinary(_iter143.getKey()); + oprot.writeBinary(_iter143.getValue()); } } } @@ -23002,15 +22056,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRow_args struct) } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map154 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map154.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key155; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val156; - for (int _i157 = 0; _i157 < _map154.size; ++_i157) + org.apache.thrift.protocol.TMap _map144 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map144.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key145; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val146; + for (int _i147 = 0; _i147 < _map144.size; ++_i147) { - _key155 = iprot.readBinary(); - _val156 = iprot.readBinary(); - struct.attributes.put(_key155, _val156); + _key145 = iprot.readBinary(); + _val146 = iprot.readBinary(); + struct.attributes.put(_key145, _val146); } } struct.setAttributesIsSet(true); @@ -23423,14 +22477,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRow_result struc case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list158 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list158.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem159; - for (int _i160 = 0; _i160 < _list158.size; ++_i160) + org.apache.thrift.protocol.TList _list148 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list148.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem149; + for (int _i150 = 0; _i150 < _list148.size; ++_i150) { - _elem159 = new TRowResult(); - _elem159.read(iprot); - struct.success.add(_elem159); + _elem149 = new TRowResult(); + _elem149.read(iprot); + struct.success.add(_elem149); } iprot.readListEnd(); } @@ -23467,9 +22521,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRow_result stru oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter161 : struct.success) + for (TRowResult _iter151 : struct.success) { - _iter161.write(oprot); + _iter151.write(oprot); } oprot.writeListEnd(); } @@ -23508,9 +22562,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRow_result struc if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter162 : struct.success) + for (TRowResult _iter152 : struct.success) { - _iter162.write(oprot); + _iter152.write(oprot); } } } @@ -23525,14 +22579,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRow_result struct java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list163 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list163.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem164; - for (int _i165 = 0; _i165 < _list163.size; ++_i165) + org.apache.thrift.protocol.TList _list153 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list153.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem154; + for (int _i155 = 0; _i155 < _list153.size; ++_i155) { - _elem164 = new TRowResult(); - _elem164.read(iprot); - struct.success.add(_elem164); + _elem154 = new TRowResult(); + _elem154.read(iprot); + struct.success.add(_elem154); } } struct.setSuccessIsSet(true); @@ -24229,13 +23283,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumns_a case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list166 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list166.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem167; - for (int _i168 = 0; _i168 < _list166.size; ++_i168) + org.apache.thrift.protocol.TList _list156 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list156.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem157; + for (int _i158 = 0; _i158 < _list156.size; ++_i158) { - _elem167 = iprot.readBinary(); - struct.columns.add(_elem167); + _elem157 = iprot.readBinary(); + struct.columns.add(_elem157); } iprot.readListEnd(); } @@ -24247,15 +23301,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumns_a case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map169 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map169.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key170; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val171; - for (int _i172 = 0; _i172 < _map169.size; ++_i172) + org.apache.thrift.protocol.TMap _map159 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map159.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key160; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val161; + for (int _i162 = 0; _i162 < _map159.size; ++_i162) { - _key170 = iprot.readBinary(); - _val171 = iprot.readBinary(); - struct.attributes.put(_key170, _val171); + _key160 = iprot.readBinary(); + _val161 = iprot.readBinary(); + struct.attributes.put(_key160, _val161); } iprot.readMapEnd(); } @@ -24293,9 +23347,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumns_ oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter173 : struct.columns) + for (java.nio.ByteBuffer _iter163 : struct.columns) { - oprot.writeBinary(_iter173); + oprot.writeBinary(_iter163); } oprot.writeListEnd(); } @@ -24305,10 +23359,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumns_ oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter174 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter164 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter174.getKey()); - oprot.writeBinary(_iter174.getValue()); + oprot.writeBinary(_iter164.getKey()); + oprot.writeBinary(_iter164.getValue()); } oprot.writeMapEnd(); } @@ -24354,19 +23408,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumns_a if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter175 : struct.columns) + for (java.nio.ByteBuffer _iter165 : struct.columns) { - oprot.writeBinary(_iter175); + oprot.writeBinary(_iter165); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter176 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter166 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter176.getKey()); - oprot.writeBinary(_iter176.getValue()); + oprot.writeBinary(_iter166.getKey()); + oprot.writeBinary(_iter166.getValue()); } } } @@ -24386,28 +23440,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumns_ar } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list177 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list177.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem178; - for (int _i179 = 0; _i179 < _list177.size; ++_i179) + org.apache.thrift.protocol.TList _list167 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list167.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem168; + for (int _i169 = 0; _i169 < _list167.size; ++_i169) { - _elem178 = iprot.readBinary(); - struct.columns.add(_elem178); + _elem168 = iprot.readBinary(); + struct.columns.add(_elem168); } } struct.setColumnsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map180 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map180.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key181; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val182; - for (int _i183 = 0; _i183 < _map180.size; ++_i183) + org.apache.thrift.protocol.TMap _map170 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map170.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key171; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val172; + for (int _i173 = 0; _i173 < _map170.size; ++_i173) { - _key181 = iprot.readBinary(); - _val182 = iprot.readBinary(); - struct.attributes.put(_key181, _val182); + _key171 = iprot.readBinary(); + _val172 = iprot.readBinary(); + struct.attributes.put(_key171, _val172); } } struct.setAttributesIsSet(true); @@ -24820,14 +23874,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumns_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list184 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list184.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem185; - for (int _i186 = 0; _i186 < _list184.size; ++_i186) + org.apache.thrift.protocol.TList _list174 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list174.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem175; + for (int _i176 = 0; _i176 < _list174.size; ++_i176) { - _elem185 = new TRowResult(); - _elem185.read(iprot); - struct.success.add(_elem185); + _elem175 = new TRowResult(); + _elem175.read(iprot); + struct.success.add(_elem175); } iprot.readListEnd(); } @@ -24864,9 +23918,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumns_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter187 : struct.success) + for (TRowResult _iter177 : struct.success) { - _iter187.write(oprot); + _iter177.write(oprot); } oprot.writeListEnd(); } @@ -24905,9 +23959,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumns_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter188 : struct.success) + for (TRowResult _iter178 : struct.success) { - _iter188.write(oprot); + _iter178.write(oprot); } } } @@ -24922,14 +23976,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumns_re java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list189 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list189.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem190; - for (int _i191 = 0; _i191 < _list189.size; ++_i191) + org.apache.thrift.protocol.TList _list179 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list179.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem180; + for (int _i181 = 0; _i181 < _list179.size; ++_i181) { - _elem190 = new TRowResult(); - _elem190.read(iprot); - struct.success.add(_elem190); + _elem180 = new TRowResult(); + _elem180.read(iprot); + struct.success.add(_elem180); } } struct.setSuccessIsSet(true); @@ -25610,15 +24664,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowTs_args struc case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map192 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map192.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key193; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val194; - for (int _i195 = 0; _i195 < _map192.size; ++_i195) + org.apache.thrift.protocol.TMap _map182 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map182.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key183; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val184; + for (int _i185 = 0; _i185 < _map182.size; ++_i185) { - _key193 = iprot.readBinary(); - _val194 = iprot.readBinary(); - struct.attributes.put(_key193, _val194); + _key183 = iprot.readBinary(); + _val184 = iprot.readBinary(); + struct.attributes.put(_key183, _val184); } iprot.readMapEnd(); } @@ -25659,10 +24713,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowTs_args stru oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter196 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter186 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter196.getKey()); - oprot.writeBinary(_iter196.getValue()); + oprot.writeBinary(_iter186.getKey()); + oprot.writeBinary(_iter186.getValue()); } oprot.writeMapEnd(); } @@ -25711,10 +24765,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowTs_args struc if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter197 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter187 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter197.getKey()); - oprot.writeBinary(_iter197.getValue()); + oprot.writeBinary(_iter187.getKey()); + oprot.writeBinary(_iter187.getValue()); } } } @@ -25738,15 +24792,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowTs_args struct } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map198 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map198.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key199; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val200; - for (int _i201 = 0; _i201 < _map198.size; ++_i201) + org.apache.thrift.protocol.TMap _map188 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map188.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key189; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val190; + for (int _i191 = 0; _i191 < _map188.size; ++_i191) { - _key199 = iprot.readBinary(); - _val200 = iprot.readBinary(); - struct.attributes.put(_key199, _val200); + _key189 = iprot.readBinary(); + _val190 = iprot.readBinary(); + struct.attributes.put(_key189, _val190); } } struct.setAttributesIsSet(true); @@ -26159,14 +25213,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowTs_result str case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list202 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list202.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem203; - for (int _i204 = 0; _i204 < _list202.size; ++_i204) + org.apache.thrift.protocol.TList _list192 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list192.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem193; + for (int _i194 = 0; _i194 < _list192.size; ++_i194) { - _elem203 = new TRowResult(); - _elem203.read(iprot); - struct.success.add(_elem203); + _elem193 = new TRowResult(); + _elem193.read(iprot); + struct.success.add(_elem193); } iprot.readListEnd(); } @@ -26203,9 +25257,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowTs_result st oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter205 : struct.success) + for (TRowResult _iter195 : struct.success) { - _iter205.write(oprot); + _iter195.write(oprot); } oprot.writeListEnd(); } @@ -26244,9 +25298,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowTs_result str if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter206 : struct.success) + for (TRowResult _iter196 : struct.success) { - _iter206.write(oprot); + _iter196.write(oprot); } } } @@ -26261,14 +25315,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowTs_result stru java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list207 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list207.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem208; - for (int _i209 = 0; _i209 < _list207.size; ++_i209) + org.apache.thrift.protocol.TList _list197 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list197.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem198; + for (int _i199 = 0; _i199 < _list197.size; ++_i199) { - _elem208 = new TRowResult(); - _elem208.read(iprot); - struct.success.add(_elem208); + _elem198 = new TRowResult(); + _elem198.read(iprot); + struct.success.add(_elem198); } } struct.setSuccessIsSet(true); @@ -27044,13 +26098,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumnsTs case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list210 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list210.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem211; - for (int _i212 = 0; _i212 < _list210.size; ++_i212) + org.apache.thrift.protocol.TList _list200 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list200.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem201; + for (int _i202 = 0; _i202 < _list200.size; ++_i202) { - _elem211 = iprot.readBinary(); - struct.columns.add(_elem211); + _elem201 = iprot.readBinary(); + struct.columns.add(_elem201); } iprot.readListEnd(); } @@ -27070,15 +26124,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumnsTs case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map213 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map213.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key214; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val215; - for (int _i216 = 0; _i216 < _map213.size; ++_i216) + org.apache.thrift.protocol.TMap _map203 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map203.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key204; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val205; + for (int _i206 = 0; _i206 < _map203.size; ++_i206) { - _key214 = iprot.readBinary(); - _val215 = iprot.readBinary(); - struct.attributes.put(_key214, _val215); + _key204 = iprot.readBinary(); + _val205 = iprot.readBinary(); + struct.attributes.put(_key204, _val205); } iprot.readMapEnd(); } @@ -27116,9 +26170,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumnsT oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter217 : struct.columns) + for (java.nio.ByteBuffer _iter207 : struct.columns) { - oprot.writeBinary(_iter217); + oprot.writeBinary(_iter207); } oprot.writeListEnd(); } @@ -27131,10 +26185,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumnsT oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter218 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter208 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter218.getKey()); - oprot.writeBinary(_iter218.getValue()); + oprot.writeBinary(_iter208.getKey()); + oprot.writeBinary(_iter208.getValue()); } oprot.writeMapEnd(); } @@ -27183,9 +26237,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter219 : struct.columns) + for (java.nio.ByteBuffer _iter209 : struct.columns) { - oprot.writeBinary(_iter219); + oprot.writeBinary(_iter209); } } } @@ -27195,10 +26249,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter220 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter210 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter220.getKey()); - oprot.writeBinary(_iter220.getValue()); + oprot.writeBinary(_iter210.getKey()); + oprot.writeBinary(_iter210.getValue()); } } } @@ -27218,13 +26272,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs_ } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list221 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list221.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem222; - for (int _i223 = 0; _i223 < _list221.size; ++_i223) + org.apache.thrift.protocol.TList _list211 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list211.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem212; + for (int _i213 = 0; _i213 < _list211.size; ++_i213) { - _elem222 = iprot.readBinary(); - struct.columns.add(_elem222); + _elem212 = iprot.readBinary(); + struct.columns.add(_elem212); } } struct.setColumnsIsSet(true); @@ -27235,15 +26289,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs_ } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map224 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map224.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key225; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val226; - for (int _i227 = 0; _i227 < _map224.size; ++_i227) + org.apache.thrift.protocol.TMap _map214 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map214.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key215; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val216; + for (int _i217 = 0; _i217 < _map214.size; ++_i217) { - _key225 = iprot.readBinary(); - _val226 = iprot.readBinary(); - struct.attributes.put(_key225, _val226); + _key215 = iprot.readBinary(); + _val216 = iprot.readBinary(); + struct.attributes.put(_key215, _val216); } } struct.setAttributesIsSet(true); @@ -27656,14 +26710,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumnsTs case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list228 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list228.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem229; - for (int _i230 = 0; _i230 < _list228.size; ++_i230) + org.apache.thrift.protocol.TList _list218 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list218.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem219; + for (int _i220 = 0; _i220 < _list218.size; ++_i220) { - _elem229 = new TRowResult(); - _elem229.read(iprot); - struct.success.add(_elem229); + _elem219 = new TRowResult(); + _elem219.read(iprot); + struct.success.add(_elem219); } iprot.readListEnd(); } @@ -27700,9 +26754,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumnsT oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter231 : struct.success) + for (TRowResult _iter221 : struct.success) { - _iter231.write(oprot); + _iter221.write(oprot); } oprot.writeListEnd(); } @@ -27741,9 +26795,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter232 : struct.success) + for (TRowResult _iter222 : struct.success) { - _iter232.write(oprot); + _iter222.write(oprot); } } } @@ -27758,14 +26812,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs_ java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list233 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list233.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem234; - for (int _i235 = 0; _i235 < _list233.size; ++_i235) + org.apache.thrift.protocol.TList _list223 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list223.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem224; + for (int _i225 = 0; _i225 < _list223.size; ++_i225) { - _elem234 = new TRowResult(); - _elem234.read(iprot); - struct.success.add(_elem234); + _elem224 = new TRowResult(); + _elem224.read(iprot); + struct.success.add(_elem224); } } struct.setSuccessIsSet(true); @@ -28347,13 +27401,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRows_args struct case 2: // ROWS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list236 = iprot.readListBegin(); - struct.rows = new java.util.ArrayList(_list236.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem237; - for (int _i238 = 0; _i238 < _list236.size; ++_i238) + org.apache.thrift.protocol.TList _list226 = iprot.readListBegin(); + struct.rows = new java.util.ArrayList(_list226.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem227; + for (int _i228 = 0; _i228 < _list226.size; ++_i228) { - _elem237 = iprot.readBinary(); - struct.rows.add(_elem237); + _elem227 = iprot.readBinary(); + struct.rows.add(_elem227); } iprot.readListEnd(); } @@ -28365,15 +27419,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRows_args struct case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map239 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map239.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key240; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val241; - for (int _i242 = 0; _i242 < _map239.size; ++_i242) + org.apache.thrift.protocol.TMap _map229 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map229.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key230; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val231; + for (int _i232 = 0; _i232 < _map229.size; ++_i232) { - _key240 = iprot.readBinary(); - _val241 = iprot.readBinary(); - struct.attributes.put(_key240, _val241); + _key230 = iprot.readBinary(); + _val231 = iprot.readBinary(); + struct.attributes.put(_key230, _val231); } iprot.readMapEnd(); } @@ -28406,9 +27460,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRows_args struc oprot.writeFieldBegin(ROWS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.rows.size())); - for (java.nio.ByteBuffer _iter243 : struct.rows) + for (java.nio.ByteBuffer _iter233 : struct.rows) { - oprot.writeBinary(_iter243); + oprot.writeBinary(_iter233); } oprot.writeListEnd(); } @@ -28418,10 +27472,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRows_args struc oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter244 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter234 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter244.getKey()); - oprot.writeBinary(_iter244.getValue()); + oprot.writeBinary(_iter234.getKey()); + oprot.writeBinary(_iter234.getValue()); } oprot.writeMapEnd(); } @@ -28461,19 +27515,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRows_args struct if (struct.isSetRows()) { { oprot.writeI32(struct.rows.size()); - for (java.nio.ByteBuffer _iter245 : struct.rows) + for (java.nio.ByteBuffer _iter235 : struct.rows) { - oprot.writeBinary(_iter245); + oprot.writeBinary(_iter235); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter246 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter236 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter246.getKey()); - oprot.writeBinary(_iter246.getValue()); + oprot.writeBinary(_iter236.getKey()); + oprot.writeBinary(_iter236.getValue()); } } } @@ -28489,28 +27543,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRows_args struct) } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list247 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.rows = new java.util.ArrayList(_list247.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem248; - for (int _i249 = 0; _i249 < _list247.size; ++_i249) + org.apache.thrift.protocol.TList _list237 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.rows = new java.util.ArrayList(_list237.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem238; + for (int _i239 = 0; _i239 < _list237.size; ++_i239) { - _elem248 = iprot.readBinary(); - struct.rows.add(_elem248); + _elem238 = iprot.readBinary(); + struct.rows.add(_elem238); } } struct.setRowsIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map250 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map250.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key251; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val252; - for (int _i253 = 0; _i253 < _map250.size; ++_i253) + org.apache.thrift.protocol.TMap _map240 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map240.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key241; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val242; + for (int _i243 = 0; _i243 < _map240.size; ++_i243) { - _key251 = iprot.readBinary(); - _val252 = iprot.readBinary(); - struct.attributes.put(_key251, _val252); + _key241 = iprot.readBinary(); + _val242 = iprot.readBinary(); + struct.attributes.put(_key241, _val242); } } struct.setAttributesIsSet(true); @@ -28923,14 +27977,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRows_result stru case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list254 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list254.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem255; - for (int _i256 = 0; _i256 < _list254.size; ++_i256) + org.apache.thrift.protocol.TList _list244 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list244.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem245; + for (int _i246 = 0; _i246 < _list244.size; ++_i246) { - _elem255 = new TRowResult(); - _elem255.read(iprot); - struct.success.add(_elem255); + _elem245 = new TRowResult(); + _elem245.read(iprot); + struct.success.add(_elem245); } iprot.readListEnd(); } @@ -28967,9 +28021,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRows_result str oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter257 : struct.success) + for (TRowResult _iter247 : struct.success) { - _iter257.write(oprot); + _iter247.write(oprot); } oprot.writeListEnd(); } @@ -29008,9 +28062,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRows_result stru if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter258 : struct.success) + for (TRowResult _iter248 : struct.success) { - _iter258.write(oprot); + _iter248.write(oprot); } } } @@ -29025,14 +28079,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRows_result struc java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list259 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list259.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem260; - for (int _i261 = 0; _i261 < _list259.size; ++_i261) + org.apache.thrift.protocol.TList _list249 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list249.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem250; + for (int _i251 = 0; _i251 < _list249.size; ++_i251) { - _elem260 = new TRowResult(); - _elem260.read(iprot); - struct.success.add(_elem260); + _elem250 = new TRowResult(); + _elem250.read(iprot); + struct.success.add(_elem250); } } struct.setSuccessIsSet(true); @@ -29729,13 +28783,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumns_ case 2: // ROWS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list262 = iprot.readListBegin(); - struct.rows = new java.util.ArrayList(_list262.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem263; - for (int _i264 = 0; _i264 < _list262.size; ++_i264) + org.apache.thrift.protocol.TList _list252 = iprot.readListBegin(); + struct.rows = new java.util.ArrayList(_list252.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem253; + for (int _i254 = 0; _i254 < _list252.size; ++_i254) { - _elem263 = iprot.readBinary(); - struct.rows.add(_elem263); + _elem253 = iprot.readBinary(); + struct.rows.add(_elem253); } iprot.readListEnd(); } @@ -29747,13 +28801,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumns_ case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list265 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list265.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem266; - for (int _i267 = 0; _i267 < _list265.size; ++_i267) + org.apache.thrift.protocol.TList _list255 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list255.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem256; + for (int _i257 = 0; _i257 < _list255.size; ++_i257) { - _elem266 = iprot.readBinary(); - struct.columns.add(_elem266); + _elem256 = iprot.readBinary(); + struct.columns.add(_elem256); } iprot.readListEnd(); } @@ -29765,15 +28819,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumns_ case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map268 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map268.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key269; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val270; - for (int _i271 = 0; _i271 < _map268.size; ++_i271) + org.apache.thrift.protocol.TMap _map258 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map258.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key259; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val260; + for (int _i261 = 0; _i261 < _map258.size; ++_i261) { - _key269 = iprot.readBinary(); - _val270 = iprot.readBinary(); - struct.attributes.put(_key269, _val270); + _key259 = iprot.readBinary(); + _val260 = iprot.readBinary(); + struct.attributes.put(_key259, _val260); } iprot.readMapEnd(); } @@ -29806,9 +28860,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(ROWS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.rows.size())); - for (java.nio.ByteBuffer _iter272 : struct.rows) + for (java.nio.ByteBuffer _iter262 : struct.rows) { - oprot.writeBinary(_iter272); + oprot.writeBinary(_iter262); } oprot.writeListEnd(); } @@ -29818,9 +28872,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter273 : struct.columns) + for (java.nio.ByteBuffer _iter263 : struct.columns) { - oprot.writeBinary(_iter273); + oprot.writeBinary(_iter263); } oprot.writeListEnd(); } @@ -29830,10 +28884,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter274 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter264 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter274.getKey()); - oprot.writeBinary(_iter274.getValue()); + oprot.writeBinary(_iter264.getKey()); + oprot.writeBinary(_iter264.getValue()); } oprot.writeMapEnd(); } @@ -29876,28 +28930,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumns_ if (struct.isSetRows()) { { oprot.writeI32(struct.rows.size()); - for (java.nio.ByteBuffer _iter275 : struct.rows) + for (java.nio.ByteBuffer _iter265 : struct.rows) { - oprot.writeBinary(_iter275); + oprot.writeBinary(_iter265); } } } if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter276 : struct.columns) + for (java.nio.ByteBuffer _iter266 : struct.columns) { - oprot.writeBinary(_iter276); + oprot.writeBinary(_iter266); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter277 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter267 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter277.getKey()); - oprot.writeBinary(_iter277.getValue()); + oprot.writeBinary(_iter267.getKey()); + oprot.writeBinary(_iter267.getValue()); } } } @@ -29913,41 +28967,41 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumns_a } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list278 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.rows = new java.util.ArrayList(_list278.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem279; - for (int _i280 = 0; _i280 < _list278.size; ++_i280) + org.apache.thrift.protocol.TList _list268 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.rows = new java.util.ArrayList(_list268.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem269; + for (int _i270 = 0; _i270 < _list268.size; ++_i270) { - _elem279 = iprot.readBinary(); - struct.rows.add(_elem279); + _elem269 = iprot.readBinary(); + struct.rows.add(_elem269); } } struct.setRowsIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list281 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list281.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem282; - for (int _i283 = 0; _i283 < _list281.size; ++_i283) + org.apache.thrift.protocol.TList _list271 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list271.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem272; + for (int _i273 = 0; _i273 < _list271.size; ++_i273) { - _elem282 = iprot.readBinary(); - struct.columns.add(_elem282); + _elem272 = iprot.readBinary(); + struct.columns.add(_elem272); } } struct.setColumnsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map284 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map284.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key285; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val286; - for (int _i287 = 0; _i287 < _map284.size; ++_i287) + org.apache.thrift.protocol.TMap _map274 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map274.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key275; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val276; + for (int _i277 = 0; _i277 < _map274.size; ++_i277) { - _key285 = iprot.readBinary(); - _val286 = iprot.readBinary(); - struct.attributes.put(_key285, _val286); + _key275 = iprot.readBinary(); + _val276 = iprot.readBinary(); + struct.attributes.put(_key275, _val276); } } struct.setAttributesIsSet(true); @@ -30360,14 +29414,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumns_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list288 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list288.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem289; - for (int _i290 = 0; _i290 < _list288.size; ++_i290) + org.apache.thrift.protocol.TList _list278 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list278.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem279; + for (int _i280 = 0; _i280 < _list278.size; ++_i280) { - _elem289 = new TRowResult(); - _elem289.read(iprot); - struct.success.add(_elem289); + _elem279 = new TRowResult(); + _elem279.read(iprot); + struct.success.add(_elem279); } iprot.readListEnd(); } @@ -30404,9 +29458,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter291 : struct.success) + for (TRowResult _iter281 : struct.success) { - _iter291.write(oprot); + _iter281.write(oprot); } oprot.writeListEnd(); } @@ -30445,9 +29499,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumns_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter292 : struct.success) + for (TRowResult _iter282 : struct.success) { - _iter292.write(oprot); + _iter282.write(oprot); } } } @@ -30462,14 +29516,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumns_r java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list293 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list293.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem294; - for (int _i295 = 0; _i295 < _list293.size; ++_i295) + org.apache.thrift.protocol.TList _list283 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list283.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem284; + for (int _i285 = 0; _i285 < _list283.size; ++_i285) { - _elem294 = new TRowResult(); - _elem294.read(iprot); - struct.success.add(_elem294); + _elem284 = new TRowResult(); + _elem284.read(iprot); + struct.success.add(_elem284); } } struct.setSuccessIsSet(true); @@ -31142,13 +30196,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsTs_args stru case 2: // ROWS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list296 = iprot.readListBegin(); - struct.rows = new java.util.ArrayList(_list296.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem297; - for (int _i298 = 0; _i298 < _list296.size; ++_i298) + org.apache.thrift.protocol.TList _list286 = iprot.readListBegin(); + struct.rows = new java.util.ArrayList(_list286.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem287; + for (int _i288 = 0; _i288 < _list286.size; ++_i288) { - _elem297 = iprot.readBinary(); - struct.rows.add(_elem297); + _elem287 = iprot.readBinary(); + struct.rows.add(_elem287); } iprot.readListEnd(); } @@ -31168,15 +30222,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsTs_args stru case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map299 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map299.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key300; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val301; - for (int _i302 = 0; _i302 < _map299.size; ++_i302) + org.apache.thrift.protocol.TMap _map289 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map289.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key290; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val291; + for (int _i292 = 0; _i292 < _map289.size; ++_i292) { - _key300 = iprot.readBinary(); - _val301 = iprot.readBinary(); - struct.attributes.put(_key300, _val301); + _key290 = iprot.readBinary(); + _val291 = iprot.readBinary(); + struct.attributes.put(_key290, _val291); } iprot.readMapEnd(); } @@ -31209,9 +30263,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsTs_args str oprot.writeFieldBegin(ROWS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.rows.size())); - for (java.nio.ByteBuffer _iter303 : struct.rows) + for (java.nio.ByteBuffer _iter293 : struct.rows) { - oprot.writeBinary(_iter303); + oprot.writeBinary(_iter293); } oprot.writeListEnd(); } @@ -31224,10 +30278,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsTs_args str oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter304 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter294 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter304.getKey()); - oprot.writeBinary(_iter304.getValue()); + oprot.writeBinary(_iter294.getKey()); + oprot.writeBinary(_iter294.getValue()); } oprot.writeMapEnd(); } @@ -31270,9 +30324,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsTs_args stru if (struct.isSetRows()) { { oprot.writeI32(struct.rows.size()); - for (java.nio.ByteBuffer _iter305 : struct.rows) + for (java.nio.ByteBuffer _iter295 : struct.rows) { - oprot.writeBinary(_iter305); + oprot.writeBinary(_iter295); } } } @@ -31282,10 +30336,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsTs_args stru if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter306 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter296 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter306.getKey()); - oprot.writeBinary(_iter306.getValue()); + oprot.writeBinary(_iter296.getKey()); + oprot.writeBinary(_iter296.getValue()); } } } @@ -31301,13 +30355,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsTs_args struc } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list307 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.rows = new java.util.ArrayList(_list307.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem308; - for (int _i309 = 0; _i309 < _list307.size; ++_i309) + org.apache.thrift.protocol.TList _list297 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.rows = new java.util.ArrayList(_list297.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem298; + for (int _i299 = 0; _i299 < _list297.size; ++_i299) { - _elem308 = iprot.readBinary(); - struct.rows.add(_elem308); + _elem298 = iprot.readBinary(); + struct.rows.add(_elem298); } } struct.setRowsIsSet(true); @@ -31318,15 +30372,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsTs_args struc } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map310 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map310.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key311; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val312; - for (int _i313 = 0; _i313 < _map310.size; ++_i313) + org.apache.thrift.protocol.TMap _map300 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map300.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key301; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val302; + for (int _i303 = 0; _i303 < _map300.size; ++_i303) { - _key311 = iprot.readBinary(); - _val312 = iprot.readBinary(); - struct.attributes.put(_key311, _val312); + _key301 = iprot.readBinary(); + _val302 = iprot.readBinary(); + struct.attributes.put(_key301, _val302); } } struct.setAttributesIsSet(true); @@ -31739,14 +30793,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsTs_result st case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list314 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list314.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem315; - for (int _i316 = 0; _i316 < _list314.size; ++_i316) + org.apache.thrift.protocol.TList _list304 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list304.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem305; + for (int _i306 = 0; _i306 < _list304.size; ++_i306) { - _elem315 = new TRowResult(); - _elem315.read(iprot); - struct.success.add(_elem315); + _elem305 = new TRowResult(); + _elem305.read(iprot); + struct.success.add(_elem305); } iprot.readListEnd(); } @@ -31783,9 +30837,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsTs_result s oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter317 : struct.success) + for (TRowResult _iter307 : struct.success) { - _iter317.write(oprot); + _iter307.write(oprot); } oprot.writeListEnd(); } @@ -31824,9 +30878,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsTs_result st if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter318 : struct.success) + for (TRowResult _iter308 : struct.success) { - _iter318.write(oprot); + _iter308.write(oprot); } } } @@ -31841,14 +30895,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsTs_result str java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list319 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list319.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem320; - for (int _i321 = 0; _i321 < _list319.size; ++_i321) + org.apache.thrift.protocol.TList _list309 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list309.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem310; + for (int _i311 = 0; _i311 < _list309.size; ++_i311) { - _elem320 = new TRowResult(); - _elem320.read(iprot); - struct.success.add(_elem320); + _elem310 = new TRowResult(); + _elem310.read(iprot); + struct.success.add(_elem310); } } struct.setSuccessIsSet(true); @@ -32624,13 +31678,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumnsT case 2: // ROWS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list322 = iprot.readListBegin(); - struct.rows = new java.util.ArrayList(_list322.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem323; - for (int _i324 = 0; _i324 < _list322.size; ++_i324) + org.apache.thrift.protocol.TList _list312 = iprot.readListBegin(); + struct.rows = new java.util.ArrayList(_list312.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem313; + for (int _i314 = 0; _i314 < _list312.size; ++_i314) { - _elem323 = iprot.readBinary(); - struct.rows.add(_elem323); + _elem313 = iprot.readBinary(); + struct.rows.add(_elem313); } iprot.readListEnd(); } @@ -32642,13 +31696,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumnsT case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list325 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list325.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem326; - for (int _i327 = 0; _i327 < _list325.size; ++_i327) + org.apache.thrift.protocol.TList _list315 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list315.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem316; + for (int _i317 = 0; _i317 < _list315.size; ++_i317) { - _elem326 = iprot.readBinary(); - struct.columns.add(_elem326); + _elem316 = iprot.readBinary(); + struct.columns.add(_elem316); } iprot.readListEnd(); } @@ -32668,15 +31722,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumnsT case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map328 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map328.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key329; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val330; - for (int _i331 = 0; _i331 < _map328.size; ++_i331) + org.apache.thrift.protocol.TMap _map318 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map318.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key319; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val320; + for (int _i321 = 0; _i321 < _map318.size; ++_i321) { - _key329 = iprot.readBinary(); - _val330 = iprot.readBinary(); - struct.attributes.put(_key329, _val330); + _key319 = iprot.readBinary(); + _val320 = iprot.readBinary(); + struct.attributes.put(_key319, _val320); } iprot.readMapEnd(); } @@ -32709,9 +31763,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(ROWS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.rows.size())); - for (java.nio.ByteBuffer _iter332 : struct.rows) + for (java.nio.ByteBuffer _iter322 : struct.rows) { - oprot.writeBinary(_iter332); + oprot.writeBinary(_iter322); } oprot.writeListEnd(); } @@ -32721,9 +31775,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter333 : struct.columns) + for (java.nio.ByteBuffer _iter323 : struct.columns) { - oprot.writeBinary(_iter333); + oprot.writeBinary(_iter323); } oprot.writeListEnd(); } @@ -32736,10 +31790,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter334 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter324 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter334.getKey()); - oprot.writeBinary(_iter334.getValue()); + oprot.writeBinary(_iter324.getKey()); + oprot.writeBinary(_iter324.getValue()); } oprot.writeMapEnd(); } @@ -32785,18 +31839,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsT if (struct.isSetRows()) { { oprot.writeI32(struct.rows.size()); - for (java.nio.ByteBuffer _iter335 : struct.rows) + for (java.nio.ByteBuffer _iter325 : struct.rows) { - oprot.writeBinary(_iter335); + oprot.writeBinary(_iter325); } } } if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter336 : struct.columns) + for (java.nio.ByteBuffer _iter326 : struct.columns) { - oprot.writeBinary(_iter336); + oprot.writeBinary(_iter326); } } } @@ -32806,10 +31860,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsT if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter337 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter327 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter337.getKey()); - oprot.writeBinary(_iter337.getValue()); + oprot.writeBinary(_iter327.getKey()); + oprot.writeBinary(_iter327.getValue()); } } } @@ -32825,26 +31879,26 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsTs } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list338 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.rows = new java.util.ArrayList(_list338.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem339; - for (int _i340 = 0; _i340 < _list338.size; ++_i340) + org.apache.thrift.protocol.TList _list328 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.rows = new java.util.ArrayList(_list328.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem329; + for (int _i330 = 0; _i330 < _list328.size; ++_i330) { - _elem339 = iprot.readBinary(); - struct.rows.add(_elem339); + _elem329 = iprot.readBinary(); + struct.rows.add(_elem329); } } struct.setRowsIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list341 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list341.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem342; - for (int _i343 = 0; _i343 < _list341.size; ++_i343) + org.apache.thrift.protocol.TList _list331 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list331.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem332; + for (int _i333 = 0; _i333 < _list331.size; ++_i333) { - _elem342 = iprot.readBinary(); - struct.columns.add(_elem342); + _elem332 = iprot.readBinary(); + struct.columns.add(_elem332); } } struct.setColumnsIsSet(true); @@ -32855,15 +31909,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsTs } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map344 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map344.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key345; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val346; - for (int _i347 = 0; _i347 < _map344.size; ++_i347) + org.apache.thrift.protocol.TMap _map334 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map334.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key335; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val336; + for (int _i337 = 0; _i337 < _map334.size; ++_i337) { - _key345 = iprot.readBinary(); - _val346 = iprot.readBinary(); - struct.attributes.put(_key345, _val346); + _key335 = iprot.readBinary(); + _val336 = iprot.readBinary(); + struct.attributes.put(_key335, _val336); } } struct.setAttributesIsSet(true); @@ -33276,14 +32330,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumnsT case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list348 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list348.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem349; - for (int _i350 = 0; _i350 < _list348.size; ++_i350) + org.apache.thrift.protocol.TList _list338 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list338.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem339; + for (int _i340 = 0; _i340 < _list338.size; ++_i340) { - _elem349 = new TRowResult(); - _elem349.read(iprot); - struct.success.add(_elem349); + _elem339 = new TRowResult(); + _elem339.read(iprot); + struct.success.add(_elem339); } iprot.readListEnd(); } @@ -33320,9 +32374,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter351 : struct.success) + for (TRowResult _iter341 : struct.success) { - _iter351.write(oprot); + _iter341.write(oprot); } oprot.writeListEnd(); } @@ -33361,9 +32415,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsT if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter352 : struct.success) + for (TRowResult _iter342 : struct.success) { - _iter352.write(oprot); + _iter342.write(oprot); } } } @@ -33378,14 +32432,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsTs java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list353 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list353.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem354; - for (int _i355 = 0; _i355 < _list353.size; ++_i355) + org.apache.thrift.protocol.TList _list343 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list343.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem344; + for (int _i345 = 0; _i345 < _list343.size; ++_i345) { - _elem354 = new TRowResult(); - _elem354.read(iprot); - struct.success.add(_elem354); + _elem344 = new TRowResult(); + _elem344.read(iprot); + struct.success.add(_elem344); } } struct.setSuccessIsSet(true); @@ -34082,14 +33136,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRow_args stru case 3: // MUTATIONS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list356 = iprot.readListBegin(); - struct.mutations = new java.util.ArrayList(_list356.size); - @org.apache.thrift.annotation.Nullable Mutation _elem357; - for (int _i358 = 0; _i358 < _list356.size; ++_i358) + org.apache.thrift.protocol.TList _list346 = iprot.readListBegin(); + struct.mutations = new java.util.ArrayList(_list346.size); + @org.apache.thrift.annotation.Nullable Mutation _elem347; + for (int _i348 = 0; _i348 < _list346.size; ++_i348) { - _elem357 = new Mutation(); - _elem357.read(iprot); - struct.mutations.add(_elem357); + _elem347 = new Mutation(); + _elem347.read(iprot); + struct.mutations.add(_elem347); } iprot.readListEnd(); } @@ -34101,15 +33155,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRow_args stru case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map359 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map359.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key360; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val361; - for (int _i362 = 0; _i362 < _map359.size; ++_i362) + org.apache.thrift.protocol.TMap _map349 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map349.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key350; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val351; + for (int _i352 = 0; _i352 < _map349.size; ++_i352) { - _key360 = iprot.readBinary(); - _val361 = iprot.readBinary(); - struct.attributes.put(_key360, _val361); + _key350 = iprot.readBinary(); + _val351 = iprot.readBinary(); + struct.attributes.put(_key350, _val351); } iprot.readMapEnd(); } @@ -34147,9 +33201,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRow_args str oprot.writeFieldBegin(MUTATIONS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.mutations.size())); - for (Mutation _iter363 : struct.mutations) + for (Mutation _iter353 : struct.mutations) { - _iter363.write(oprot); + _iter353.write(oprot); } oprot.writeListEnd(); } @@ -34159,10 +33213,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRow_args str oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter364 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter354 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter364.getKey()); - oprot.writeBinary(_iter364.getValue()); + oprot.writeBinary(_iter354.getKey()); + oprot.writeBinary(_iter354.getValue()); } oprot.writeMapEnd(); } @@ -34208,19 +33262,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRow_args stru if (struct.isSetMutations()) { { oprot.writeI32(struct.mutations.size()); - for (Mutation _iter365 : struct.mutations) + for (Mutation _iter355 : struct.mutations) { - _iter365.write(oprot); + _iter355.write(oprot); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter366 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter356 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter366.getKey()); - oprot.writeBinary(_iter366.getValue()); + oprot.writeBinary(_iter356.getKey()); + oprot.writeBinary(_iter356.getValue()); } } } @@ -34240,29 +33294,29 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRow_args struc } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list367 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.mutations = new java.util.ArrayList(_list367.size); - @org.apache.thrift.annotation.Nullable Mutation _elem368; - for (int _i369 = 0; _i369 < _list367.size; ++_i369) + org.apache.thrift.protocol.TList _list357 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.mutations = new java.util.ArrayList(_list357.size); + @org.apache.thrift.annotation.Nullable Mutation _elem358; + for (int _i359 = 0; _i359 < _list357.size; ++_i359) { - _elem368 = new Mutation(); - _elem368.read(iprot); - struct.mutations.add(_elem368); + _elem358 = new Mutation(); + _elem358.read(iprot); + struct.mutations.add(_elem358); } } struct.setMutationsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map370 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map370.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key371; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val372; - for (int _i373 = 0; _i373 < _map370.size; ++_i373) + org.apache.thrift.protocol.TMap _map360 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map360.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key361; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val362; + for (int _i363 = 0; _i363 < _map360.size; ++_i363) { - _key371 = iprot.readBinary(); - _val372 = iprot.readBinary(); - struct.attributes.put(_key371, _val372); + _key361 = iprot.readBinary(); + _val362 = iprot.readBinary(); + struct.attributes.put(_key361, _val362); } } struct.setAttributesIsSet(true); @@ -35519,14 +34573,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRowTs_args st case 3: // MUTATIONS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list374 = iprot.readListBegin(); - struct.mutations = new java.util.ArrayList(_list374.size); - @org.apache.thrift.annotation.Nullable Mutation _elem375; - for (int _i376 = 0; _i376 < _list374.size; ++_i376) + org.apache.thrift.protocol.TList _list364 = iprot.readListBegin(); + struct.mutations = new java.util.ArrayList(_list364.size); + @org.apache.thrift.annotation.Nullable Mutation _elem365; + for (int _i366 = 0; _i366 < _list364.size; ++_i366) { - _elem375 = new Mutation(); - _elem375.read(iprot); - struct.mutations.add(_elem375); + _elem365 = new Mutation(); + _elem365.read(iprot); + struct.mutations.add(_elem365); } iprot.readListEnd(); } @@ -35546,15 +34600,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRowTs_args st case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map377 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map377.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key378; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val379; - for (int _i380 = 0; _i380 < _map377.size; ++_i380) + org.apache.thrift.protocol.TMap _map367 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map367.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key368; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val369; + for (int _i370 = 0; _i370 < _map367.size; ++_i370) { - _key378 = iprot.readBinary(); - _val379 = iprot.readBinary(); - struct.attributes.put(_key378, _val379); + _key368 = iprot.readBinary(); + _val369 = iprot.readBinary(); + struct.attributes.put(_key368, _val369); } iprot.readMapEnd(); } @@ -35592,9 +34646,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRowTs_args s oprot.writeFieldBegin(MUTATIONS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.mutations.size())); - for (Mutation _iter381 : struct.mutations) + for (Mutation _iter371 : struct.mutations) { - _iter381.write(oprot); + _iter371.write(oprot); } oprot.writeListEnd(); } @@ -35607,10 +34661,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRowTs_args s oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter382 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter372 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter382.getKey()); - oprot.writeBinary(_iter382.getValue()); + oprot.writeBinary(_iter372.getKey()); + oprot.writeBinary(_iter372.getValue()); } oprot.writeMapEnd(); } @@ -35659,9 +34713,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRowTs_args st if (struct.isSetMutations()) { { oprot.writeI32(struct.mutations.size()); - for (Mutation _iter383 : struct.mutations) + for (Mutation _iter373 : struct.mutations) { - _iter383.write(oprot); + _iter373.write(oprot); } } } @@ -35671,10 +34725,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRowTs_args st if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter384 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter374 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter384.getKey()); - oprot.writeBinary(_iter384.getValue()); + oprot.writeBinary(_iter374.getKey()); + oprot.writeBinary(_iter374.getValue()); } } } @@ -35694,14 +34748,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRowTs_args str } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list385 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.mutations = new java.util.ArrayList(_list385.size); - @org.apache.thrift.annotation.Nullable Mutation _elem386; - for (int _i387 = 0; _i387 < _list385.size; ++_i387) + org.apache.thrift.protocol.TList _list375 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.mutations = new java.util.ArrayList(_list375.size); + @org.apache.thrift.annotation.Nullable Mutation _elem376; + for (int _i377 = 0; _i377 < _list375.size; ++_i377) { - _elem386 = new Mutation(); - _elem386.read(iprot); - struct.mutations.add(_elem386); + _elem376 = new Mutation(); + _elem376.read(iprot); + struct.mutations.add(_elem376); } } struct.setMutationsIsSet(true); @@ -35712,15 +34766,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRowTs_args str } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map388 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map388.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key389; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val390; - for (int _i391 = 0; _i391 < _map388.size; ++_i391) + org.apache.thrift.protocol.TMap _map378 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map378.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key379; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val380; + for (int _i381 = 0; _i381 < _map378.size; ++_i381) { - _key389 = iprot.readBinary(); - _val390 = iprot.readBinary(); - struct.attributes.put(_key389, _val390); + _key379 = iprot.readBinary(); + _val380 = iprot.readBinary(); + struct.attributes.put(_key379, _val380); } } struct.setAttributesIsSet(true); @@ -36771,14 +35825,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRows_args str case 2: // ROW_BATCHES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list392 = iprot.readListBegin(); - struct.rowBatches = new java.util.ArrayList(_list392.size); - @org.apache.thrift.annotation.Nullable BatchMutation _elem393; - for (int _i394 = 0; _i394 < _list392.size; ++_i394) + org.apache.thrift.protocol.TList _list382 = iprot.readListBegin(); + struct.rowBatches = new java.util.ArrayList(_list382.size); + @org.apache.thrift.annotation.Nullable BatchMutation _elem383; + for (int _i384 = 0; _i384 < _list382.size; ++_i384) { - _elem393 = new BatchMutation(); - _elem393.read(iprot); - struct.rowBatches.add(_elem393); + _elem383 = new BatchMutation(); + _elem383.read(iprot); + struct.rowBatches.add(_elem383); } iprot.readListEnd(); } @@ -36790,15 +35844,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRows_args str case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map395 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map395.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key396; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val397; - for (int _i398 = 0; _i398 < _map395.size; ++_i398) + org.apache.thrift.protocol.TMap _map385 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map385.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key386; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val387; + for (int _i388 = 0; _i388 < _map385.size; ++_i388) { - _key396 = iprot.readBinary(); - _val397 = iprot.readBinary(); - struct.attributes.put(_key396, _val397); + _key386 = iprot.readBinary(); + _val387 = iprot.readBinary(); + struct.attributes.put(_key386, _val387); } iprot.readMapEnd(); } @@ -36831,9 +35885,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRows_args st oprot.writeFieldBegin(ROW_BATCHES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.rowBatches.size())); - for (BatchMutation _iter399 : struct.rowBatches) + for (BatchMutation _iter389 : struct.rowBatches) { - _iter399.write(oprot); + _iter389.write(oprot); } oprot.writeListEnd(); } @@ -36843,10 +35897,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRows_args st oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter400 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter390 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter400.getKey()); - oprot.writeBinary(_iter400.getValue()); + oprot.writeBinary(_iter390.getKey()); + oprot.writeBinary(_iter390.getValue()); } oprot.writeMapEnd(); } @@ -36886,19 +35940,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRows_args str if (struct.isSetRowBatches()) { { oprot.writeI32(struct.rowBatches.size()); - for (BatchMutation _iter401 : struct.rowBatches) + for (BatchMutation _iter391 : struct.rowBatches) { - _iter401.write(oprot); + _iter391.write(oprot); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter402 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter392 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter402.getKey()); - oprot.writeBinary(_iter402.getValue()); + oprot.writeBinary(_iter392.getKey()); + oprot.writeBinary(_iter392.getValue()); } } } @@ -36914,29 +35968,29 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRows_args stru } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list403 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.rowBatches = new java.util.ArrayList(_list403.size); - @org.apache.thrift.annotation.Nullable BatchMutation _elem404; - for (int _i405 = 0; _i405 < _list403.size; ++_i405) + org.apache.thrift.protocol.TList _list393 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.rowBatches = new java.util.ArrayList(_list393.size); + @org.apache.thrift.annotation.Nullable BatchMutation _elem394; + for (int _i395 = 0; _i395 < _list393.size; ++_i395) { - _elem404 = new BatchMutation(); - _elem404.read(iprot); - struct.rowBatches.add(_elem404); + _elem394 = new BatchMutation(); + _elem394.read(iprot); + struct.rowBatches.add(_elem394); } } struct.setRowBatchesIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map406 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map406.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key407; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val408; - for (int _i409 = 0; _i409 < _map406.size; ++_i409) + org.apache.thrift.protocol.TMap _map396 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map396.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key397; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val398; + for (int _i399 = 0; _i399 < _map396.size; ++_i399) { - _key407 = iprot.readBinary(); - _val408 = iprot.readBinary(); - struct.attributes.put(_key407, _val408); + _key397 = iprot.readBinary(); + _val398 = iprot.readBinary(); + struct.attributes.put(_key397, _val398); } } struct.setAttributesIsSet(true); @@ -38078,14 +37132,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRowsTs_args s case 2: // ROW_BATCHES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list410 = iprot.readListBegin(); - struct.rowBatches = new java.util.ArrayList(_list410.size); - @org.apache.thrift.annotation.Nullable BatchMutation _elem411; - for (int _i412 = 0; _i412 < _list410.size; ++_i412) + org.apache.thrift.protocol.TList _list400 = iprot.readListBegin(); + struct.rowBatches = new java.util.ArrayList(_list400.size); + @org.apache.thrift.annotation.Nullable BatchMutation _elem401; + for (int _i402 = 0; _i402 < _list400.size; ++_i402) { - _elem411 = new BatchMutation(); - _elem411.read(iprot); - struct.rowBatches.add(_elem411); + _elem401 = new BatchMutation(); + _elem401.read(iprot); + struct.rowBatches.add(_elem401); } iprot.readListEnd(); } @@ -38105,15 +37159,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRowsTs_args s case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map413 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map413.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key414; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val415; - for (int _i416 = 0; _i416 < _map413.size; ++_i416) + org.apache.thrift.protocol.TMap _map403 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map403.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key404; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val405; + for (int _i406 = 0; _i406 < _map403.size; ++_i406) { - _key414 = iprot.readBinary(); - _val415 = iprot.readBinary(); - struct.attributes.put(_key414, _val415); + _key404 = iprot.readBinary(); + _val405 = iprot.readBinary(); + struct.attributes.put(_key404, _val405); } iprot.readMapEnd(); } @@ -38146,9 +37200,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRowsTs_args oprot.writeFieldBegin(ROW_BATCHES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.rowBatches.size())); - for (BatchMutation _iter417 : struct.rowBatches) + for (BatchMutation _iter407 : struct.rowBatches) { - _iter417.write(oprot); + _iter407.write(oprot); } oprot.writeListEnd(); } @@ -38161,10 +37215,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRowsTs_args oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter418 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter408 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter418.getKey()); - oprot.writeBinary(_iter418.getValue()); + oprot.writeBinary(_iter408.getKey()); + oprot.writeBinary(_iter408.getValue()); } oprot.writeMapEnd(); } @@ -38207,9 +37261,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRowsTs_args s if (struct.isSetRowBatches()) { { oprot.writeI32(struct.rowBatches.size()); - for (BatchMutation _iter419 : struct.rowBatches) + for (BatchMutation _iter409 : struct.rowBatches) { - _iter419.write(oprot); + _iter409.write(oprot); } } } @@ -38219,10 +37273,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRowsTs_args s if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter420 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter410 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter420.getKey()); - oprot.writeBinary(_iter420.getValue()); + oprot.writeBinary(_iter410.getKey()); + oprot.writeBinary(_iter410.getValue()); } } } @@ -38238,14 +37292,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRowsTs_args st } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list421 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.rowBatches = new java.util.ArrayList(_list421.size); - @org.apache.thrift.annotation.Nullable BatchMutation _elem422; - for (int _i423 = 0; _i423 < _list421.size; ++_i423) + org.apache.thrift.protocol.TList _list411 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.rowBatches = new java.util.ArrayList(_list411.size); + @org.apache.thrift.annotation.Nullable BatchMutation _elem412; + for (int _i413 = 0; _i413 < _list411.size; ++_i413) { - _elem422 = new BatchMutation(); - _elem422.read(iprot); - struct.rowBatches.add(_elem422); + _elem412 = new BatchMutation(); + _elem412.read(iprot); + struct.rowBatches.add(_elem412); } } struct.setRowBatchesIsSet(true); @@ -38256,15 +37310,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRowsTs_args st } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map424 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map424.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key425; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val426; - for (int _i427 = 0; _i427 < _map424.size; ++_i427) + org.apache.thrift.protocol.TMap _map414 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map414.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key415; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val416; + for (int _i417 = 0; _i417 < _map414.size; ++_i417) { - _key425 = iprot.readBinary(); - _val426 = iprot.readBinary(); - struct.attributes.put(_key425, _val426); + _key415 = iprot.readBinary(); + _val416 = iprot.readBinary(); + struct.attributes.put(_key415, _val416); } } struct.setAttributesIsSet(true); @@ -40768,15 +39822,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, deleteAll_args stru case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map428 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map428.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key429; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val430; - for (int _i431 = 0; _i431 < _map428.size; ++_i431) + org.apache.thrift.protocol.TMap _map418 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map418.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key419; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val420; + for (int _i421 = 0; _i421 < _map418.size; ++_i421) { - _key429 = iprot.readBinary(); - _val430 = iprot.readBinary(); - struct.attributes.put(_key429, _val430); + _key419 = iprot.readBinary(); + _val420 = iprot.readBinary(); + struct.attributes.put(_key419, _val420); } iprot.readMapEnd(); } @@ -40819,10 +39873,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, deleteAll_args str oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter432 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter422 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter432.getKey()); - oprot.writeBinary(_iter432.getValue()); + oprot.writeBinary(_iter422.getKey()); + oprot.writeBinary(_iter422.getValue()); } oprot.writeMapEnd(); } @@ -40871,10 +39925,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, deleteAll_args stru if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter433 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter423 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter433.getKey()); - oprot.writeBinary(_iter433.getValue()); + oprot.writeBinary(_iter423.getKey()); + oprot.writeBinary(_iter423.getValue()); } } } @@ -40898,15 +39952,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, deleteAll_args struc } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map434 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map434.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key435; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val436; - for (int _i437 = 0; _i437 < _map434.size; ++_i437) + org.apache.thrift.protocol.TMap _map424 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map424.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key425; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val426; + for (int _i427 = 0; _i427 < _map424.size; ++_i427) { - _key435 = iprot.readBinary(); - _val436 = iprot.readBinary(); - struct.attributes.put(_key435, _val436); + _key425 = iprot.readBinary(); + _val426 = iprot.readBinary(); + struct.attributes.put(_key425, _val426); } } struct.setAttributesIsSet(true); @@ -42064,15 +41118,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, deleteAllTs_args st case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map438 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map438.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key439; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val440; - for (int _i441 = 0; _i441 < _map438.size; ++_i441) + org.apache.thrift.protocol.TMap _map428 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map428.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key429; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val430; + for (int _i431 = 0; _i431 < _map428.size; ++_i431) { - _key439 = iprot.readBinary(); - _val440 = iprot.readBinary(); - struct.attributes.put(_key439, _val440); + _key429 = iprot.readBinary(); + _val430 = iprot.readBinary(); + struct.attributes.put(_key429, _val430); } iprot.readMapEnd(); } @@ -42118,10 +41172,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, deleteAllTs_args s oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter442 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter432 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter442.getKey()); - oprot.writeBinary(_iter442.getValue()); + oprot.writeBinary(_iter432.getKey()); + oprot.writeBinary(_iter432.getValue()); } oprot.writeMapEnd(); } @@ -42176,10 +41230,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, deleteAllTs_args st if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter443 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter433 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter443.getKey()); - oprot.writeBinary(_iter443.getValue()); + oprot.writeBinary(_iter433.getKey()); + oprot.writeBinary(_iter433.getValue()); } } } @@ -42207,15 +41261,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, deleteAllTs_args str } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map444 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map444.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key445; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val446; - for (int _i447 = 0; _i447 < _map444.size; ++_i447) + org.apache.thrift.protocol.TMap _map434 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map434.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key435; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val436; + for (int _i437 = 0; _i437 < _map434.size; ++_i437) { - _key445 = iprot.readBinary(); - _val446 = iprot.readBinary(); - struct.attributes.put(_key445, _val446); + _key435 = iprot.readBinary(); + _val436 = iprot.readBinary(); + struct.attributes.put(_key435, _val436); } } struct.setAttributesIsSet(true); @@ -43159,15 +42213,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, deleteAllRow_args s case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map448 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map448.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key449; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val450; - for (int _i451 = 0; _i451 < _map448.size; ++_i451) + org.apache.thrift.protocol.TMap _map438 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map438.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key439; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val440; + for (int _i441 = 0; _i441 < _map438.size; ++_i441) { - _key449 = iprot.readBinary(); - _val450 = iprot.readBinary(); - struct.attributes.put(_key449, _val450); + _key439 = iprot.readBinary(); + _val440 = iprot.readBinary(); + struct.attributes.put(_key439, _val440); } iprot.readMapEnd(); } @@ -43205,10 +42259,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, deleteAllRow_args oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter452 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter442 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter452.getKey()); - oprot.writeBinary(_iter452.getValue()); + oprot.writeBinary(_iter442.getKey()); + oprot.writeBinary(_iter442.getValue()); } oprot.writeMapEnd(); } @@ -43251,10 +42305,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, deleteAllRow_args s if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter453 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter443 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter453.getKey()); - oprot.writeBinary(_iter453.getValue()); + oprot.writeBinary(_iter443.getKey()); + oprot.writeBinary(_iter443.getValue()); } } } @@ -43274,15 +42328,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, deleteAllRow_args st } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map454 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map454.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key455; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val456; - for (int _i457 = 0; _i457 < _map454.size; ++_i457) + org.apache.thrift.protocol.TMap _map444 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map444.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key445; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val446; + for (int _i447 = 0; _i447 < _map444.size; ++_i447) { - _key455 = iprot.readBinary(); - _val456 = iprot.readBinary(); - struct.attributes.put(_key455, _val456); + _key445 = iprot.readBinary(); + _val446 = iprot.readBinary(); + struct.attributes.put(_key445, _val446); } } struct.setAttributesIsSet(true); @@ -44741,14 +43795,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, incrementRows_args case 1: // INCREMENTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list458 = iprot.readListBegin(); - struct.increments = new java.util.ArrayList(_list458.size); - @org.apache.thrift.annotation.Nullable TIncrement _elem459; - for (int _i460 = 0; _i460 < _list458.size; ++_i460) + org.apache.thrift.protocol.TList _list448 = iprot.readListBegin(); + struct.increments = new java.util.ArrayList(_list448.size); + @org.apache.thrift.annotation.Nullable TIncrement _elem449; + for (int _i450 = 0; _i450 < _list448.size; ++_i450) { - _elem459 = new TIncrement(); - _elem459.read(iprot); - struct.increments.add(_elem459); + _elem449 = new TIncrement(); + _elem449.read(iprot); + struct.increments.add(_elem449); } iprot.readListEnd(); } @@ -44776,9 +43830,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, incrementRows_args oprot.writeFieldBegin(INCREMENTS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.increments.size())); - for (TIncrement _iter461 : struct.increments) + for (TIncrement _iter451 : struct.increments) { - _iter461.write(oprot); + _iter451.write(oprot); } oprot.writeListEnd(); } @@ -44809,9 +43863,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, incrementRows_args if (struct.isSetIncrements()) { { oprot.writeI32(struct.increments.size()); - for (TIncrement _iter462 : struct.increments) + for (TIncrement _iter452 : struct.increments) { - _iter462.write(oprot); + _iter452.write(oprot); } } } @@ -44823,14 +43877,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, incrementRows_args s java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list463 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.increments = new java.util.ArrayList(_list463.size); - @org.apache.thrift.annotation.Nullable TIncrement _elem464; - for (int _i465 = 0; _i465 < _list463.size; ++_i465) + org.apache.thrift.protocol.TList _list453 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.increments = new java.util.ArrayList(_list453.size); + @org.apache.thrift.annotation.Nullable TIncrement _elem454; + for (int _i455 = 0; _i455 < _list453.size; ++_i455) { - _elem464 = new TIncrement(); - _elem464.read(iprot); - struct.increments.add(_elem464); + _elem454 = new TIncrement(); + _elem454.read(iprot); + struct.increments.add(_elem454); } } struct.setIncrementsIsSet(true); @@ -45873,15 +44927,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, deleteAllRowTs_args case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map466 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map466.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key467; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val468; - for (int _i469 = 0; _i469 < _map466.size; ++_i469) + org.apache.thrift.protocol.TMap _map456 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map456.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key457; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val458; + for (int _i459 = 0; _i459 < _map456.size; ++_i459) { - _key467 = iprot.readBinary(); - _val468 = iprot.readBinary(); - struct.attributes.put(_key467, _val468); + _key457 = iprot.readBinary(); + _val458 = iprot.readBinary(); + struct.attributes.put(_key457, _val458); } iprot.readMapEnd(); } @@ -45922,10 +44976,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, deleteAllRowTs_arg oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter470 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter460 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter470.getKey()); - oprot.writeBinary(_iter470.getValue()); + oprot.writeBinary(_iter460.getKey()); + oprot.writeBinary(_iter460.getValue()); } oprot.writeMapEnd(); } @@ -45974,10 +45028,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, deleteAllRowTs_args if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter471 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter461 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter471.getKey()); - oprot.writeBinary(_iter471.getValue()); + oprot.writeBinary(_iter461.getKey()); + oprot.writeBinary(_iter461.getValue()); } } } @@ -46001,15 +45055,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, deleteAllRowTs_args } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map472 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map472.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key473; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val474; - for (int _i475 = 0; _i475 < _map472.size; ++_i475) + org.apache.thrift.protocol.TMap _map462 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map462.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key463; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val464; + for (int _i465 = 0; _i465 < _map462.size; ++_i465) { - _key473 = iprot.readBinary(); - _val474 = iprot.readBinary(); - struct.attributes.put(_key473, _val474); + _key463 = iprot.readBinary(); + _val464 = iprot.readBinary(); + struct.attributes.put(_key463, _val464); } } struct.setAttributesIsSet(true); @@ -46944,15 +45998,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithScan case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map476 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map476.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key477; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val478; - for (int _i479 = 0; _i479 < _map476.size; ++_i479) + org.apache.thrift.protocol.TMap _map466 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map466.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key467; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val468; + for (int _i469 = 0; _i469 < _map466.size; ++_i469) { - _key477 = iprot.readBinary(); - _val478 = iprot.readBinary(); - struct.attributes.put(_key477, _val478); + _key467 = iprot.readBinary(); + _val468 = iprot.readBinary(); + struct.attributes.put(_key467, _val468); } iprot.readMapEnd(); } @@ -46990,10 +46044,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSca oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter480 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter470 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter480.getKey()); - oprot.writeBinary(_iter480.getValue()); + oprot.writeBinary(_iter470.getKey()); + oprot.writeBinary(_iter470.getValue()); } oprot.writeMapEnd(); } @@ -47036,10 +46090,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithScan if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter481 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter471 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter481.getKey()); - oprot.writeBinary(_iter481.getValue()); + oprot.writeBinary(_iter471.getKey()); + oprot.writeBinary(_iter471.getValue()); } } } @@ -47060,15 +46114,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithScan_ } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map482 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map482.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key483; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val484; - for (int _i485 = 0; _i485 < _map482.size; ++_i485) + org.apache.thrift.protocol.TMap _map472 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map472.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key473; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val474; + for (int _i475 = 0; _i475 < _map472.size; ++_i475) { - _key483 = iprot.readBinary(); - _val484 = iprot.readBinary(); - struct.attributes.put(_key483, _val484); + _key473 = iprot.readBinary(); + _val474 = iprot.readBinary(); + struct.attributes.put(_key473, _val474); } } struct.setAttributesIsSet(true); @@ -48241,13 +47295,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpen_args st case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list486 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list486.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem487; - for (int _i488 = 0; _i488 < _list486.size; ++_i488) + org.apache.thrift.protocol.TList _list476 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list476.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem477; + for (int _i478 = 0; _i478 < _list476.size; ++_i478) { - _elem487 = iprot.readBinary(); - struct.columns.add(_elem487); + _elem477 = iprot.readBinary(); + struct.columns.add(_elem477); } iprot.readListEnd(); } @@ -48259,15 +47313,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpen_args st case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map489 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map489.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key490; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val491; - for (int _i492 = 0; _i492 < _map489.size; ++_i492) + org.apache.thrift.protocol.TMap _map479 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map479.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key480; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val481; + for (int _i482 = 0; _i482 < _map479.size; ++_i482) { - _key490 = iprot.readBinary(); - _val491 = iprot.readBinary(); - struct.attributes.put(_key490, _val491); + _key480 = iprot.readBinary(); + _val481 = iprot.readBinary(); + struct.attributes.put(_key480, _val481); } iprot.readMapEnd(); } @@ -48305,9 +47359,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpen_args s oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter493 : struct.columns) + for (java.nio.ByteBuffer _iter483 : struct.columns) { - oprot.writeBinary(_iter493); + oprot.writeBinary(_iter483); } oprot.writeListEnd(); } @@ -48317,10 +47371,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpen_args s oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter494 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter484 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter494.getKey()); - oprot.writeBinary(_iter494.getValue()); + oprot.writeBinary(_iter484.getKey()); + oprot.writeBinary(_iter484.getValue()); } oprot.writeMapEnd(); } @@ -48366,19 +47420,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpen_args st if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter495 : struct.columns) + for (java.nio.ByteBuffer _iter485 : struct.columns) { - oprot.writeBinary(_iter495); + oprot.writeBinary(_iter485); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter496 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter486 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter496.getKey()); - oprot.writeBinary(_iter496.getValue()); + oprot.writeBinary(_iter486.getKey()); + oprot.writeBinary(_iter486.getValue()); } } } @@ -48398,28 +47452,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpen_args str } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list497 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list497.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem498; - for (int _i499 = 0; _i499 < _list497.size; ++_i499) + org.apache.thrift.protocol.TList _list487 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list487.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem488; + for (int _i489 = 0; _i489 < _list487.size; ++_i489) { - _elem498 = iprot.readBinary(); - struct.columns.add(_elem498); + _elem488 = iprot.readBinary(); + struct.columns.add(_elem488); } } struct.setColumnsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map500 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map500.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key501; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val502; - for (int _i503 = 0; _i503 < _map500.size; ++_i503) + org.apache.thrift.protocol.TMap _map490 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map490.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key491; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val492; + for (int _i493 = 0; _i493 < _map490.size; ++_i493) { - _key501 = iprot.readBinary(); - _val502 = iprot.readBinary(); - struct.attributes.put(_key501, _val502); + _key491 = iprot.readBinary(); + _val492 = iprot.readBinary(); + struct.attributes.put(_key491, _val492); } } struct.setAttributesIsSet(true); @@ -49711,13 +48765,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithStop case 4: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list504 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list504.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem505; - for (int _i506 = 0; _i506 < _list504.size; ++_i506) + org.apache.thrift.protocol.TList _list494 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list494.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem495; + for (int _i496 = 0; _i496 < _list494.size; ++_i496) { - _elem505 = iprot.readBinary(); - struct.columns.add(_elem505); + _elem495 = iprot.readBinary(); + struct.columns.add(_elem495); } iprot.readListEnd(); } @@ -49729,15 +48783,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithStop case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map507 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map507.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key508; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val509; - for (int _i510 = 0; _i510 < _map507.size; ++_i510) + org.apache.thrift.protocol.TMap _map497 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map497.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key498; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val499; + for (int _i500 = 0; _i500 < _map497.size; ++_i500) { - _key508 = iprot.readBinary(); - _val509 = iprot.readBinary(); - struct.attributes.put(_key508, _val509); + _key498 = iprot.readBinary(); + _val499 = iprot.readBinary(); + struct.attributes.put(_key498, _val499); } iprot.readMapEnd(); } @@ -49780,9 +48834,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSto oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter511 : struct.columns) + for (java.nio.ByteBuffer _iter501 : struct.columns) { - oprot.writeBinary(_iter511); + oprot.writeBinary(_iter501); } oprot.writeListEnd(); } @@ -49792,10 +48846,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSto oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter512 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter502 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter512.getKey()); - oprot.writeBinary(_iter512.getValue()); + oprot.writeBinary(_iter502.getKey()); + oprot.writeBinary(_iter502.getValue()); } oprot.writeMapEnd(); } @@ -49847,19 +48901,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStop if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter513 : struct.columns) + for (java.nio.ByteBuffer _iter503 : struct.columns) { - oprot.writeBinary(_iter513); + oprot.writeBinary(_iter503); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter514 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter504 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter514.getKey()); - oprot.writeBinary(_iter514.getValue()); + oprot.writeBinary(_iter504.getKey()); + oprot.writeBinary(_iter504.getValue()); } } } @@ -49883,28 +48937,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStop_ } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list515 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list515.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem516; - for (int _i517 = 0; _i517 < _list515.size; ++_i517) + org.apache.thrift.protocol.TList _list505 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list505.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem506; + for (int _i507 = 0; _i507 < _list505.size; ++_i507) { - _elem516 = iprot.readBinary(); - struct.columns.add(_elem516); + _elem506 = iprot.readBinary(); + struct.columns.add(_elem506); } } struct.setColumnsIsSet(true); } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map518 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map518.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key519; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val520; - for (int _i521 = 0; _i521 < _map518.size; ++_i521) + org.apache.thrift.protocol.TMap _map508 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map508.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key509; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val510; + for (int _i511 = 0; _i511 < _map508.size; ++_i511) { - _key519 = iprot.readBinary(); - _val520 = iprot.readBinary(); - struct.attributes.put(_key519, _val520); + _key509 = iprot.readBinary(); + _val510 = iprot.readBinary(); + struct.attributes.put(_key509, _val510); } } struct.setAttributesIsSet(true); @@ -51065,13 +50119,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithPref case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list522 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list522.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem523; - for (int _i524 = 0; _i524 < _list522.size; ++_i524) + org.apache.thrift.protocol.TList _list512 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list512.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem513; + for (int _i514 = 0; _i514 < _list512.size; ++_i514) { - _elem523 = iprot.readBinary(); - struct.columns.add(_elem523); + _elem513 = iprot.readBinary(); + struct.columns.add(_elem513); } iprot.readListEnd(); } @@ -51083,15 +50137,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithPref case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map525 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map525.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key526; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val527; - for (int _i528 = 0; _i528 < _map525.size; ++_i528) + org.apache.thrift.protocol.TMap _map515 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map515.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key516; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val517; + for (int _i518 = 0; _i518 < _map515.size; ++_i518) { - _key526 = iprot.readBinary(); - _val527 = iprot.readBinary(); - struct.attributes.put(_key526, _val527); + _key516 = iprot.readBinary(); + _val517 = iprot.readBinary(); + struct.attributes.put(_key516, _val517); } iprot.readMapEnd(); } @@ -51129,9 +50183,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithPre oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter529 : struct.columns) + for (java.nio.ByteBuffer _iter519 : struct.columns) { - oprot.writeBinary(_iter529); + oprot.writeBinary(_iter519); } oprot.writeListEnd(); } @@ -51141,10 +50195,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithPre oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter530 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter520 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter530.getKey()); - oprot.writeBinary(_iter530.getValue()); + oprot.writeBinary(_iter520.getKey()); + oprot.writeBinary(_iter520.getValue()); } oprot.writeMapEnd(); } @@ -51190,19 +50244,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithPref if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter531 : struct.columns) + for (java.nio.ByteBuffer _iter521 : struct.columns) { - oprot.writeBinary(_iter531); + oprot.writeBinary(_iter521); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter532 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter522 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter532.getKey()); - oprot.writeBinary(_iter532.getValue()); + oprot.writeBinary(_iter522.getKey()); + oprot.writeBinary(_iter522.getValue()); } } } @@ -51222,28 +50276,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithPrefi } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list533 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list533.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem534; - for (int _i535 = 0; _i535 < _list533.size; ++_i535) + org.apache.thrift.protocol.TList _list523 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list523.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem524; + for (int _i525 = 0; _i525 < _list523.size; ++_i525) { - _elem534 = iprot.readBinary(); - struct.columns.add(_elem534); + _elem524 = iprot.readBinary(); + struct.columns.add(_elem524); } } struct.setColumnsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map536 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map536.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key537; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val538; - for (int _i539 = 0; _i539 < _map536.size; ++_i539) + org.apache.thrift.protocol.TMap _map526 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map526.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key527; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val528; + for (int _i529 = 0; _i529 < _map526.size; ++_i529) { - _key537 = iprot.readBinary(); - _val538 = iprot.readBinary(); - struct.attributes.put(_key537, _val538); + _key527 = iprot.readBinary(); + _val528 = iprot.readBinary(); + struct.attributes.put(_key527, _val528); } } struct.setAttributesIsSet(true); @@ -52507,13 +51561,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenTs_args case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list540 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list540.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem541; - for (int _i542 = 0; _i542 < _list540.size; ++_i542) + org.apache.thrift.protocol.TList _list530 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list530.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem531; + for (int _i532 = 0; _i532 < _list530.size; ++_i532) { - _elem541 = iprot.readBinary(); - struct.columns.add(_elem541); + _elem531 = iprot.readBinary(); + struct.columns.add(_elem531); } iprot.readListEnd(); } @@ -52533,15 +51587,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenTs_args case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map543 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map543.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key544; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val545; - for (int _i546 = 0; _i546 < _map543.size; ++_i546) + org.apache.thrift.protocol.TMap _map533 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map533.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key534; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val535; + for (int _i536 = 0; _i536 < _map533.size; ++_i536) { - _key544 = iprot.readBinary(); - _val545 = iprot.readBinary(); - struct.attributes.put(_key544, _val545); + _key534 = iprot.readBinary(); + _val535 = iprot.readBinary(); + struct.attributes.put(_key534, _val535); } iprot.readMapEnd(); } @@ -52579,9 +51633,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenTs_args oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter547 : struct.columns) + for (java.nio.ByteBuffer _iter537 : struct.columns) { - oprot.writeBinary(_iter547); + oprot.writeBinary(_iter537); } oprot.writeListEnd(); } @@ -52594,10 +51648,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenTs_args oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter548 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter538 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter548.getKey()); - oprot.writeBinary(_iter548.getValue()); + oprot.writeBinary(_iter538.getKey()); + oprot.writeBinary(_iter538.getValue()); } oprot.writeMapEnd(); } @@ -52646,9 +51700,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenTs_args if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter549 : struct.columns) + for (java.nio.ByteBuffer _iter539 : struct.columns) { - oprot.writeBinary(_iter549); + oprot.writeBinary(_iter539); } } } @@ -52658,10 +51712,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenTs_args if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter550 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter540 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter550.getKey()); - oprot.writeBinary(_iter550.getValue()); + oprot.writeBinary(_iter540.getKey()); + oprot.writeBinary(_iter540.getValue()); } } } @@ -52681,13 +51735,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenTs_args s } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list551 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list551.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem552; - for (int _i553 = 0; _i553 < _list551.size; ++_i553) + org.apache.thrift.protocol.TList _list541 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list541.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem542; + for (int _i543 = 0; _i543 < _list541.size; ++_i543) { - _elem552 = iprot.readBinary(); - struct.columns.add(_elem552); + _elem542 = iprot.readBinary(); + struct.columns.add(_elem542); } } struct.setColumnsIsSet(true); @@ -52698,15 +51752,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenTs_args s } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map554 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map554.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key555; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val556; - for (int _i557 = 0; _i557 < _map554.size; ++_i557) + org.apache.thrift.protocol.TMap _map544 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map544.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key545; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val546; + for (int _i547 = 0; _i547 < _map544.size; ++_i547) { - _key555 = iprot.readBinary(); - _val556 = iprot.readBinary(); - struct.attributes.put(_key555, _val556); + _key545 = iprot.readBinary(); + _val546 = iprot.readBinary(); + struct.attributes.put(_key545, _val546); } } struct.setAttributesIsSet(true); @@ -54089,13 +53143,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithStop case 4: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list558 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list558.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem559; - for (int _i560 = 0; _i560 < _list558.size; ++_i560) + org.apache.thrift.protocol.TList _list548 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list548.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem549; + for (int _i550 = 0; _i550 < _list548.size; ++_i550) { - _elem559 = iprot.readBinary(); - struct.columns.add(_elem559); + _elem549 = iprot.readBinary(); + struct.columns.add(_elem549); } iprot.readListEnd(); } @@ -54115,15 +53169,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithStop case 6: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map561 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map561.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key562; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val563; - for (int _i564 = 0; _i564 < _map561.size; ++_i564) + org.apache.thrift.protocol.TMap _map551 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map551.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key552; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val553; + for (int _i554 = 0; _i554 < _map551.size; ++_i554) { - _key562 = iprot.readBinary(); - _val563 = iprot.readBinary(); - struct.attributes.put(_key562, _val563); + _key552 = iprot.readBinary(); + _val553 = iprot.readBinary(); + struct.attributes.put(_key552, _val553); } iprot.readMapEnd(); } @@ -54166,9 +53220,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSto oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter565 : struct.columns) + for (java.nio.ByteBuffer _iter555 : struct.columns) { - oprot.writeBinary(_iter565); + oprot.writeBinary(_iter555); } oprot.writeListEnd(); } @@ -54181,10 +53235,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSto oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter566 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter556 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter566.getKey()); - oprot.writeBinary(_iter566.getValue()); + oprot.writeBinary(_iter556.getKey()); + oprot.writeBinary(_iter556.getValue()); } oprot.writeMapEnd(); } @@ -54239,9 +53293,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStop if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter567 : struct.columns) + for (java.nio.ByteBuffer _iter557 : struct.columns) { - oprot.writeBinary(_iter567); + oprot.writeBinary(_iter557); } } } @@ -54251,10 +53305,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStop if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter568 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter558 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter568.getKey()); - oprot.writeBinary(_iter568.getValue()); + oprot.writeBinary(_iter558.getKey()); + oprot.writeBinary(_iter558.getValue()); } } } @@ -54278,13 +53332,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStopT } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list569 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list569.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem570; - for (int _i571 = 0; _i571 < _list569.size; ++_i571) + org.apache.thrift.protocol.TList _list559 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list559.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem560; + for (int _i561 = 0; _i561 < _list559.size; ++_i561) { - _elem570 = iprot.readBinary(); - struct.columns.add(_elem570); + _elem560 = iprot.readBinary(); + struct.columns.add(_elem560); } } struct.setColumnsIsSet(true); @@ -54295,15 +53349,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStopT } if (incoming.get(5)) { { - org.apache.thrift.protocol.TMap _map572 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map572.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key573; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val574; - for (int _i575 = 0; _i575 < _map572.size; ++_i575) + org.apache.thrift.protocol.TMap _map562 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map562.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key563; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val564; + for (int _i565 = 0; _i565 < _map562.size; ++_i565) { - _key573 = iprot.readBinary(); - _val574 = iprot.readBinary(); - struct.attributes.put(_key573, _val574); + _key563 = iprot.readBinary(); + _val564 = iprot.readBinary(); + struct.attributes.put(_key563, _val564); } } struct.setAttributesIsSet(true); @@ -55639,14 +54693,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerGet_result s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list576 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list576.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem577; - for (int _i578 = 0; _i578 < _list576.size; ++_i578) + org.apache.thrift.protocol.TList _list566 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list566.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem567; + for (int _i568 = 0; _i568 < _list566.size; ++_i568) { - _elem577 = new TRowResult(); - _elem577.read(iprot); - struct.success.add(_elem577); + _elem567 = new TRowResult(); + _elem567.read(iprot); + struct.success.add(_elem567); } iprot.readListEnd(); } @@ -55692,9 +54746,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerGet_result oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter579 : struct.success) + for (TRowResult _iter569 : struct.success) { - _iter579.write(oprot); + _iter569.write(oprot); } oprot.writeListEnd(); } @@ -55741,9 +54795,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerGet_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter580 : struct.success) + for (TRowResult _iter570 : struct.success) { - _iter580.write(oprot); + _iter570.write(oprot); } } } @@ -55761,14 +54815,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerGet_result st java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list581 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list581.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem582; - for (int _i583 = 0; _i583 < _list581.size; ++_i583) + org.apache.thrift.protocol.TList _list571 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list571.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem572; + for (int _i573 = 0; _i573 < _list571.size; ++_i573) { - _elem582 = new TRowResult(); - _elem582.read(iprot); - struct.success.add(_elem582); + _elem572 = new TRowResult(); + _elem572.read(iprot); + struct.success.add(_elem572); } } struct.setSuccessIsSet(true); @@ -56753,14 +55807,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerGetList_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list584 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list584.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem585; - for (int _i586 = 0; _i586 < _list584.size; ++_i586) + org.apache.thrift.protocol.TList _list574 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list574.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem575; + for (int _i576 = 0; _i576 < _list574.size; ++_i576) { - _elem585 = new TRowResult(); - _elem585.read(iprot); - struct.success.add(_elem585); + _elem575 = new TRowResult(); + _elem575.read(iprot); + struct.success.add(_elem575); } iprot.readListEnd(); } @@ -56806,9 +55860,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerGetList_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter587 : struct.success) + for (TRowResult _iter577 : struct.success) { - _iter587.write(oprot); + _iter577.write(oprot); } oprot.writeListEnd(); } @@ -56855,9 +55909,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerGetList_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter588 : struct.success) + for (TRowResult _iter578 : struct.success) { - _iter588.write(oprot); + _iter578.write(oprot); } } } @@ -56875,14 +55929,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerGetList_resul java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list589 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list589.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem590; - for (int _i591 = 0; _i591 < _list589.size; ++_i591) + org.apache.thrift.protocol.TList _list579 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list579.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem580; + for (int _i581 = 0; _i581 < _list579.size; ++_i581) { - _elem590 = new TRowResult(); - _elem590.read(iprot); - struct.success.add(_elem590); + _elem580 = new TRowResult(); + _elem580.read(iprot); + struct.success.add(_elem580); } } struct.setSuccessIsSet(true); @@ -59400,14 +58454,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, append_result struc case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list592 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list592.size); - @org.apache.thrift.annotation.Nullable TCell _elem593; - for (int _i594 = 0; _i594 < _list592.size; ++_i594) + org.apache.thrift.protocol.TList _list582 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list582.size); + @org.apache.thrift.annotation.Nullable TCell _elem583; + for (int _i584 = 0; _i584 < _list582.size; ++_i584) { - _elem593 = new TCell(); - _elem593.read(iprot); - struct.success.add(_elem593); + _elem583 = new TCell(); + _elem583.read(iprot); + struct.success.add(_elem583); } iprot.readListEnd(); } @@ -59444,9 +58498,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, append_result stru oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TCell _iter595 : struct.success) + for (TCell _iter585 : struct.success) { - _iter595.write(oprot); + _iter585.write(oprot); } oprot.writeListEnd(); } @@ -59485,9 +58539,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, append_result struc if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TCell _iter596 : struct.success) + for (TCell _iter586 : struct.success) { - _iter596.write(oprot); + _iter586.write(oprot); } } } @@ -59502,14 +58556,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, append_result struct java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list597 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list597.size); - @org.apache.thrift.annotation.Nullable TCell _elem598; - for (int _i599 = 0; _i599 < _list597.size; ++_i599) + org.apache.thrift.protocol.TList _list587 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list587.size); + @org.apache.thrift.annotation.Nullable TCell _elem588; + for (int _i589 = 0; _i589 < _list587.size; ++_i589) { - _elem598 = new TCell(); - _elem598.read(iprot); - struct.success.add(_elem598); + _elem588 = new TCell(); + _elem588.read(iprot); + struct.success.add(_elem588); } } struct.setSuccessIsSet(true); @@ -60435,15 +59489,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, checkAndPut_args st case 7: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map600 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map600.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key601; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val602; - for (int _i603 = 0; _i603 < _map600.size; ++_i603) + org.apache.thrift.protocol.TMap _map590 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map590.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key591; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val592; + for (int _i593 = 0; _i593 < _map590.size; ++_i593) { - _key601 = iprot.readBinary(); - _val602 = iprot.readBinary(); - struct.attributes.put(_key601, _val602); + _key591 = iprot.readBinary(); + _val592 = iprot.readBinary(); + struct.attributes.put(_key591, _val592); } iprot.readMapEnd(); } @@ -60496,10 +59550,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, checkAndPut_args s oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter604 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter594 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter604.getKey()); - oprot.writeBinary(_iter604.getValue()); + oprot.writeBinary(_iter594.getKey()); + oprot.writeBinary(_iter594.getValue()); } oprot.writeMapEnd(); } @@ -60560,10 +59614,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, checkAndPut_args st if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter605 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter595 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter605.getKey()); - oprot.writeBinary(_iter605.getValue()); + oprot.writeBinary(_iter595.getKey()); + oprot.writeBinary(_iter595.getValue()); } } } @@ -60596,15 +59650,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, checkAndPut_args str } if (incoming.get(5)) { { - org.apache.thrift.protocol.TMap _map606 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map606.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key607; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val608; - for (int _i609 = 0; _i609 < _map606.size; ++_i609) + org.apache.thrift.protocol.TMap _map596 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map596.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key597; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val598; + for (int _i599 = 0; _i599 < _map596.size; ++_i599) { - _key607 = iprot.readBinary(); - _val608 = iprot.readBinary(); - struct.attributes.put(_key607, _val608); + _key597 = iprot.readBinary(); + _val598 = iprot.readBinary(); + struct.attributes.put(_key597, _val598); } } struct.setAttributesIsSet(true); From 9e0a4aa6f193449c567ae04a59f89a9df1395dbc Mon Sep 17 00:00:00 2001 From: Dora Horvath Date: Tue, 5 Oct 2021 16:37:58 +0200 Subject: [PATCH 5/5] Add required generated HBase.java file --- .../hadoop/hbase/thrift/generated/Hbase.java | 5686 ++++++++++------- 1 file changed, 3316 insertions(+), 2370 deletions(-) diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java index 52b63806bff5..43bc7fb60118 100644 --- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java +++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/generated/Hbase.java @@ -7,7 +7,7 @@ package org.apache.hadoop.hbase.thrift.generated; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-07-19") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2021-10-05") public class Hbase { public interface Iface { @@ -45,6 +45,13 @@ public interface Iface { */ public java.util.List getTableNames() throws IOError, org.apache.thrift.TException; + /** + * List all the userspace tables and their enabled or disabled flags. + * + * @return list of tables with is enabled flags + */ + public java.util.Map getTableNamesWithIsTableEnabled() throws IOError, org.apache.thrift.TException; + /** * List all the column families assoicated with a table. * @@ -657,6 +664,8 @@ public interface AsyncIface { public void getTableNames(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; + public void getTableNamesWithIsTableEnabled(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; + public void getColumnDescriptors(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; public void getTableRegions(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException; @@ -906,6 +915,31 @@ public java.util.List recv_getTableNames() throws IOError, throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getTableNames failed: unknown result"); } + public java.util.Map getTableNamesWithIsTableEnabled() throws IOError, org.apache.thrift.TException + { + send_getTableNamesWithIsTableEnabled(); + return recv_getTableNamesWithIsTableEnabled(); + } + + public void send_getTableNamesWithIsTableEnabled() throws org.apache.thrift.TException + { + getTableNamesWithIsTableEnabled_args args = new getTableNamesWithIsTableEnabled_args(); + sendBase("getTableNamesWithIsTableEnabled", args); + } + + public java.util.Map recv_getTableNamesWithIsTableEnabled() throws IOError, org.apache.thrift.TException + { + getTableNamesWithIsTableEnabled_result result = new getTableNamesWithIsTableEnabled_result(); + receiveBase(result, "getTableNamesWithIsTableEnabled"); + if (result.isSetSuccess()) { + return result.success; + } + if (result.io != null) { + throw result.io; + } + throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getTableNamesWithIsTableEnabled failed: unknown result"); + } + public java.util.Map getColumnDescriptors(java.nio.ByteBuffer tableName) throws IOError, org.apache.thrift.TException { send_getColumnDescriptors(tableName); @@ -2282,6 +2316,35 @@ public java.util.List getResult() throws IOError, org.apach } } + public void getTableNamesWithIsTableEnabled(org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + checkReady(); + getTableNamesWithIsTableEnabled_call method_call = new getTableNamesWithIsTableEnabled_call(resultHandler, this, ___protocolFactory, ___transport); + this.___currentMethod = method_call; + ___manager.call(method_call); + } + + public static class getTableNamesWithIsTableEnabled_call extends org.apache.thrift.async.TAsyncMethodCall> { + public getTableNamesWithIsTableEnabled_call(org.apache.thrift.async.AsyncMethodCallback> resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException { + super(client, protocolFactory, transport, resultHandler, false); + } + + public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { + prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getTableNamesWithIsTableEnabled", org.apache.thrift.protocol.TMessageType.CALL, 0)); + getTableNamesWithIsTableEnabled_args args = new getTableNamesWithIsTableEnabled_args(); + args.write(prot); + prot.writeMessageEnd(); + } + + public java.util.Map getResult() throws IOError, org.apache.thrift.TException { + if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { + throw new java.lang.IllegalStateException("Method call not finished!"); + } + org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); + org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); + return (new Client(prot)).recv_getTableNamesWithIsTableEnabled(); + } + } + public void getColumnDescriptors(java.nio.ByteBuffer tableName, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { checkReady(); getColumnDescriptors_call method_call = new getColumnDescriptors_call(tableName, resultHandler, this, ___protocolFactory, ___transport); @@ -3912,6 +3975,7 @@ protected Processor(I iface, java.util.Map extends org.apache.thrift.ProcessFunction { + public getTableNamesWithIsTableEnabled() { + super("getTableNamesWithIsTableEnabled"); + } + + public getTableNamesWithIsTableEnabled_args getEmptyArgsInstance() { + return new getTableNamesWithIsTableEnabled_args(); + } + + protected boolean isOneway() { + return false; + } + + @Override + protected boolean rethrowUnhandledExceptions() { + return false; + } + + public getTableNamesWithIsTableEnabled_result getResult(I iface, getTableNamesWithIsTableEnabled_args args) throws org.apache.thrift.TException { + getTableNamesWithIsTableEnabled_result result = new getTableNamesWithIsTableEnabled_result(); + try { + result.success = iface.getTableNamesWithIsTableEnabled(); + } catch (IOError io) { + result.io = io; + } + return result; + } + } + public static class getColumnDescriptors extends org.apache.thrift.ProcessFunction { public getColumnDescriptors() { super("getColumnDescriptors"); @@ -5393,6 +5486,7 @@ protected AsyncProcessor(I iface, java.util.Map extends org.apache.thrift.AsyncProcessFunction> { - public getColumnDescriptors() { - super("getColumnDescriptors"); + public static class getTableNamesWithIsTableEnabled extends org.apache.thrift.AsyncProcessFunction> { + public getTableNamesWithIsTableEnabled() { + super("getTableNamesWithIsTableEnabled"); } - public getColumnDescriptors_args getEmptyArgsInstance() { - return new getColumnDescriptors_args(); + public getTableNamesWithIsTableEnabled_args getEmptyArgsInstance() { + return new getTableNamesWithIsTableEnabled_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.Map o) { - getColumnDescriptors_result result = new getColumnDescriptors_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.Map o) { + getTableNamesWithIsTableEnabled_result result = new getTableNamesWithIsTableEnabled_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -5853,7 +5947,7 @@ public void onComplete(java.util.Map o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getColumnDescriptors_result result = new getColumnDescriptors_result(); + getTableNamesWithIsTableEnabled_result result = new getTableNamesWithIsTableEnabled_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -5885,25 +5979,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getColumnDescriptors_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getColumnDescriptors(args.tableName,resultHandler); + public void start(I iface, getTableNamesWithIsTableEnabled_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getTableNamesWithIsTableEnabled(resultHandler); } } - public static class getTableRegions extends org.apache.thrift.AsyncProcessFunction> { - public getTableRegions() { - super("getTableRegions"); + public static class getColumnDescriptors extends org.apache.thrift.AsyncProcessFunction> { + public getColumnDescriptors() { + super("getColumnDescriptors"); } - public getTableRegions_args getEmptyArgsInstance() { - return new getTableRegions_args(); + public getColumnDescriptors_args getEmptyArgsInstance() { + return new getColumnDescriptors_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getTableRegions_result result = new getTableRegions_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.Map o) { + getColumnDescriptors_result result = new getColumnDescriptors_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -5918,7 +6012,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getTableRegions_result result = new getTableRegions_result(); + getColumnDescriptors_result result = new getColumnDescriptors_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -5950,25 +6044,26 @@ protected boolean isOneway() { return false; } - public void start(I iface, getTableRegions_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getTableRegions(args.tableName,resultHandler); + public void start(I iface, getColumnDescriptors_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getColumnDescriptors(args.tableName,resultHandler); } } - public static class createTable extends org.apache.thrift.AsyncProcessFunction { - public createTable() { - super("createTable"); + public static class getTableRegions extends org.apache.thrift.AsyncProcessFunction> { + public getTableRegions() { + super("getTableRegions"); } - public createTable_args getEmptyArgsInstance() { - return new createTable_args(); + public getTableRegions_args getEmptyArgsInstance() { + return new getTableRegions_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - createTable_result result = new createTable_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getTableRegions_result result = new getTableRegions_result(); + result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -5982,19 +6077,11 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - createTable_result result = new createTable_result(); + getTableRegions_result result = new getTableRegions_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; - } else if (e instanceof AlreadyExists) { - result.exist = (AlreadyExists) e; - result.setExistIsSet(true); - msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -6022,25 +6109,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, createTable_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.createTable(args.tableName, args.columnFamilies,resultHandler); + public void start(I iface, getTableRegions_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getTableRegions(args.tableName,resultHandler); } } - public static class deleteTable extends org.apache.thrift.AsyncProcessFunction { - public deleteTable() { - super("deleteTable"); + public static class createTable extends org.apache.thrift.AsyncProcessFunction { + public createTable() { + super("createTable"); } - public deleteTable_args getEmptyArgsInstance() { - return new deleteTable_args(); + public createTable_args getEmptyArgsInstance() { + return new createTable_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - deleteTable_result result = new deleteTable_result(); + createTable_result result = new createTable_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6054,140 +6141,18 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - deleteTable_result result = new deleteTable_result(); + createTable_result result = new createTable_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof org.apache.thrift.transport.TTransportException) { - _LOGGER.error("TTransportException inside handler", e); - fb.close(); - return; - } else if (e instanceof org.apache.thrift.TApplicationException) { - _LOGGER.error("TApplicationException inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = (org.apache.thrift.TApplicationException)e; - } else { - _LOGGER.error("Exception inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); - } - try { - fcall.sendResponse(fb,msg,msgType,seqid); - } catch (java.lang.Exception ex) { - _LOGGER.error("Exception writing to internal frame buffer", ex); - fb.close(); - } - } - }; - } - - protected boolean isOneway() { - return false; - } - - public void start(I iface, deleteTable_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteTable(args.tableName,resultHandler); - } - } - - public static class get extends org.apache.thrift.AsyncProcessFunction> { - public get() { - super("get"); - } - - public get_args getEmptyArgsInstance() { - return new get_args(); - } - - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { - final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - get_result result = new get_result(); - result.success = o; - try { - fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); - } catch (org.apache.thrift.transport.TTransportException e) { - _LOGGER.error("TTransportException writing to internal frame buffer", e); - fb.close(); - } catch (java.lang.Exception e) { - _LOGGER.error("Exception writing to internal frame buffer", e); - onError(e); - } - } - public void onError(java.lang.Exception e) { - byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; - org.apache.thrift.TSerializable msg; - get_result result = new get_result(); - if (e instanceof IOError) { - result.io = (IOError) e; - result.setIoIsSet(true); + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); msg = result; - } else if (e instanceof org.apache.thrift.transport.TTransportException) { - _LOGGER.error("TTransportException inside handler", e); - fb.close(); - return; - } else if (e instanceof org.apache.thrift.TApplicationException) { - _LOGGER.error("TApplicationException inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = (org.apache.thrift.TApplicationException)e; - } else { - _LOGGER.error("Exception inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); - } - try { - fcall.sendResponse(fb,msg,msgType,seqid); - } catch (java.lang.Exception ex) { - _LOGGER.error("Exception writing to internal frame buffer", ex); - fb.close(); - } - } - }; - } - - protected boolean isOneway() { - return false; - } - - public void start(I iface, get_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.get(args.tableName, args.row, args.column, args.attributes,resultHandler); - } - } - - public static class getVer extends org.apache.thrift.AsyncProcessFunction> { - public getVer() { - super("getVer"); - } - - public getVer_args getEmptyArgsInstance() { - return new getVer_args(); - } - - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { - final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getVer_result result = new getVer_result(); - result.success = o; - try { - fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); - } catch (org.apache.thrift.transport.TTransportException e) { - _LOGGER.error("TTransportException writing to internal frame buffer", e); - fb.close(); - } catch (java.lang.Exception e) { - _LOGGER.error("Exception writing to internal frame buffer", e); - onError(e); - } - } - public void onError(java.lang.Exception e) { - byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; - org.apache.thrift.TSerializable msg; - getVer_result result = new getVer_result(); - if (e instanceof IOError) { - result.io = (IOError) e; - result.setIoIsSet(true); + } else if (e instanceof AlreadyExists) { + result.exist = (AlreadyExists) e; + result.setExistIsSet(true); msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); @@ -6216,25 +6181,89 @@ protected boolean isOneway() { return false; } - public void start(I iface, getVer_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getVer(args.tableName, args.row, args.column, args.numVersions, args.attributes,resultHandler); + public void start(I iface, createTable_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.createTable(args.tableName, args.columnFamilies,resultHandler); } } - public static class getVerTs extends org.apache.thrift.AsyncProcessFunction> { - public getVerTs() { - super("getVerTs"); + public static class deleteTable extends org.apache.thrift.AsyncProcessFunction { + public deleteTable() { + super("deleteTable"); } - public getVerTs_args getEmptyArgsInstance() { - return new getVerTs_args(); + public deleteTable_args getEmptyArgsInstance() { + return new deleteTable_args(); + } + + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + deleteTable_result result = new deleteTable_result(); + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + deleteTable_result result = new deleteTable_result(); + if (e instanceof IOError) { + result.io = (IOError) e; + result.setIoIsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; + } + + protected boolean isOneway() { + return false; + } + + public void start(I iface, deleteTable_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteTable(args.tableName,resultHandler); + } + } + + public static class get extends org.apache.thrift.AsyncProcessFunction> { + public get() { + super("get"); + } + + public get_args getEmptyArgsInstance() { + return new get_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getVerTs_result result = new getVerTs_result(); + get_result result = new get_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6249,7 +6278,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getVerTs_result result = new getVerTs_result(); + get_result result = new get_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6281,25 +6310,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getVerTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getVerTs(args.tableName, args.row, args.column, args.timestamp, args.numVersions, args.attributes,resultHandler); + public void start(I iface, get_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.get(args.tableName, args.row, args.column, args.attributes,resultHandler); } } - public static class getRow extends org.apache.thrift.AsyncProcessFunction> { - public getRow() { - super("getRow"); + public static class getVer extends org.apache.thrift.AsyncProcessFunction> { + public getVer() { + super("getVer"); } - public getRow_args getEmptyArgsInstance() { - return new getRow_args(); + public getVer_args getEmptyArgsInstance() { + return new getVer_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getRow_result result = new getRow_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getVer_result result = new getVer_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6314,7 +6343,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRow_result result = new getRow_result(); + getVer_result result = new getVer_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6346,25 +6375,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRow_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRow(args.tableName, args.row, args.attributes,resultHandler); + public void start(I iface, getVer_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getVer(args.tableName, args.row, args.column, args.numVersions, args.attributes,resultHandler); } } - public static class getRowWithColumns extends org.apache.thrift.AsyncProcessFunction> { - public getRowWithColumns() { - super("getRowWithColumns"); + public static class getVerTs extends org.apache.thrift.AsyncProcessFunction> { + public getVerTs() { + super("getVerTs"); } - public getRowWithColumns_args getEmptyArgsInstance() { - return new getRowWithColumns_args(); + public getVerTs_args getEmptyArgsInstance() { + return new getVerTs_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - getRowWithColumns_result result = new getRowWithColumns_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getVerTs_result result = new getVerTs_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6379,7 +6408,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowWithColumns_result result = new getRowWithColumns_result(); + getVerTs_result result = new getVerTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6411,25 +6440,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowWithColumns_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowWithColumns(args.tableName, args.row, args.columns, args.attributes,resultHandler); + public void start(I iface, getVerTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getVerTs(args.tableName, args.row, args.column, args.timestamp, args.numVersions, args.attributes,resultHandler); } } - public static class getRowTs extends org.apache.thrift.AsyncProcessFunction> { - public getRowTs() { - super("getRowTs"); + public static class getRow extends org.apache.thrift.AsyncProcessFunction> { + public getRow() { + super("getRow"); } - public getRowTs_args getEmptyArgsInstance() { - return new getRowTs_args(); + public getRow_args getEmptyArgsInstance() { + return new getRow_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowTs_result result = new getRowTs_result(); + getRow_result result = new getRow_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6444,7 +6473,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowTs_result result = new getRowTs_result(); + getRow_result result = new getRow_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6476,25 +6505,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowTs(args.tableName, args.row, args.timestamp, args.attributes,resultHandler); + public void start(I iface, getRow_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRow(args.tableName, args.row, args.attributes,resultHandler); } } - public static class getRowWithColumnsTs extends org.apache.thrift.AsyncProcessFunction> { - public getRowWithColumnsTs() { - super("getRowWithColumnsTs"); + public static class getRowWithColumns extends org.apache.thrift.AsyncProcessFunction> { + public getRowWithColumns() { + super("getRowWithColumns"); } - public getRowWithColumnsTs_args getEmptyArgsInstance() { - return new getRowWithColumnsTs_args(); + public getRowWithColumns_args getEmptyArgsInstance() { + return new getRowWithColumns_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowWithColumnsTs_result result = new getRowWithColumnsTs_result(); + getRowWithColumns_result result = new getRowWithColumns_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6509,7 +6538,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowWithColumnsTs_result result = new getRowWithColumnsTs_result(); + getRowWithColumns_result result = new getRowWithColumns_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6541,25 +6570,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowWithColumnsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowWithColumnsTs(args.tableName, args.row, args.columns, args.timestamp, args.attributes,resultHandler); + public void start(I iface, getRowWithColumns_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowWithColumns(args.tableName, args.row, args.columns, args.attributes,resultHandler); } } - public static class getRows extends org.apache.thrift.AsyncProcessFunction> { - public getRows() { - super("getRows"); + public static class getRowTs extends org.apache.thrift.AsyncProcessFunction> { + public getRowTs() { + super("getRowTs"); } - public getRows_args getEmptyArgsInstance() { - return new getRows_args(); + public getRowTs_args getEmptyArgsInstance() { + return new getRowTs_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRows_result result = new getRows_result(); + getRowTs_result result = new getRowTs_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6574,7 +6603,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRows_result result = new getRows_result(); + getRowTs_result result = new getRowTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6606,25 +6635,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRows_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRows(args.tableName, args.rows, args.attributes,resultHandler); + public void start(I iface, getRowTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowTs(args.tableName, args.row, args.timestamp, args.attributes,resultHandler); } } - public static class getRowsWithColumns extends org.apache.thrift.AsyncProcessFunction> { - public getRowsWithColumns() { - super("getRowsWithColumns"); + public static class getRowWithColumnsTs extends org.apache.thrift.AsyncProcessFunction> { + public getRowWithColumnsTs() { + super("getRowWithColumnsTs"); } - public getRowsWithColumns_args getEmptyArgsInstance() { - return new getRowsWithColumns_args(); + public getRowWithColumnsTs_args getEmptyArgsInstance() { + return new getRowWithColumnsTs_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowsWithColumns_result result = new getRowsWithColumns_result(); + getRowWithColumnsTs_result result = new getRowWithColumnsTs_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6639,7 +6668,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowsWithColumns_result result = new getRowsWithColumns_result(); + getRowWithColumnsTs_result result = new getRowWithColumnsTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6671,25 +6700,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowsWithColumns_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowsWithColumns(args.tableName, args.rows, args.columns, args.attributes,resultHandler); + public void start(I iface, getRowWithColumnsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowWithColumnsTs(args.tableName, args.row, args.columns, args.timestamp, args.attributes,resultHandler); } } - public static class getRowsTs extends org.apache.thrift.AsyncProcessFunction> { - public getRowsTs() { - super("getRowsTs"); + public static class getRows extends org.apache.thrift.AsyncProcessFunction> { + public getRows() { + super("getRows"); } - public getRowsTs_args getEmptyArgsInstance() { - return new getRowsTs_args(); + public getRows_args getEmptyArgsInstance() { + return new getRows_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowsTs_result result = new getRowsTs_result(); + getRows_result result = new getRows_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6704,7 +6733,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowsTs_result result = new getRowsTs_result(); + getRows_result result = new getRows_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6736,25 +6765,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowsTs(args.tableName, args.rows, args.timestamp, args.attributes,resultHandler); + public void start(I iface, getRows_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRows(args.tableName, args.rows, args.attributes,resultHandler); } } - public static class getRowsWithColumnsTs extends org.apache.thrift.AsyncProcessFunction> { - public getRowsWithColumnsTs() { - super("getRowsWithColumnsTs"); + public static class getRowsWithColumns extends org.apache.thrift.AsyncProcessFunction> { + public getRowsWithColumns() { + super("getRowsWithColumns"); } - public getRowsWithColumnsTs_args getEmptyArgsInstance() { - return new getRowsWithColumnsTs_args(); + public getRowsWithColumns_args getEmptyArgsInstance() { + return new getRowsWithColumns_args(); } public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback>() { public void onComplete(java.util.List o) { - getRowsWithColumnsTs_result result = new getRowsWithColumnsTs_result(); + getRowsWithColumns_result result = new getRowsWithColumns_result(); result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); @@ -6769,7 +6798,7 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - getRowsWithColumnsTs_result result = new getRowsWithColumnsTs_result(); + getRowsWithColumns_result result = new getRowsWithColumns_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -6801,25 +6830,26 @@ protected boolean isOneway() { return false; } - public void start(I iface, getRowsWithColumnsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.getRowsWithColumnsTs(args.tableName, args.rows, args.columns, args.timestamp, args.attributes,resultHandler); + public void start(I iface, getRowsWithColumns_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowsWithColumns(args.tableName, args.rows, args.columns, args.attributes,resultHandler); } } - public static class mutateRow extends org.apache.thrift.AsyncProcessFunction { - public mutateRow() { - super("mutateRow"); + public static class getRowsTs extends org.apache.thrift.AsyncProcessFunction> { + public getRowsTs() { + super("getRowsTs"); } - public mutateRow_args getEmptyArgsInstance() { - return new mutateRow_args(); + public getRowsTs_args getEmptyArgsInstance() { + return new getRowsTs_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - mutateRow_result result = new mutateRow_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getRowsTs_result result = new getRowsTs_result(); + result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6833,15 +6863,11 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - mutateRow_result result = new mutateRow_result(); + getRowsTs_result result = new getRowsTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -6869,25 +6895,26 @@ protected boolean isOneway() { return false; } - public void start(I iface, mutateRow_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.mutateRow(args.tableName, args.row, args.mutations, args.attributes,resultHandler); + public void start(I iface, getRowsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowsTs(args.tableName, args.rows, args.timestamp, args.attributes,resultHandler); } } - public static class mutateRowTs extends org.apache.thrift.AsyncProcessFunction { - public mutateRowTs() { - super("mutateRowTs"); + public static class getRowsWithColumnsTs extends org.apache.thrift.AsyncProcessFunction> { + public getRowsWithColumnsTs() { + super("getRowsWithColumnsTs"); } - public mutateRowTs_args getEmptyArgsInstance() { - return new mutateRowTs_args(); + public getRowsWithColumnsTs_args getEmptyArgsInstance() { + return new getRowsWithColumnsTs_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - mutateRowTs_result result = new mutateRowTs_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + getRowsWithColumnsTs_result result = new getRowsWithColumnsTs_result(); + result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6901,15 +6928,11 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - mutateRowTs_result result = new mutateRowTs_result(); + getRowsWithColumnsTs_result result = new getRowsWithColumnsTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -6937,25 +6960,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, mutateRowTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.mutateRowTs(args.tableName, args.row, args.mutations, args.timestamp, args.attributes,resultHandler); + public void start(I iface, getRowsWithColumnsTs_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.getRowsWithColumnsTs(args.tableName, args.rows, args.columns, args.timestamp, args.attributes,resultHandler); } } - public static class mutateRows extends org.apache.thrift.AsyncProcessFunction { - public mutateRows() { - super("mutateRows"); + public static class mutateRow extends org.apache.thrift.AsyncProcessFunction { + public mutateRow() { + super("mutateRow"); } - public mutateRows_args getEmptyArgsInstance() { - return new mutateRows_args(); + public mutateRow_args getEmptyArgsInstance() { + return new mutateRow_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - mutateRows_result result = new mutateRows_result(); + mutateRow_result result = new mutateRow_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -6969,7 +6992,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - mutateRows_result result = new mutateRows_result(); + mutateRow_result result = new mutateRow_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7005,25 +7028,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, mutateRows_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.mutateRows(args.tableName, args.rowBatches, args.attributes,resultHandler); + public void start(I iface, mutateRow_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.mutateRow(args.tableName, args.row, args.mutations, args.attributes,resultHandler); } } - public static class mutateRowsTs extends org.apache.thrift.AsyncProcessFunction { - public mutateRowsTs() { - super("mutateRowsTs"); + public static class mutateRowTs extends org.apache.thrift.AsyncProcessFunction { + public mutateRowTs() { + super("mutateRowTs"); } - public mutateRowsTs_args getEmptyArgsInstance() { - return new mutateRowsTs_args(); + public mutateRowTs_args getEmptyArgsInstance() { + return new mutateRowTs_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - mutateRowsTs_result result = new mutateRowsTs_result(); + mutateRowTs_result result = new mutateRowTs_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7037,7 +7060,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - mutateRowsTs_result result = new mutateRowsTs_result(); + mutateRowTs_result result = new mutateRowTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7073,27 +7096,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, mutateRowsTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.mutateRowsTs(args.tableName, args.rowBatches, args.timestamp, args.attributes,resultHandler); + public void start(I iface, mutateRowTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.mutateRowTs(args.tableName, args.row, args.mutations, args.timestamp, args.attributes,resultHandler); } } - public static class atomicIncrement extends org.apache.thrift.AsyncProcessFunction { - public atomicIncrement() { - super("atomicIncrement"); + public static class mutateRows extends org.apache.thrift.AsyncProcessFunction { + public mutateRows() { + super("mutateRows"); } - public atomicIncrement_args getEmptyArgsInstance() { - return new atomicIncrement_args(); + public mutateRows_args getEmptyArgsInstance() { + return new mutateRows_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(java.lang.Long o) { - atomicIncrement_result result = new atomicIncrement_result(); - result.success = o; - result.setSuccessIsSet(true); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + mutateRows_result result = new mutateRows_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7107,7 +7128,7 @@ public void onComplete(java.lang.Long o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - atomicIncrement_result result = new atomicIncrement_result(); + mutateRows_result result = new mutateRows_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7143,25 +7164,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, atomicIncrement_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.atomicIncrement(args.tableName, args.row, args.column, args.value,resultHandler); + public void start(I iface, mutateRows_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.mutateRows(args.tableName, args.rowBatches, args.attributes,resultHandler); } } - public static class deleteAll extends org.apache.thrift.AsyncProcessFunction { - public deleteAll() { - super("deleteAll"); + public static class mutateRowsTs extends org.apache.thrift.AsyncProcessFunction { + public mutateRowsTs() { + super("mutateRowsTs"); } - public deleteAll_args getEmptyArgsInstance() { - return new deleteAll_args(); + public mutateRowsTs_args getEmptyArgsInstance() { + return new mutateRowsTs_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - deleteAll_result result = new deleteAll_result(); + mutateRowsTs_result result = new mutateRowsTs_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7175,74 +7196,14 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - deleteAll_result result = new deleteAll_result(); + mutateRowsTs_result result = new mutateRowsTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof org.apache.thrift.transport.TTransportException) { - _LOGGER.error("TTransportException inside handler", e); - fb.close(); - return; - } else if (e instanceof org.apache.thrift.TApplicationException) { - _LOGGER.error("TApplicationException inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = (org.apache.thrift.TApplicationException)e; - } else { - _LOGGER.error("Exception inside handler", e); - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); - } - try { - fcall.sendResponse(fb,msg,msgType,seqid); - } catch (java.lang.Exception ex) { - _LOGGER.error("Exception writing to internal frame buffer", ex); - fb.close(); - } - } - }; - } - - protected boolean isOneway() { - return false; - } - - public void start(I iface, deleteAll_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteAll(args.tableName, args.row, args.column, args.attributes,resultHandler); - } - } - - public static class deleteAllTs extends org.apache.thrift.AsyncProcessFunction { - public deleteAllTs() { - super("deleteAllTs"); - } - - public deleteAllTs_args getEmptyArgsInstance() { - return new deleteAllTs_args(); - } - - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { - final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - deleteAllTs_result result = new deleteAllTs_result(); - try { - fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); - } catch (org.apache.thrift.transport.TTransportException e) { - _LOGGER.error("TTransportException writing to internal frame buffer", e); - fb.close(); - } catch (java.lang.Exception e) { - _LOGGER.error("Exception writing to internal frame buffer", e); - onError(e); - } - } - public void onError(java.lang.Exception e) { - byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; - org.apache.thrift.TSerializable msg; - deleteAllTs_result result = new deleteAllTs_result(); - if (e instanceof IOError) { - result.io = (IOError) e; - result.setIoIsSet(true); + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); @@ -7271,25 +7232,27 @@ protected boolean isOneway() { return false; } - public void start(I iface, deleteAllTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteAllTs(args.tableName, args.row, args.column, args.timestamp, args.attributes,resultHandler); + public void start(I iface, mutateRowsTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.mutateRowsTs(args.tableName, args.rowBatches, args.timestamp, args.attributes,resultHandler); } } - public static class deleteAllRow extends org.apache.thrift.AsyncProcessFunction { - public deleteAllRow() { - super("deleteAllRow"); + public static class atomicIncrement extends org.apache.thrift.AsyncProcessFunction { + public atomicIncrement() { + super("atomicIncrement"); } - public deleteAllRow_args getEmptyArgsInstance() { - return new deleteAllRow_args(); + public atomicIncrement_args getEmptyArgsInstance() { + return new atomicIncrement_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - deleteAllRow_result result = new deleteAllRow_result(); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(java.lang.Long o) { + atomicIncrement_result result = new atomicIncrement_result(); + result.success = o; + result.setSuccessIsSet(true); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7303,11 +7266,15 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - deleteAllRow_result result = new deleteAllRow_result(); + atomicIncrement_result result = new atomicIncrement_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); + msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -7335,25 +7302,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, deleteAllRow_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteAllRow(args.tableName, args.row, args.attributes,resultHandler); + public void start(I iface, atomicIncrement_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.atomicIncrement(args.tableName, args.row, args.column, args.value,resultHandler); } } - public static class increment extends org.apache.thrift.AsyncProcessFunction { - public increment() { - super("increment"); + public static class deleteAll extends org.apache.thrift.AsyncProcessFunction { + public deleteAll() { + super("deleteAll"); } - public increment_args getEmptyArgsInstance() { - return new increment_args(); + public deleteAll_args getEmptyArgsInstance() { + return new deleteAll_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - increment_result result = new increment_result(); + deleteAll_result result = new deleteAll_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7367,7 +7334,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - increment_result result = new increment_result(); + deleteAll_result result = new deleteAll_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7399,25 +7366,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, increment_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.increment(args.increment,resultHandler); + public void start(I iface, deleteAll_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteAll(args.tableName, args.row, args.column, args.attributes,resultHandler); } } - public static class incrementRows extends org.apache.thrift.AsyncProcessFunction { - public incrementRows() { - super("incrementRows"); + public static class deleteAllTs extends org.apache.thrift.AsyncProcessFunction { + public deleteAllTs() { + super("deleteAllTs"); } - public incrementRows_args getEmptyArgsInstance() { - return new incrementRows_args(); + public deleteAllTs_args getEmptyArgsInstance() { + return new deleteAllTs_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - incrementRows_result result = new incrementRows_result(); + deleteAllTs_result result = new deleteAllTs_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7431,7 +7398,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - incrementRows_result result = new incrementRows_result(); + deleteAllTs_result result = new deleteAllTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7463,25 +7430,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, incrementRows_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.incrementRows(args.increments,resultHandler); + public void start(I iface, deleteAllTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteAllTs(args.tableName, args.row, args.column, args.timestamp, args.attributes,resultHandler); } } - public static class deleteAllRowTs extends org.apache.thrift.AsyncProcessFunction { - public deleteAllRowTs() { - super("deleteAllRowTs"); + public static class deleteAllRow extends org.apache.thrift.AsyncProcessFunction { + public deleteAllRow() { + super("deleteAllRow"); } - public deleteAllRowTs_args getEmptyArgsInstance() { - return new deleteAllRowTs_args(); + public deleteAllRow_args getEmptyArgsInstance() { + return new deleteAllRow_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(Void o) { - deleteAllRowTs_result result = new deleteAllRowTs_result(); + deleteAllRow_result result = new deleteAllRow_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7495,7 +7462,7 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - deleteAllRowTs_result result = new deleteAllRowTs_result(); + deleteAllRow_result result = new deleteAllRow_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7527,27 +7494,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, deleteAllRowTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.deleteAllRowTs(args.tableName, args.row, args.timestamp, args.attributes,resultHandler); + public void start(I iface, deleteAllRow_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteAllRow(args.tableName, args.row, args.attributes,resultHandler); } } - public static class scannerOpenWithScan extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenWithScan() { - super("scannerOpenWithScan"); + public static class increment extends org.apache.thrift.AsyncProcessFunction { + public increment() { + super("increment"); } - public scannerOpenWithScan_args getEmptyArgsInstance() { - return new scannerOpenWithScan_args(); + public increment_args getEmptyArgsInstance() { + return new increment_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(java.lang.Integer o) { - scannerOpenWithScan_result result = new scannerOpenWithScan_result(); - result.success = o; - result.setSuccessIsSet(true); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + increment_result result = new increment_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7561,7 +7526,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenWithScan_result result = new scannerOpenWithScan_result(); + increment_result result = new increment_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7593,27 +7558,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenWithScan_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenWithScan(args.tableName, args.scan, args.attributes,resultHandler); + public void start(I iface, increment_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.increment(args.increment,resultHandler); } } - public static class scannerOpen extends org.apache.thrift.AsyncProcessFunction { - public scannerOpen() { - super("scannerOpen"); + public static class incrementRows extends org.apache.thrift.AsyncProcessFunction { + public incrementRows() { + super("incrementRows"); } - public scannerOpen_args getEmptyArgsInstance() { - return new scannerOpen_args(); + public incrementRows_args getEmptyArgsInstance() { + return new incrementRows_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(java.lang.Integer o) { - scannerOpen_result result = new scannerOpen_result(); - result.success = o; - result.setSuccessIsSet(true); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + incrementRows_result result = new incrementRows_result(); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7627,7 +7590,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpen_result result = new scannerOpen_result(); + incrementRows_result result = new incrementRows_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7659,25 +7622,89 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpen_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpen(args.tableName, args.startRow, args.columns, args.attributes,resultHandler); + public void start(I iface, incrementRows_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.incrementRows(args.increments,resultHandler); } } - public static class scannerOpenWithStop extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenWithStop() { - super("scannerOpenWithStop"); + public static class deleteAllRowTs extends org.apache.thrift.AsyncProcessFunction { + public deleteAllRowTs() { + super("deleteAllRowTs"); } - public scannerOpenWithStop_args getEmptyArgsInstance() { - return new scannerOpenWithStop_args(); + public deleteAllRowTs_args getEmptyArgsInstance() { + return new deleteAllRowTs_args(); + } + + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + deleteAllRowTs_result result = new deleteAllRowTs_result(); + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + deleteAllRowTs_result result = new deleteAllRowTs_result(); + if (e instanceof IOError) { + result.io = (IOError) e; + result.setIoIsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; + } + + protected boolean isOneway() { + return false; + } + + public void start(I iface, deleteAllRowTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.deleteAllRowTs(args.tableName, args.row, args.timestamp, args.attributes,resultHandler); + } + } + + public static class scannerOpenWithScan extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenWithScan() { + super("scannerOpenWithScan"); + } + + public scannerOpenWithScan_args getEmptyArgsInstance() { + return new scannerOpenWithScan_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(java.lang.Integer o) { - scannerOpenWithStop_result result = new scannerOpenWithStop_result(); + scannerOpenWithScan_result result = new scannerOpenWithScan_result(); result.success = o; result.setSuccessIsSet(true); try { @@ -7693,7 +7720,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenWithStop_result result = new scannerOpenWithStop_result(); + scannerOpenWithScan_result result = new scannerOpenWithScan_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7725,25 +7752,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenWithStop_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenWithStop(args.tableName, args.startRow, args.stopRow, args.columns, args.attributes,resultHandler); + public void start(I iface, scannerOpenWithScan_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenWithScan(args.tableName, args.scan, args.attributes,resultHandler); } } - public static class scannerOpenWithPrefix extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenWithPrefix() { - super("scannerOpenWithPrefix"); + public static class scannerOpen extends org.apache.thrift.AsyncProcessFunction { + public scannerOpen() { + super("scannerOpen"); } - public scannerOpenWithPrefix_args getEmptyArgsInstance() { - return new scannerOpenWithPrefix_args(); + public scannerOpen_args getEmptyArgsInstance() { + return new scannerOpen_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(java.lang.Integer o) { - scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result(); + scannerOpen_result result = new scannerOpen_result(); result.success = o; result.setSuccessIsSet(true); try { @@ -7759,7 +7786,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result(); + scannerOpen_result result = new scannerOpen_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7791,25 +7818,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenWithPrefix_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenWithPrefix(args.tableName, args.startAndPrefix, args.columns, args.attributes,resultHandler); + public void start(I iface, scannerOpen_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpen(args.tableName, args.startRow, args.columns, args.attributes,resultHandler); } } - public static class scannerOpenTs extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenTs() { - super("scannerOpenTs"); + public static class scannerOpenWithStop extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenWithStop() { + super("scannerOpenWithStop"); } - public scannerOpenTs_args getEmptyArgsInstance() { - return new scannerOpenTs_args(); + public scannerOpenWithStop_args getEmptyArgsInstance() { + return new scannerOpenWithStop_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(java.lang.Integer o) { - scannerOpenTs_result result = new scannerOpenTs_result(); + scannerOpenWithStop_result result = new scannerOpenWithStop_result(); result.success = o; result.setSuccessIsSet(true); try { @@ -7825,7 +7852,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenTs_result result = new scannerOpenTs_result(); + scannerOpenWithStop_result result = new scannerOpenWithStop_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7857,25 +7884,25 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenTs(args.tableName, args.startRow, args.columns, args.timestamp, args.attributes,resultHandler); + public void start(I iface, scannerOpenWithStop_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenWithStop(args.tableName, args.startRow, args.stopRow, args.columns, args.attributes,resultHandler); } } - public static class scannerOpenWithStopTs extends org.apache.thrift.AsyncProcessFunction { - public scannerOpenWithStopTs() { - super("scannerOpenWithStopTs"); + public static class scannerOpenWithPrefix extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenWithPrefix() { + super("scannerOpenWithPrefix"); } - public scannerOpenWithStopTs_args getEmptyArgsInstance() { - return new scannerOpenWithStopTs_args(); + public scannerOpenWithPrefix_args getEmptyArgsInstance() { + return new scannerOpenWithPrefix_args(); } public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; return new org.apache.thrift.async.AsyncMethodCallback() { public void onComplete(java.lang.Integer o) { - scannerOpenWithStopTs_result result = new scannerOpenWithStopTs_result(); + scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result(); result.success = o; result.setSuccessIsSet(true); try { @@ -7891,7 +7918,7 @@ public void onComplete(java.lang.Integer o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerOpenWithStopTs_result result = new scannerOpenWithStopTs_result(); + scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -7923,26 +7950,27 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerOpenWithStopTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - iface.scannerOpenWithStopTs(args.tableName, args.startRow, args.stopRow, args.columns, args.timestamp, args.attributes,resultHandler); + public void start(I iface, scannerOpenWithPrefix_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenWithPrefix(args.tableName, args.startAndPrefix, args.columns, args.attributes,resultHandler); } } - public static class scannerGet extends org.apache.thrift.AsyncProcessFunction> { - public scannerGet() { - super("scannerGet"); + public static class scannerOpenTs extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenTs() { + super("scannerOpenTs"); } - public scannerGet_args getEmptyArgsInstance() { - return new scannerGet_args(); + public scannerOpenTs_args getEmptyArgsInstance() { + return new scannerOpenTs_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - scannerGet_result result = new scannerGet_result(); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(java.lang.Integer o) { + scannerOpenTs_result result = new scannerOpenTs_result(); result.success = o; + result.setSuccessIsSet(true); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -7956,15 +7984,11 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerGet_result result = new scannerGet_result(); + scannerOpenTs_result result = new scannerOpenTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -7992,26 +8016,27 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerGet_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.scannerGet(args.id,resultHandler); + public void start(I iface, scannerOpenTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenTs(args.tableName, args.startRow, args.columns, args.timestamp, args.attributes,resultHandler); } } - public static class scannerGetList extends org.apache.thrift.AsyncProcessFunction> { - public scannerGetList() { - super("scannerGetList"); + public static class scannerOpenWithStopTs extends org.apache.thrift.AsyncProcessFunction { + public scannerOpenWithStopTs() { + super("scannerOpenWithStopTs"); } - public scannerGetList_args getEmptyArgsInstance() { - return new scannerGetList_args(); + public scannerOpenWithStopTs_args getEmptyArgsInstance() { + return new scannerOpenWithStopTs_args(); } - public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback>() { - public void onComplete(java.util.List o) { - scannerGetList_result result = new scannerGetList_result(); + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(java.lang.Integer o) { + scannerOpenWithStopTs_result result = new scannerOpenWithStopTs_result(); result.success = o; + result.setSuccessIsSet(true); try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -8025,15 +8050,11 @@ public void onComplete(java.util.List o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerGetList_result result = new scannerGetList_result(); + scannerOpenWithStopTs_result result = new scannerOpenWithStopTs_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); msg = result; - } else if (e instanceof IllegalArgument) { - result.ia = (IllegalArgument) e; - result.setIaIsSet(true); - msg = result; } else if (e instanceof org.apache.thrift.transport.TTransportException) { _LOGGER.error("TTransportException inside handler", e); fb.close(); @@ -8061,25 +8082,26 @@ protected boolean isOneway() { return false; } - public void start(I iface, scannerGetList_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { - iface.scannerGetList(args.id, args.nbRows,resultHandler); + public void start(I iface, scannerOpenWithStopTs_args args, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { + iface.scannerOpenWithStopTs(args.tableName, args.startRow, args.stopRow, args.columns, args.timestamp, args.attributes,resultHandler); } } - public static class scannerClose extends org.apache.thrift.AsyncProcessFunction { - public scannerClose() { - super("scannerClose"); + public static class scannerGet extends org.apache.thrift.AsyncProcessFunction> { + public scannerGet() { + super("scannerGet"); } - public scannerClose_args getEmptyArgsInstance() { - return new scannerClose_args(); + public scannerGet_args getEmptyArgsInstance() { + return new scannerGet_args(); } - public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { final org.apache.thrift.AsyncProcessFunction fcall = this; - return new org.apache.thrift.async.AsyncMethodCallback() { - public void onComplete(Void o) { - scannerClose_result result = new scannerClose_result(); + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + scannerGet_result result = new scannerGet_result(); + result.success = o; try { fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); } catch (org.apache.thrift.transport.TTransportException e) { @@ -8093,7 +8115,144 @@ public void onComplete(Void o) { public void onError(java.lang.Exception e) { byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; org.apache.thrift.TSerializable msg; - scannerClose_result result = new scannerClose_result(); + scannerGet_result result = new scannerGet_result(); + if (e instanceof IOError) { + result.io = (IOError) e; + result.setIoIsSet(true); + msg = result; + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; + } + + protected boolean isOneway() { + return false; + } + + public void start(I iface, scannerGet_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.scannerGet(args.id,resultHandler); + } + } + + public static class scannerGetList extends org.apache.thrift.AsyncProcessFunction> { + public scannerGetList() { + super("scannerGetList"); + } + + public scannerGetList_args getEmptyArgsInstance() { + return new scannerGetList_args(); + } + + public org.apache.thrift.async.AsyncMethodCallback> getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback>() { + public void onComplete(java.util.List o) { + scannerGetList_result result = new scannerGetList_result(); + result.success = o; + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + scannerGetList_result result = new scannerGetList_result(); + if (e instanceof IOError) { + result.io = (IOError) e; + result.setIoIsSet(true); + msg = result; + } else if (e instanceof IllegalArgument) { + result.ia = (IllegalArgument) e; + result.setIaIsSet(true); + msg = result; + } else if (e instanceof org.apache.thrift.transport.TTransportException) { + _LOGGER.error("TTransportException inside handler", e); + fb.close(); + return; + } else if (e instanceof org.apache.thrift.TApplicationException) { + _LOGGER.error("TApplicationException inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = (org.apache.thrift.TApplicationException)e; + } else { + _LOGGER.error("Exception inside handler", e); + msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; + msg = new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); + } + try { + fcall.sendResponse(fb,msg,msgType,seqid); + } catch (java.lang.Exception ex) { + _LOGGER.error("Exception writing to internal frame buffer", ex); + fb.close(); + } + } + }; + } + + protected boolean isOneway() { + return false; + } + + public void start(I iface, scannerGetList_args args, org.apache.thrift.async.AsyncMethodCallback> resultHandler) throws org.apache.thrift.TException { + iface.scannerGetList(args.id, args.nbRows,resultHandler); + } + } + + public static class scannerClose extends org.apache.thrift.AsyncProcessFunction { + public scannerClose() { + super("scannerClose"); + } + + public scannerClose_args getEmptyArgsInstance() { + return new scannerClose_args(); + } + + public org.apache.thrift.async.AsyncMethodCallback getResultHandler(final org.apache.thrift.server.AbstractNonblockingServer.AsyncFrameBuffer fb, final int seqid) { + final org.apache.thrift.AsyncProcessFunction fcall = this; + return new org.apache.thrift.async.AsyncMethodCallback() { + public void onComplete(Void o) { + scannerClose_result result = new scannerClose_result(); + try { + fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); + } catch (org.apache.thrift.transport.TTransportException e) { + _LOGGER.error("TTransportException writing to internal frame buffer", e); + fb.close(); + } catch (java.lang.Exception e) { + _LOGGER.error("Exception writing to internal frame buffer", e); + onError(e); + } + } + public void onError(java.lang.Exception e) { + byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; + org.apache.thrift.TSerializable msg; + scannerClose_result result = new scannerClose_result(); if (e instanceof IOError) { result.io = (IOError) e; result.setIoIsSet(true); @@ -9294,7 +9453,764 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, enableTable_result struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, enableTable_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, enableTable_result struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.io != null) { + oprot.writeFieldBegin(IO_FIELD_DESC); + struct.io.write(oprot); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class enableTable_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public enableTable_resultTupleScheme getScheme() { + return new enableTable_resultTupleScheme(); + } + } + + private static class enableTable_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, enableTable_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetIo()) { + optionals.set(0); + } + oprot.writeBitSet(optionals, 1); + if (struct.isSetIo()) { + struct.io.write(oprot); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, enableTable_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(1); + if (incoming.get(0)) { + struct.io = new IOError(); + struct.io.read(iprot); + struct.setIoIsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class disableTable_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("disableTable_args"); + + private static final org.apache.thrift.protocol.TField TABLE_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableName", org.apache.thrift.protocol.TType.STRING, (short)1); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new disableTable_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new disableTable_argsTupleSchemeFactory(); + + /** + * name of the table + */ + public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName; // required + + /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ + public enum _Fields implements org.apache.thrift.TFieldIdEnum { + /** + * name of the table + */ + TABLE_NAME((short)1, "tableName"); + + private static final java.util.Map byName = new java.util.HashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 1: // TABLE_NAME + return TABLE_NAME; + default: + return null; + } + } + + /** + * Find the _Fields constant that matches fieldId, throwing an exception + * if it is not found. + */ + public static _Fields findByThriftIdOrThrow(int fieldId) { + _Fields fields = findByThriftId(fieldId); + if (fields == null) throw new java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + public short getThriftFieldId() { + return _thriftId; + } + + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.TABLE_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableName", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(disableTable_args.class, metaDataMap); + } + + public disableTable_args() { + } + + public disableTable_args( + java.nio.ByteBuffer tableName) + { + this(); + this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); + } + + /** + * Performs a deep copy on other. + */ + public disableTable_args(disableTable_args other) { + if (other.isSetTableName()) { + this.tableName = org.apache.thrift.TBaseHelper.copyBinary(other.tableName); + } + } + + public disableTable_args deepCopy() { + return new disableTable_args(this); + } + + @Override + public void clear() { + this.tableName = null; + } + + /** + * name of the table + */ + public byte[] getTableName() { + setTableName(org.apache.thrift.TBaseHelper.rightSize(tableName)); + return tableName == null ? null : tableName.array(); + } + + public java.nio.ByteBuffer bufferForTableName() { + return org.apache.thrift.TBaseHelper.copyBinary(tableName); + } + + /** + * name of the table + */ + public disableTable_args setTableName(byte[] tableName) { + this.tableName = tableName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableName.clone()); + return this; + } + + public disableTable_args setTableName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName) { + this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); + return this; + } + + public void unsetTableName() { + this.tableName = null; + } + + /** Returns true if field tableName is set (has been assigned a value) and false otherwise */ + public boolean isSetTableName() { + return this.tableName != null; + } + + public void setTableNameIsSet(boolean value) { + if (!value) { + this.tableName = null; + } + } + + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case TABLE_NAME: + if (value == null) { + unsetTableName(); + } else { + if (value instanceof byte[]) { + setTableName((byte[])value); + } else { + setTableName((java.nio.ByteBuffer)value); + } + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case TABLE_NAME: + return getTableName(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case TABLE_NAME: + return isSetTableName(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof disableTable_args) + return this.equals((disableTable_args)that); + return false; + } + + public boolean equals(disableTable_args that) { + if (that == null) + return false; + if (this == that) + return true; + + boolean this_present_tableName = true && this.isSetTableName(); + boolean that_present_tableName = true && that.isSetTableName(); + if (this_present_tableName || that_present_tableName) { + if (!(this_present_tableName && that_present_tableName)) + return false; + if (!this.tableName.equals(that.tableName)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + ((isSetTableName()) ? 131071 : 524287); + if (isSetTableName()) + hashCode = hashCode * 8191 + tableName.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(disableTable_args other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTableName()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableName, other.tableName); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("disableTable_args("); + boolean first = true; + + sb.append("tableName:"); + if (this.tableName == null) { + sb.append("null"); + } else { + org.apache.thrift.TBaseHelper.toString(this.tableName, sb); + } + first = false; + sb.append(")"); + return sb.toString(); + } + + public void validate() throws org.apache.thrift.TException { + // check for required fields + // check for sub-struct validity + } + + private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { + try { + write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out))); + } catch (org.apache.thrift.TException te) { + throw new java.io.IOException(te); + } + } + + private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException { + try { + read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); + } catch (org.apache.thrift.TException te) { + throw new java.io.IOException(te); + } + } + + private static class disableTable_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public disableTable_argsStandardScheme getScheme() { + return new disableTable_argsStandardScheme(); + } + } + + private static class disableTable_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TField schemeField; + iprot.readStructBegin(); + while (true) + { + schemeField = iprot.readFieldBegin(); + if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { + break; + } + switch (schemeField.id) { + case 1: // TABLE_NAME + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.tableName = iprot.readBinary(); + struct.setTableNameIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + default: + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + iprot.readFieldEnd(); + } + iprot.readStructEnd(); + + // check for required fields of primitive type, which can't be checked in the validate method + struct.validate(); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_args struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.tableName != null) { + oprot.writeFieldBegin(TABLE_NAME_FIELD_DESC); + oprot.writeBinary(struct.tableName); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class disableTable_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public disableTable_argsTupleScheme getScheme() { + return new disableTable_argsTupleScheme(); + } + } + + private static class disableTable_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet optionals = new java.util.BitSet(); + if (struct.isSetTableName()) { + optionals.set(0); + } + oprot.writeBitSet(optionals, 1); + if (struct.isSetTableName()) { + oprot.writeBinary(struct.tableName); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, disableTable_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; + java.util.BitSet incoming = iprot.readBitSet(1); + if (incoming.get(0)) { + struct.tableName = iprot.readBinary(); + struct.setTableNameIsSet(true); + } + } + } + + private static S scheme(org.apache.thrift.protocol.TProtocol proto) { + return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme(); + } + } + + public static class disableTable_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("disableTable_result"); + + private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); + + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new disableTable_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new disableTable_resultTupleSchemeFactory(); + + public @org.apache.thrift.annotation.Nullable IOError io; // required + + /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ + public enum _Fields implements org.apache.thrift.TFieldIdEnum { + IO((short)1, "io"); + + private static final java.util.Map byName = new java.util.HashMap(); + + static { + for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 1: // IO + return IO; + default: + return null; + } + } + + /** + * Find the _Fields constant that matches fieldId, throwing an exception + * if it is not found. + */ + public static _Fields findByThriftIdOrThrow(int fieldId) { + _Fields fields = findByThriftId(fieldId); + if (fields == null) throw new java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + @org.apache.thrift.annotation.Nullable + public static _Fields findByName(java.lang.String name) { + return byName.get(name); + } + + private final short _thriftId; + private final java.lang.String _fieldName; + + _Fields(short thriftId, java.lang.String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + public short getThriftFieldId() { + return _thriftId; + } + + public java.lang.String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); + metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(disableTable_result.class, metaDataMap); + } + + public disableTable_result() { + } + + public disableTable_result( + IOError io) + { + this(); + this.io = io; + } + + /** + * Performs a deep copy on other. + */ + public disableTable_result(disableTable_result other) { + if (other.isSetIo()) { + this.io = new IOError(other.io); + } + } + + public disableTable_result deepCopy() { + return new disableTable_result(this); + } + + @Override + public void clear() { + this.io = null; + } + + @org.apache.thrift.annotation.Nullable + public IOError getIo() { + return this.io; + } + + public disableTable_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + this.io = io; + return this; + } + + public void unsetIo() { + this.io = null; + } + + /** Returns true if field io is set (has been assigned a value) and false otherwise */ + public boolean isSetIo() { + return this.io != null; + } + + public void setIoIsSet(boolean value) { + if (!value) { + this.io = null; + } + } + + public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { + switch (field) { + case IO: + if (value == null) { + unsetIo(); + } else { + setIo((IOError)value); + } + break; + + } + } + + @org.apache.thrift.annotation.Nullable + public java.lang.Object getFieldValue(_Fields field) { + switch (field) { + case IO: + return getIo(); + + } + throw new java.lang.IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + public boolean isSet(_Fields field) { + if (field == null) { + throw new java.lang.IllegalArgumentException(); + } + + switch (field) { + case IO: + return isSetIo(); + } + throw new java.lang.IllegalStateException(); + } + + @Override + public boolean equals(java.lang.Object that) { + if (that instanceof disableTable_result) + return this.equals((disableTable_result)that); + return false; + } + + public boolean equals(disableTable_result that) { + if (that == null) + return false; + if (this == that) + return true; + + boolean this_present_io = true && this.isSetIo(); + boolean that_present_io = true && that.isSetIo(); + if (this_present_io || that_present_io) { + if (!(this_present_io && that_present_io)) + return false; + if (!this.io.equals(that.io)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + int hashCode = 1; + + hashCode = hashCode * 8191 + ((isSetIo()) ? 131071 : 524287); + if (isSetIo()) + hashCode = hashCode * 8191 + io.hashCode(); + + return hashCode; + } + + @Override + public int compareTo(disableTable_result other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = java.lang.Boolean.compare(isSetIo(), other.isSetIo()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetIo()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.io, other.io); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + @org.apache.thrift.annotation.Nullable + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + scheme(iprot).read(iprot, this); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + scheme(oprot).write(oprot, this); + } + + @Override + public java.lang.String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder("disableTable_result("); + boolean first = true; + + sb.append("io:"); + if (this.io == null) { + sb.append("null"); + } else { + sb.append(this.io); + } + first = false; + sb.append(")"); + return sb.toString(); + } + + public void validate() throws org.apache.thrift.TException { + // check for required fields + // check for sub-struct validity + } + + private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { + try { + write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out))); + } catch (org.apache.thrift.TException te) { + throw new java.io.IOException(te); + } + } + + private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException { + try { + read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); + } catch (org.apache.thrift.TException te) { + throw new java.io.IOException(te); + } + } + + private static class disableTable_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public disableTable_resultStandardScheme getScheme() { + return new disableTable_resultStandardScheme(); + } + } + + private static class disableTable_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + + public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TField schemeField; + iprot.readStructBegin(); + while (true) + { + schemeField = iprot.readFieldBegin(); + if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { + break; + } + switch (schemeField.id) { + case 1: // IO + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.io = new IOError(); + struct.io.read(iprot); + struct.setIoIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + default: + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + iprot.readFieldEnd(); + } + iprot.readStructEnd(); + + // check for required fields of primitive type, which can't be checked in the validate method + struct.validate(); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -9309,16 +10225,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, enableTable_result } - private static class enableTable_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public enableTable_resultTupleScheme getScheme() { - return new enableTable_resultTupleScheme(); + private static class disableTable_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public disableTable_resultTupleScheme getScheme() { + return new disableTable_resultTupleScheme(); } } - private static class enableTable_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class disableTable_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, enableTable_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetIo()) { @@ -9331,7 +10247,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, enableTable_result } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, enableTable_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, disableTable_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { @@ -9347,23 +10263,23 @@ private static S scheme(org.apache. } } - public static class disableTable_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("disableTable_args"); + public static class isTableEnabled_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isTableEnabled_args"); private static final org.apache.thrift.protocol.TField TABLE_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableName", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new disableTable_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new disableTable_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new isTableEnabled_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new isTableEnabled_argsTupleSchemeFactory(); /** - * name of the table + * name of the table to check */ public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { /** - * name of the table + * name of the table to check */ TABLE_NAME((short)1, "tableName"); @@ -9430,13 +10346,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.TABLE_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableName", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(disableTable_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(isTableEnabled_args.class, metaDataMap); } - public disableTable_args() { + public isTableEnabled_args() { } - public disableTable_args( + public isTableEnabled_args( java.nio.ByteBuffer tableName) { this(); @@ -9446,14 +10362,14 @@ public disableTable_args( /** * Performs a deep copy on other. */ - public disableTable_args(disableTable_args other) { + public isTableEnabled_args(isTableEnabled_args other) { if (other.isSetTableName()) { this.tableName = org.apache.thrift.TBaseHelper.copyBinary(other.tableName); } } - public disableTable_args deepCopy() { - return new disableTable_args(this); + public isTableEnabled_args deepCopy() { + return new isTableEnabled_args(this); } @Override @@ -9462,7 +10378,7 @@ public void clear() { } /** - * name of the table + * name of the table to check */ public byte[] getTableName() { setTableName(org.apache.thrift.TBaseHelper.rightSize(tableName)); @@ -9474,14 +10390,14 @@ public java.nio.ByteBuffer bufferForTableName() { } /** - * name of the table + * name of the table to check */ - public disableTable_args setTableName(byte[] tableName) { + public isTableEnabled_args setTableName(byte[] tableName) { this.tableName = tableName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableName.clone()); return this; } - public disableTable_args setTableName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName) { + public isTableEnabled_args setTableName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName) { this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); return this; } @@ -9543,12 +10459,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof disableTable_args) - return this.equals((disableTable_args)that); + if (that instanceof isTableEnabled_args) + return this.equals((isTableEnabled_args)that); return false; } - public boolean equals(disableTable_args that) { + public boolean equals(isTableEnabled_args that) { if (that == null) return false; if (this == that) @@ -9578,7 +10494,7 @@ public int hashCode() { } @Override - public int compareTo(disableTable_args other) { + public int compareTo(isTableEnabled_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -9613,7 +10529,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("disableTable_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("isTableEnabled_args("); boolean first = true; sb.append("tableName:"); @@ -9648,15 +10564,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class disableTable_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public disableTable_argsStandardScheme getScheme() { - return new disableTable_argsStandardScheme(); + private static class isTableEnabled_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public isTableEnabled_argsStandardScheme getScheme() { + return new isTableEnabled_argsStandardScheme(); } } - private static class disableTable_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class isTableEnabled_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -9685,7 +10601,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_args s struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -9700,16 +10616,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_args } - private static class disableTable_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public disableTable_argsTupleScheme getScheme() { - return new disableTable_argsTupleScheme(); + private static class isTableEnabled_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public isTableEnabled_argsTupleScheme getScheme() { + return new isTableEnabled_argsTupleScheme(); } } - private static class disableTable_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class isTableEnabled_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetTableName()) { @@ -9722,7 +10638,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_args s } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, disableTable_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { @@ -9737,18 +10653,21 @@ private static S scheme(org.apache. } } - public static class disableTable_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("disableTable_result"); + public static class isTableEnabled_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isTableEnabled_result"); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.BOOL, (short)0); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new disableTable_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new disableTable_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new isTableEnabled_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new isTableEnabled_resultTupleSchemeFactory(); + public boolean success; // required public @org.apache.thrift.annotation.Nullable IOError io; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { + SUCCESS((short)0, "success"), IO((short)1, "io"); private static final java.util.Map byName = new java.util.HashMap(); @@ -9765,6 +10684,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; case 1: // IO return IO; default: @@ -9808,49 +10729,83 @@ public java.lang.String getFieldName() { } // isset id assignments + private static final int __SUCCESS_ISSET_ID = 0; + private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(disableTable_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(isTableEnabled_result.class, metaDataMap); } - public disableTable_result() { + public isTableEnabled_result() { } - public disableTable_result( + public isTableEnabled_result( + boolean success, IOError io) { this(); + this.success = success; + setSuccessIsSet(true); this.io = io; } /** * Performs a deep copy on other. */ - public disableTable_result(disableTable_result other) { + public isTableEnabled_result(isTableEnabled_result other) { + __isset_bitfield = other.__isset_bitfield; + this.success = other.success; if (other.isSetIo()) { this.io = new IOError(other.io); } } - public disableTable_result deepCopy() { - return new disableTable_result(this); + public isTableEnabled_result deepCopy() { + return new isTableEnabled_result(this); } @Override public void clear() { + setSuccessIsSet(false); + this.success = false; this.io = null; } + public boolean isSuccess() { + return this.success; + } + + public isTableEnabled_result setSuccess(boolean success) { + this.success = success; + setSuccessIsSet(true); + return this; + } + + public void unsetSuccess() { + __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + /** Returns true if field success is set (has been assigned a value) and false otherwise */ + public boolean isSetSuccess() { + return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); + } + + public void setSuccessIsSet(boolean value) { + __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); + } + @org.apache.thrift.annotation.Nullable public IOError getIo() { return this.io; } - public disableTable_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public isTableEnabled_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -9872,6 +10827,14 @@ public void setIoIsSet(boolean value) { public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.lang.Boolean)value); + } + break; + case IO: if (value == null) { unsetIo(); @@ -9886,6 +10849,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case SUCCESS: + return isSuccess(); + case IO: return getIo(); @@ -9900,6 +10866,8 @@ public boolean isSet(_Fields field) { } switch (field) { + case SUCCESS: + return isSetSuccess(); case IO: return isSetIo(); } @@ -9908,17 +10876,26 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof disableTable_result) - return this.equals((disableTable_result)that); + if (that instanceof isTableEnabled_result) + return this.equals((isTableEnabled_result)that); return false; } - public boolean equals(disableTable_result that) { + public boolean equals(isTableEnabled_result that) { if (that == null) return false; if (this == that) return true; + boolean this_present_success = true; + boolean that_present_success = true; + if (this_present_success || that_present_success) { + if (!(this_present_success && that_present_success)) + return false; + if (this.success != that.success) + return false; + } + boolean this_present_io = true && this.isSetIo(); boolean that_present_io = true && that.isSetIo(); if (this_present_io || that_present_io) { @@ -9935,6 +10912,8 @@ public boolean equals(disableTable_result that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); + hashCode = hashCode * 8191 + ((isSetIo()) ? 131071 : 524287); if (isSetIo()) hashCode = hashCode * 8191 + io.hashCode(); @@ -9943,13 +10922,23 @@ public int hashCode() { } @Override - public int compareTo(disableTable_result other) { + public int compareTo(isTableEnabled_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSuccess()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetIo(), other.isSetIo()); if (lastComparison != 0) { return lastComparison; @@ -9978,9 +10967,13 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("disableTable_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("isTableEnabled_result("); boolean first = true; + sb.append("success:"); + sb.append(this.success); + first = false; + if (!first) sb.append(", "); sb.append("io:"); if (this.io == null) { sb.append("null"); @@ -10007,21 +11000,23 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException { try { + // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor. + __isset_bitfield = 0; read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); } catch (org.apache.thrift.TException te) { throw new java.io.IOException(te); } } - private static class disableTable_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public disableTable_resultStandardScheme getScheme() { - return new disableTable_resultStandardScheme(); + private static class isTableEnabled_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public isTableEnabled_resultStandardScheme getScheme() { + return new isTableEnabled_resultStandardScheme(); } } - private static class disableTable_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class isTableEnabled_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -10031,6 +11026,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_result break; } switch (schemeField.id) { + case 0: // SUCCESS + if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { + struct.success = iprot.readBool(); + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; case 1: // IO if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.io = new IOError(); @@ -10051,10 +11054,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, disableTable_result struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.isSetSuccess()) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + oprot.writeBool(struct.success); + oprot.writeFieldEnd(); + } if (struct.io != null) { oprot.writeFieldBegin(IO_FIELD_DESC); struct.io.write(oprot); @@ -10066,32 +11074,42 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, disableTable_resul } - private static class disableTable_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public disableTable_resultTupleScheme getScheme() { - return new disableTable_resultTupleScheme(); + private static class isTableEnabled_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public isTableEnabled_resultTupleScheme getScheme() { + return new isTableEnabled_resultTupleScheme(); } } - private static class disableTable_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class isTableEnabled_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, disableTable_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetIo()) { + if (struct.isSetSuccess()) { optionals.set(0); } - oprot.writeBitSet(optionals, 1); + if (struct.isSetIo()) { + optionals.set(1); + } + oprot.writeBitSet(optionals, 2); + if (struct.isSetSuccess()) { + oprot.writeBool(struct.success); + } if (struct.isSetIo()) { struct.io.write(oprot); } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, disableTable_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(1); + java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { + struct.success = iprot.readBool(); + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { struct.io = new IOError(); struct.io.read(iprot); struct.setIoIsSet(true); @@ -10104,25 +11122,19 @@ private static S scheme(org.apache. } } - public static class isTableEnabled_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isTableEnabled_args"); + public static class compact_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("compact_args"); - private static final org.apache.thrift.protocol.TField TABLE_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableName", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField TABLE_NAME_OR_REGION_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableNameOrRegionName", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new isTableEnabled_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new isTableEnabled_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new compact_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new compact_argsTupleSchemeFactory(); - /** - * name of the table to check - */ - public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName; // required + public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { - /** - * name of the table to check - */ - TABLE_NAME((short)1, "tableName"); + TABLE_NAME_OR_REGION_NAME((short)1, "tableNameOrRegionName"); private static final java.util.Map byName = new java.util.HashMap(); @@ -10138,8 +11150,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // TABLE_NAME - return TABLE_NAME; + case 1: // TABLE_NAME_OR_REGION_NAME + return TABLE_NAME_OR_REGION_NAME; default: return null; } @@ -10184,90 +11196,84 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.TABLE_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableName", org.apache.thrift.TFieldRequirementType.DEFAULT, + tmpMap.put(_Fields.TABLE_NAME_OR_REGION_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableNameOrRegionName", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(isTableEnabled_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(compact_args.class, metaDataMap); } - public isTableEnabled_args() { + public compact_args() { } - public isTableEnabled_args( - java.nio.ByteBuffer tableName) + public compact_args( + java.nio.ByteBuffer tableNameOrRegionName) { this(); - this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); + this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); } /** * Performs a deep copy on other. */ - public isTableEnabled_args(isTableEnabled_args other) { - if (other.isSetTableName()) { - this.tableName = org.apache.thrift.TBaseHelper.copyBinary(other.tableName); + public compact_args(compact_args other) { + if (other.isSetTableNameOrRegionName()) { + this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(other.tableNameOrRegionName); } } - public isTableEnabled_args deepCopy() { - return new isTableEnabled_args(this); + public compact_args deepCopy() { + return new compact_args(this); } @Override public void clear() { - this.tableName = null; + this.tableNameOrRegionName = null; } - /** - * name of the table to check - */ - public byte[] getTableName() { - setTableName(org.apache.thrift.TBaseHelper.rightSize(tableName)); - return tableName == null ? null : tableName.array(); + public byte[] getTableNameOrRegionName() { + setTableNameOrRegionName(org.apache.thrift.TBaseHelper.rightSize(tableNameOrRegionName)); + return tableNameOrRegionName == null ? null : tableNameOrRegionName.array(); } - public java.nio.ByteBuffer bufferForTableName() { - return org.apache.thrift.TBaseHelper.copyBinary(tableName); + public java.nio.ByteBuffer bufferForTableNameOrRegionName() { + return org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); } - /** - * name of the table to check - */ - public isTableEnabled_args setTableName(byte[] tableName) { - this.tableName = tableName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableName.clone()); + public compact_args setTableNameOrRegionName(byte[] tableNameOrRegionName) { + this.tableNameOrRegionName = tableNameOrRegionName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableNameOrRegionName.clone()); return this; } - public isTableEnabled_args setTableName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableName) { - this.tableName = org.apache.thrift.TBaseHelper.copyBinary(tableName); + public compact_args setTableNameOrRegionName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName) { + this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); return this; } - public void unsetTableName() { - this.tableName = null; + public void unsetTableNameOrRegionName() { + this.tableNameOrRegionName = null; } - /** Returns true if field tableName is set (has been assigned a value) and false otherwise */ - public boolean isSetTableName() { - return this.tableName != null; + /** Returns true if field tableNameOrRegionName is set (has been assigned a value) and false otherwise */ + public boolean isSetTableNameOrRegionName() { + return this.tableNameOrRegionName != null; } - public void setTableNameIsSet(boolean value) { + public void setTableNameOrRegionNameIsSet(boolean value) { if (!value) { - this.tableName = null; + this.tableNameOrRegionName = null; } } public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case TABLE_NAME: + case TABLE_NAME_OR_REGION_NAME: if (value == null) { - unsetTableName(); + unsetTableNameOrRegionName(); } else { if (value instanceof byte[]) { - setTableName((byte[])value); + setTableNameOrRegionName((byte[])value); } else { - setTableName((java.nio.ByteBuffer)value); + setTableNameOrRegionName((java.nio.ByteBuffer)value); } } break; @@ -10278,8 +11284,8 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case TABLE_NAME: - return getTableName(); + case TABLE_NAME_OR_REGION_NAME: + return getTableNameOrRegionName(); } throw new java.lang.IllegalStateException(); @@ -10292,31 +11298,31 @@ public boolean isSet(_Fields field) { } switch (field) { - case TABLE_NAME: - return isSetTableName(); + case TABLE_NAME_OR_REGION_NAME: + return isSetTableNameOrRegionName(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof isTableEnabled_args) - return this.equals((isTableEnabled_args)that); + if (that instanceof compact_args) + return this.equals((compact_args)that); return false; } - public boolean equals(isTableEnabled_args that) { + public boolean equals(compact_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_tableName = true && this.isSetTableName(); - boolean that_present_tableName = true && that.isSetTableName(); - if (this_present_tableName || that_present_tableName) { - if (!(this_present_tableName && that_present_tableName)) + boolean this_present_tableNameOrRegionName = true && this.isSetTableNameOrRegionName(); + boolean that_present_tableNameOrRegionName = true && that.isSetTableNameOrRegionName(); + if (this_present_tableNameOrRegionName || that_present_tableNameOrRegionName) { + if (!(this_present_tableNameOrRegionName && that_present_tableNameOrRegionName)) return false; - if (!this.tableName.equals(that.tableName)) + if (!this.tableNameOrRegionName.equals(that.tableNameOrRegionName)) return false; } @@ -10327,27 +11333,27 @@ public boolean equals(isTableEnabled_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetTableName()) ? 131071 : 524287); - if (isSetTableName()) - hashCode = hashCode * 8191 + tableName.hashCode(); + hashCode = hashCode * 8191 + ((isSetTableNameOrRegionName()) ? 131071 : 524287); + if (isSetTableNameOrRegionName()) + hashCode = hashCode * 8191 + tableNameOrRegionName.hashCode(); return hashCode; } @Override - public int compareTo(isTableEnabled_args other) { + public int compareTo(compact_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableNameOrRegionName(), other.isSetTableNameOrRegionName()); if (lastComparison != 0) { return lastComparison; } - if (isSetTableName()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableName, other.tableName); + if (isSetTableNameOrRegionName()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableNameOrRegionName, other.tableNameOrRegionName); if (lastComparison != 0) { return lastComparison; } @@ -10370,14 +11376,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("isTableEnabled_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("compact_args("); boolean first = true; - sb.append("tableName:"); - if (this.tableName == null) { + sb.append("tableNameOrRegionName:"); + if (this.tableNameOrRegionName == null) { sb.append("null"); } else { - org.apache.thrift.TBaseHelper.toString(this.tableName, sb); + org.apache.thrift.TBaseHelper.toString(this.tableNameOrRegionName, sb); } first = false; sb.append(")"); @@ -10405,15 +11411,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class isTableEnabled_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public isTableEnabled_argsStandardScheme getScheme() { - return new isTableEnabled_argsStandardScheme(); + private static class compact_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public compact_argsStandardScheme getScheme() { + return new compact_argsStandardScheme(); } } - private static class isTableEnabled_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class compact_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, compact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -10423,10 +11429,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_args break; } switch (schemeField.id) { - case 1: // TABLE_NAME + case 1: // TABLE_NAME_OR_REGION_NAME if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tableName = iprot.readBinary(); - struct.setTableNameIsSet(true); + struct.tableNameOrRegionName = iprot.readBinary(); + struct.setTableNameOrRegionNameIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -10442,13 +11448,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_args struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, compact_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.tableName != null) { - oprot.writeFieldBegin(TABLE_NAME_FIELD_DESC); - oprot.writeBinary(struct.tableName); + if (struct.tableNameOrRegionName != null) { + oprot.writeFieldBegin(TABLE_NAME_OR_REGION_NAME_FIELD_DESC); + oprot.writeBinary(struct.tableNameOrRegionName); oprot.writeFieldEnd(); } oprot.writeFieldStop(); @@ -10457,34 +11463,34 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_arg } - private static class isTableEnabled_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public isTableEnabled_argsTupleScheme getScheme() { - return new isTableEnabled_argsTupleScheme(); + private static class compact_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public compact_argsTupleScheme getScheme() { + return new compact_argsTupleScheme(); } } - private static class isTableEnabled_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class compact_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, compact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetTableName()) { + if (struct.isSetTableNameOrRegionName()) { optionals.set(0); } oprot.writeBitSet(optionals, 1); - if (struct.isSetTableName()) { - oprot.writeBinary(struct.tableName); + if (struct.isSetTableNameOrRegionName()) { + oprot.writeBinary(struct.tableNameOrRegionName); } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, compact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { - struct.tableName = iprot.readBinary(); - struct.setTableNameIsSet(true); + struct.tableNameOrRegionName = iprot.readBinary(); + struct.setTableNameOrRegionNameIsSet(true); } } } @@ -10494,21 +11500,18 @@ private static S scheme(org.apache. } } - public static class isTableEnabled_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("isTableEnabled_result"); + public static class compact_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("compact_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.BOOL, (short)0); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new isTableEnabled_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new isTableEnabled_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new compact_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new compact_resultTupleSchemeFactory(); - public boolean success; // required public @org.apache.thrift.annotation.Nullable IOError io; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { - SUCCESS((short)0, "success"), IO((short)1, "io"); private static final java.util.Map byName = new java.util.HashMap(); @@ -10525,8 +11528,6 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 0: // SUCCESS - return SUCCESS; case 1: // IO return IO; default: @@ -10570,83 +11571,49 @@ public java.lang.String getFieldName() { } // isset id assignments - private static final int __SUCCESS_ISSET_ID = 0; - private byte __isset_bitfield = 0; public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(isTableEnabled_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(compact_result.class, metaDataMap); } - public isTableEnabled_result() { + public compact_result() { } - public isTableEnabled_result( - boolean success, + public compact_result( IOError io) { this(); - this.success = success; - setSuccessIsSet(true); this.io = io; } /** * Performs a deep copy on other. */ - public isTableEnabled_result(isTableEnabled_result other) { - __isset_bitfield = other.__isset_bitfield; - this.success = other.success; + public compact_result(compact_result other) { if (other.isSetIo()) { this.io = new IOError(other.io); } } - public isTableEnabled_result deepCopy() { - return new isTableEnabled_result(this); + public compact_result deepCopy() { + return new compact_result(this); } @Override public void clear() { - setSuccessIsSet(false); - this.success = false; this.io = null; } - public boolean isSuccess() { - return this.success; - } - - public isTableEnabled_result setSuccess(boolean success) { - this.success = success; - setSuccessIsSet(true); - return this; - } - - public void unsetSuccess() { - __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - /** Returns true if field success is set (has been assigned a value) and false otherwise */ - public boolean isSetSuccess() { - return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __SUCCESS_ISSET_ID); - } - - public void setSuccessIsSet(boolean value) { - __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __SUCCESS_ISSET_ID, value); - } - @org.apache.thrift.annotation.Nullable public IOError getIo() { return this.io; } - public isTableEnabled_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public compact_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -10668,14 +11635,6 @@ public void setIoIsSet(boolean value) { public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((java.lang.Boolean)value); - } - break; - case IO: if (value == null) { unsetIo(); @@ -10690,9 +11649,6 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case SUCCESS: - return isSuccess(); - case IO: return getIo(); @@ -10707,8 +11663,6 @@ public boolean isSet(_Fields field) { } switch (field) { - case SUCCESS: - return isSetSuccess(); case IO: return isSetIo(); } @@ -10717,26 +11671,17 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof isTableEnabled_result) - return this.equals((isTableEnabled_result)that); + if (that instanceof compact_result) + return this.equals((compact_result)that); return false; } - public boolean equals(isTableEnabled_result that) { + public boolean equals(compact_result that) { if (that == null) return false; if (this == that) return true; - boolean this_present_success = true; - boolean that_present_success = true; - if (this_present_success || that_present_success) { - if (!(this_present_success && that_present_success)) - return false; - if (this.success != that.success) - return false; - } - boolean this_present_io = true && this.isSetIo(); boolean that_present_io = true && that.isSetIo(); if (this_present_io || that_present_io) { @@ -10753,8 +11698,6 @@ public boolean equals(isTableEnabled_result that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((success) ? 131071 : 524287); - hashCode = hashCode * 8191 + ((isSetIo()) ? 131071 : 524287); if (isSetIo()) hashCode = hashCode * 8191 + io.hashCode(); @@ -10763,23 +11706,13 @@ public int hashCode() { } @Override - public int compareTo(isTableEnabled_result other) { + public int compareTo(compact_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetSuccess()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success); - if (lastComparison != 0) { - return lastComparison; - } - } lastComparison = java.lang.Boolean.compare(isSetIo(), other.isSetIo()); if (lastComparison != 0) { return lastComparison; @@ -10808,13 +11741,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("isTableEnabled_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("compact_result("); boolean first = true; - sb.append("success:"); - sb.append(this.success); - first = false; - if (!first) sb.append(", "); sb.append("io:"); if (this.io == null) { sb.append("null"); @@ -10841,23 +11770,21 @@ private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOExcept private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException { try { - // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor. - __isset_bitfield = 0; read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); } catch (org.apache.thrift.TException te) { throw new java.io.IOException(te); } } - private static class isTableEnabled_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public isTableEnabled_resultStandardScheme getScheme() { - return new isTableEnabled_resultStandardScheme(); + private static class compact_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public compact_resultStandardScheme getScheme() { + return new compact_resultStandardScheme(); } } - private static class isTableEnabled_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class compact_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, compact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -10867,14 +11794,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_resu break; } switch (schemeField.id) { - case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.success = iprot.readBool(); - struct.setSuccessIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; case 1: // IO if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.io = new IOError(); @@ -10895,15 +11814,10 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, isTableEnabled_resu struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, compact_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.isSetSuccess()) { - oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - oprot.writeBool(struct.success); - oprot.writeFieldEnd(); - } if (struct.io != null) { oprot.writeFieldBegin(IO_FIELD_DESC); struct.io.write(oprot); @@ -10915,42 +11829,32 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, isTableEnabled_res } - private static class isTableEnabled_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public isTableEnabled_resultTupleScheme getScheme() { - return new isTableEnabled_resultTupleScheme(); + private static class compact_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public compact_resultTupleScheme getScheme() { + return new compact_resultTupleScheme(); } } - private static class isTableEnabled_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class compact_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, compact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetSuccess()) { - optionals.set(0); - } if (struct.isSetIo()) { - optionals.set(1); - } - oprot.writeBitSet(optionals, 2); - if (struct.isSetSuccess()) { - oprot.writeBool(struct.success); + optionals.set(0); } + oprot.writeBitSet(optionals, 1); if (struct.isSetIo()) { struct.io.write(oprot); } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, isTableEnabled_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, compact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(2); + java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { - struct.success = iprot.readBool(); - struct.setSuccessIsSet(true); - } - if (incoming.get(1)) { struct.io = new IOError(); struct.io.read(iprot); struct.setIoIsSet(true); @@ -10963,13 +11867,13 @@ private static S scheme(org.apache. } } - public static class compact_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("compact_args"); + public static class majorCompact_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("majorCompact_args"); private static final org.apache.thrift.protocol.TField TABLE_NAME_OR_REGION_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableNameOrRegionName", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new compact_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new compact_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new majorCompact_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new majorCompact_argsTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName; // required @@ -11040,13 +11944,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.TABLE_NAME_OR_REGION_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableNameOrRegionName", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(compact_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(majorCompact_args.class, metaDataMap); } - public compact_args() { + public majorCompact_args() { } - public compact_args( + public majorCompact_args( java.nio.ByteBuffer tableNameOrRegionName) { this(); @@ -11056,14 +11960,14 @@ public compact_args( /** * Performs a deep copy on other. */ - public compact_args(compact_args other) { + public majorCompact_args(majorCompact_args other) { if (other.isSetTableNameOrRegionName()) { this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(other.tableNameOrRegionName); } } - public compact_args deepCopy() { - return new compact_args(this); + public majorCompact_args deepCopy() { + return new majorCompact_args(this); } @Override @@ -11080,12 +11984,12 @@ public java.nio.ByteBuffer bufferForTableNameOrRegionName() { return org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); } - public compact_args setTableNameOrRegionName(byte[] tableNameOrRegionName) { + public majorCompact_args setTableNameOrRegionName(byte[] tableNameOrRegionName) { this.tableNameOrRegionName = tableNameOrRegionName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableNameOrRegionName.clone()); return this; } - public compact_args setTableNameOrRegionName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName) { + public majorCompact_args setTableNameOrRegionName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName) { this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); return this; } @@ -11147,12 +12051,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof compact_args) - return this.equals((compact_args)that); + if (that instanceof majorCompact_args) + return this.equals((majorCompact_args)that); return false; } - public boolean equals(compact_args that) { + public boolean equals(majorCompact_args that) { if (that == null) return false; if (this == that) @@ -11182,7 +12086,7 @@ public int hashCode() { } @Override - public int compareTo(compact_args other) { + public int compareTo(majorCompact_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -11217,7 +12121,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("compact_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("majorCompact_args("); boolean first = true; sb.append("tableNameOrRegionName:"); @@ -11252,15 +12156,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class compact_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public compact_argsStandardScheme getScheme() { - return new compact_argsStandardScheme(); + private static class majorCompact_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public majorCompact_argsStandardScheme getScheme() { + return new majorCompact_argsStandardScheme(); } } - private static class compact_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class majorCompact_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, compact_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -11289,7 +12193,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, compact_args struct struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, compact_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -11304,16 +12208,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, compact_args struc } - private static class compact_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public compact_argsTupleScheme getScheme() { - return new compact_argsTupleScheme(); + private static class majorCompact_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public majorCompact_argsTupleScheme getScheme() { + return new majorCompact_argsTupleScheme(); } } - private static class compact_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class majorCompact_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, compact_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetTableNameOrRegionName()) { @@ -11326,7 +12230,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, compact_args struct } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, compact_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, majorCompact_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { @@ -11341,13 +12245,13 @@ private static S scheme(org.apache. } } - public static class compact_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("compact_result"); + public static class majorCompact_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("majorCompact_result"); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new compact_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new compact_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new majorCompact_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new majorCompact_resultTupleSchemeFactory(); public @org.apache.thrift.annotation.Nullable IOError io; // required @@ -11418,13 +12322,13 @@ public java.lang.String getFieldName() { tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(compact_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(majorCompact_result.class, metaDataMap); } - public compact_result() { + public majorCompact_result() { } - public compact_result( + public majorCompact_result( IOError io) { this(); @@ -11434,14 +12338,14 @@ public compact_result( /** * Performs a deep copy on other. */ - public compact_result(compact_result other) { + public majorCompact_result(majorCompact_result other) { if (other.isSetIo()) { this.io = new IOError(other.io); } } - public compact_result deepCopy() { - return new compact_result(this); + public majorCompact_result deepCopy() { + return new majorCompact_result(this); } @Override @@ -11454,7 +12358,7 @@ public IOError getIo() { return this.io; } - public compact_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public majorCompact_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -11512,12 +12416,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof compact_result) - return this.equals((compact_result)that); + if (that instanceof majorCompact_result) + return this.equals((majorCompact_result)that); return false; } - public boolean equals(compact_result that) { + public boolean equals(majorCompact_result that) { if (that == null) return false; if (this == that) @@ -11547,7 +12451,7 @@ public int hashCode() { } @Override - public int compareTo(compact_result other) { + public int compareTo(majorCompact_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -11582,7 +12486,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("compact_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("majorCompact_result("); boolean first = true; sb.append("io:"); @@ -11617,15 +12521,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class compact_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public compact_resultStandardScheme getScheme() { - return new compact_resultStandardScheme(); + private static class majorCompact_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public majorCompact_resultStandardScheme getScheme() { + return new majorCompact_resultStandardScheme(); } } - private static class compact_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class majorCompact_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, compact_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -11655,7 +12559,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, compact_result stru struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, compact_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -11670,16 +12574,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, compact_result str } - private static class compact_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public compact_resultTupleScheme getScheme() { - return new compact_resultTupleScheme(); + private static class majorCompact_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public majorCompact_resultTupleScheme getScheme() { + return new majorCompact_resultTupleScheme(); } } - private static class compact_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class majorCompact_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, compact_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetIo()) { @@ -11692,7 +12596,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, compact_result stru } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, compact_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, majorCompact_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { @@ -11708,19 +12612,17 @@ private static S scheme(org.apache. } } - public static class majorCompact_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("majorCompact_args"); + public static class getTableNames_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNames_args"); - private static final org.apache.thrift.protocol.TField TABLE_NAME_OR_REGION_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableNameOrRegionName", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new majorCompact_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new majorCompact_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNames_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNames_argsTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { - TABLE_NAME_OR_REGION_NAME((short)1, "tableNameOrRegionName"); +; private static final java.util.Map byName = new java.util.HashMap(); @@ -11736,8 +12638,6 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // TABLE_NAME_OR_REGION_NAME - return TABLE_NAME_OR_REGION_NAME; default: return null; } @@ -11777,102 +12677,38 @@ public java.lang.String getFieldName() { return _fieldName; } } - - // isset id assignments public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.TABLE_NAME_OR_REGION_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableNameOrRegionName", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Bytes"))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(majorCompact_args.class, metaDataMap); - } - - public majorCompact_args() { + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNames_args.class, metaDataMap); } - public majorCompact_args( - java.nio.ByteBuffer tableNameOrRegionName) - { - this(); - this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); + public getTableNames_args() { } /** * Performs a deep copy on other. */ - public majorCompact_args(majorCompact_args other) { - if (other.isSetTableNameOrRegionName()) { - this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(other.tableNameOrRegionName); - } + public getTableNames_args(getTableNames_args other) { } - public majorCompact_args deepCopy() { - return new majorCompact_args(this); + public getTableNames_args deepCopy() { + return new getTableNames_args(this); } @Override public void clear() { - this.tableNameOrRegionName = null; - } - - public byte[] getTableNameOrRegionName() { - setTableNameOrRegionName(org.apache.thrift.TBaseHelper.rightSize(tableNameOrRegionName)); - return tableNameOrRegionName == null ? null : tableNameOrRegionName.array(); - } - - public java.nio.ByteBuffer bufferForTableNameOrRegionName() { - return org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); - } - - public majorCompact_args setTableNameOrRegionName(byte[] tableNameOrRegionName) { - this.tableNameOrRegionName = tableNameOrRegionName == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(tableNameOrRegionName.clone()); - return this; - } - - public majorCompact_args setTableNameOrRegionName(@org.apache.thrift.annotation.Nullable java.nio.ByteBuffer tableNameOrRegionName) { - this.tableNameOrRegionName = org.apache.thrift.TBaseHelper.copyBinary(tableNameOrRegionName); - return this; - } - - public void unsetTableNameOrRegionName() { - this.tableNameOrRegionName = null; - } - - /** Returns true if field tableNameOrRegionName is set (has been assigned a value) and false otherwise */ - public boolean isSetTableNameOrRegionName() { - return this.tableNameOrRegionName != null; - } - - public void setTableNameOrRegionNameIsSet(boolean value) { - if (!value) { - this.tableNameOrRegionName = null; - } } public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { - case TABLE_NAME_OR_REGION_NAME: - if (value == null) { - unsetTableNameOrRegionName(); - } else { - if (value instanceof byte[]) { - setTableNameOrRegionName((byte[])value); - } else { - setTableNameOrRegionName((java.nio.ByteBuffer)value); - } - } - break; - } } @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { - case TABLE_NAME_OR_REGION_NAME: - return getTableNameOrRegionName(); - } throw new java.lang.IllegalStateException(); } @@ -11884,34 +12720,23 @@ public boolean isSet(_Fields field) { } switch (field) { - case TABLE_NAME_OR_REGION_NAME: - return isSetTableNameOrRegionName(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { - if (that instanceof majorCompact_args) - return this.equals((majorCompact_args)that); + if (that instanceof getTableNames_args) + return this.equals((getTableNames_args)that); return false; } - public boolean equals(majorCompact_args that) { + public boolean equals(getTableNames_args that) { if (that == null) return false; if (this == that) return true; - boolean this_present_tableNameOrRegionName = true && this.isSetTableNameOrRegionName(); - boolean that_present_tableNameOrRegionName = true && that.isSetTableNameOrRegionName(); - if (this_present_tableNameOrRegionName || that_present_tableNameOrRegionName) { - if (!(this_present_tableNameOrRegionName && that_present_tableNameOrRegionName)) - return false; - if (!this.tableNameOrRegionName.equals(that.tableNameOrRegionName)) - return false; - } - return true; } @@ -11919,31 +12744,17 @@ public boolean equals(majorCompact_args that) { public int hashCode() { int hashCode = 1; - hashCode = hashCode * 8191 + ((isSetTableNameOrRegionName()) ? 131071 : 524287); - if (isSetTableNameOrRegionName()) - hashCode = hashCode * 8191 + tableNameOrRegionName.hashCode(); - return hashCode; } @Override - public int compareTo(majorCompact_args other) { + public int compareTo(getTableNames_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; - lastComparison = java.lang.Boolean.compare(isSetTableNameOrRegionName(), other.isSetTableNameOrRegionName()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTableNameOrRegionName()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableNameOrRegionName, other.tableNameOrRegionName); - if (lastComparison != 0) { - return lastComparison; - } - } return 0; } @@ -11962,16 +12773,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("majorCompact_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNames_args("); boolean first = true; - sb.append("tableNameOrRegionName:"); - if (this.tableNameOrRegionName == null) { - sb.append("null"); - } else { - org.apache.thrift.TBaseHelper.toString(this.tableNameOrRegionName, sb); - } - first = false; sb.append(")"); return sb.toString(); } @@ -11997,15 +12801,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class majorCompact_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public majorCompact_argsStandardScheme getScheme() { - return new majorCompact_argsStandardScheme(); + private static class getTableNames_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNames_argsStandardScheme getScheme() { + return new getTableNames_argsStandardScheme(); } } - private static class majorCompact_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getTableNames_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -12015,14 +12819,6 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_args s break; } switch (schemeField.id) { - case 1: // TABLE_NAME_OR_REGION_NAME - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tableNameOrRegionName = iprot.readBinary(); - struct.setTableNameOrRegionNameIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -12034,50 +12830,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_args s struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.tableNameOrRegionName != null) { - oprot.writeFieldBegin(TABLE_NAME_OR_REGION_NAME_FIELD_DESC); - oprot.writeBinary(struct.tableNameOrRegionName); - oprot.writeFieldEnd(); - } oprot.writeFieldStop(); oprot.writeStructEnd(); } } - private static class majorCompact_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public majorCompact_argsTupleScheme getScheme() { - return new majorCompact_argsTupleScheme(); + private static class getTableNames_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNames_argsTupleScheme getScheme() { + return new getTableNames_argsTupleScheme(); } } - private static class majorCompact_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getTableNames_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetTableNameOrRegionName()) { - optionals.set(0); - } - oprot.writeBitSet(optionals, 1); - if (struct.isSetTableNameOrRegionName()) { - oprot.writeBinary(struct.tableNameOrRegionName); - } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, majorCompact_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getTableNames_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(1); - if (incoming.get(0)) { - struct.tableNameOrRegionName = iprot.readBinary(); - struct.setTableNameOrRegionNameIsSet(true); - } } } @@ -12086,18 +12864,21 @@ private static S scheme(org.apache. } } - public static class majorCompact_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("majorCompact_result"); + public static class getTableNames_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNames_result"); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.LIST, (short)0); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new majorCompact_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new majorCompact_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNames_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNames_resultTupleSchemeFactory(); + public @org.apache.thrift.annotation.Nullable java.util.List success; // required public @org.apache.thrift.annotation.Nullable IOError io; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { + SUCCESS((short)0, "success"), IO((short)1, "io"); private static final java.util.Map byName = new java.util.HashMap(); @@ -12114,6 +12895,8 @@ public enum _Fields implements org.apache.thrift.TFieldIdEnum { @org.apache.thrift.annotation.Nullable public static _Fields findByThriftId(int fieldId) { switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; case 1: // IO return IO; default: @@ -12160,46 +12943,100 @@ public java.lang.String getFieldName() { public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Text")))); tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(majorCompact_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNames_result.class, metaDataMap); } - public majorCompact_result() { + public getTableNames_result() { } - public majorCompact_result( + public getTableNames_result( + java.util.List success, IOError io) { this(); + this.success = success; this.io = io; } /** * Performs a deep copy on other. */ - public majorCompact_result(majorCompact_result other) { + public getTableNames_result(getTableNames_result other) { + if (other.isSetSuccess()) { + java.util.List __this__success = new java.util.ArrayList(other.success.size()); + for (java.nio.ByteBuffer other_element : other.success) { + __this__success.add(org.apache.thrift.TBaseHelper.copyBinary(other_element)); + } + this.success = __this__success; + } if (other.isSetIo()) { this.io = new IOError(other.io); } } - public majorCompact_result deepCopy() { - return new majorCompact_result(this); + public getTableNames_result deepCopy() { + return new getTableNames_result(this); } @Override public void clear() { + this.success = null; this.io = null; } + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + @org.apache.thrift.annotation.Nullable + public java.util.Iterator getSuccessIterator() { + return (this.success == null) ? null : this.success.iterator(); + } + + public void addToSuccess(java.nio.ByteBuffer elem) { + if (this.success == null) { + this.success = new java.util.ArrayList(); + } + this.success.add(elem); + } + + @org.apache.thrift.annotation.Nullable + public java.util.List getSuccess() { + return this.success; + } + + public getTableNames_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.List success) { + this.success = success; + return this; + } + + public void unsetSuccess() { + this.success = null; + } + + /** Returns true if field success is set (has been assigned a value) and false otherwise */ + public boolean isSetSuccess() { + return this.success != null; + } + + public void setSuccessIsSet(boolean value) { + if (!value) { + this.success = null; + } + } + @org.apache.thrift.annotation.Nullable public IOError getIo() { return this.io; } - public majorCompact_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public getTableNames_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -12221,6 +13058,14 @@ public void setIoIsSet(boolean value) { public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) { switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((java.util.List)value); + } + break; + case IO: if (value == null) { unsetIo(); @@ -12235,6 +13080,9 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable @org.apache.thrift.annotation.Nullable public java.lang.Object getFieldValue(_Fields field) { switch (field) { + case SUCCESS: + return getSuccess(); + case IO: return getIo(); @@ -12249,6 +13097,8 @@ public boolean isSet(_Fields field) { } switch (field) { + case SUCCESS: + return isSetSuccess(); case IO: return isSetIo(); } @@ -12257,17 +13107,26 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof majorCompact_result) - return this.equals((majorCompact_result)that); + if (that instanceof getTableNames_result) + return this.equals((getTableNames_result)that); return false; } - public boolean equals(majorCompact_result that) { + public boolean equals(getTableNames_result that) { if (that == null) return false; if (this == that) return true; + boolean this_present_success = true && this.isSetSuccess(); + boolean that_present_success = true && that.isSetSuccess(); + if (this_present_success || that_present_success) { + if (!(this_present_success && that_present_success)) + return false; + if (!this.success.equals(that.success)) + return false; + } + boolean this_present_io = true && this.isSetIo(); boolean that_present_io = true && that.isSetIo(); if (this_present_io || that_present_io) { @@ -12284,6 +13143,10 @@ public boolean equals(majorCompact_result that) { public int hashCode() { int hashCode = 1; + hashCode = hashCode * 8191 + ((isSetSuccess()) ? 131071 : 524287); + if (isSetSuccess()) + hashCode = hashCode * 8191 + success.hashCode(); + hashCode = hashCode * 8191 + ((isSetIo()) ? 131071 : 524287); if (isSetIo()) hashCode = hashCode * 8191 + io.hashCode(); @@ -12292,13 +13155,23 @@ public int hashCode() { } @Override - public int compareTo(majorCompact_result other) { + public int compareTo(getTableNames_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSuccess()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = java.lang.Boolean.compare(isSetIo(), other.isSetIo()); if (lastComparison != 0) { return lastComparison; @@ -12327,9 +13200,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("majorCompact_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNames_result("); boolean first = true; + sb.append("success:"); + if (this.success == null) { + sb.append("null"); + } else { + org.apache.thrift.TBaseHelper.toString(this.success, sb); + } + first = false; + if (!first) sb.append(", "); sb.append("io:"); if (this.io == null) { sb.append("null"); @@ -12362,15 +13243,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class majorCompact_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public majorCompact_resultStandardScheme getScheme() { - return new majorCompact_resultStandardScheme(); + private static class getTableNames_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNames_resultStandardScheme getScheme() { + return new getTableNames_resultStandardScheme(); } } - private static class majorCompact_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getTableNames_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -12380,6 +13261,24 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_result break; } switch (schemeField.id) { + case 0: // SUCCESS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list50 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list50.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem51; + for (int _i52 = 0; _i52 < _list50.size; ++_i52) + { + _elem51 = iprot.readBinary(); + struct.success.add(_elem51); + } + iprot.readListEnd(); + } + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; case 1: // IO if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { struct.io = new IOError(); @@ -12400,10 +13299,22 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, majorCompact_result struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); + if (struct.success != null) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); + for (java.nio.ByteBuffer _iter53 : struct.success) + { + oprot.writeBinary(_iter53); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } if (struct.io != null) { oprot.writeFieldBegin(IO_FIELD_DESC); struct.io.write(oprot); @@ -12415,32 +13326,57 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, majorCompact_resul } - private static class majorCompact_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public majorCompact_resultTupleScheme getScheme() { - return new majorCompact_resultTupleScheme(); + private static class getTableNames_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNames_resultTupleScheme getScheme() { + return new getTableNames_resultTupleScheme(); } } - private static class majorCompact_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getTableNames_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, majorCompact_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); - if (struct.isSetIo()) { + if (struct.isSetSuccess()) { optionals.set(0); } - oprot.writeBitSet(optionals, 1); + if (struct.isSetIo()) { + optionals.set(1); + } + oprot.writeBitSet(optionals, 2); + if (struct.isSetSuccess()) { + { + oprot.writeI32(struct.success.size()); + for (java.nio.ByteBuffer _iter54 : struct.success) + { + oprot.writeBinary(_iter54); + } + } + } if (struct.isSetIo()) { struct.io.write(oprot); } } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, majorCompact_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getTableNames_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; - java.util.BitSet incoming = iprot.readBitSet(1); + java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { + { + org.apache.thrift.protocol.TList _list55 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.success = new java.util.ArrayList(_list55.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem56; + for (int _i57 = 0; _i57 < _list55.size; ++_i57) + { + _elem56 = iprot.readBinary(); + struct.success.add(_elem56); + } + } + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { struct.io = new IOError(); struct.io.read(iprot); struct.setIoIsSet(true); @@ -12453,12 +13389,12 @@ private static S scheme(org.apache. } } - public static class getTableNames_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNames_args"); + public static class getTableNamesWithIsTableEnabled_args implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNamesWithIsTableEnabled_args"); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNames_argsStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNames_argsTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNamesWithIsTableEnabled_argsStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNamesWithIsTableEnabled_argsTupleSchemeFactory(); /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ @@ -12522,20 +13458,20 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNames_args.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNamesWithIsTableEnabled_args.class, metaDataMap); } - public getTableNames_args() { + public getTableNamesWithIsTableEnabled_args() { } /** * Performs a deep copy on other. */ - public getTableNames_args(getTableNames_args other) { + public getTableNamesWithIsTableEnabled_args(getTableNamesWithIsTableEnabled_args other) { } - public getTableNames_args deepCopy() { - return new getTableNames_args(this); + public getTableNamesWithIsTableEnabled_args deepCopy() { + return new getTableNamesWithIsTableEnabled_args(this); } @Override @@ -12567,12 +13503,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getTableNames_args) - return this.equals((getTableNames_args)that); + if (that instanceof getTableNamesWithIsTableEnabled_args) + return this.equals((getTableNamesWithIsTableEnabled_args)that); return false; } - public boolean equals(getTableNames_args that) { + public boolean equals(getTableNamesWithIsTableEnabled_args that) { if (that == null) return false; if (this == that) @@ -12589,7 +13525,7 @@ public int hashCode() { } @Override - public int compareTo(getTableNames_args other) { + public int compareTo(getTableNamesWithIsTableEnabled_args other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -12614,7 +13550,7 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNames_args("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNamesWithIsTableEnabled_args("); boolean first = true; sb.append(")"); @@ -12642,15 +13578,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getTableNames_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNames_argsStandardScheme getScheme() { - return new getTableNames_argsStandardScheme(); + private static class getTableNamesWithIsTableEnabled_argsStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNamesWithIsTableEnabled_argsStandardScheme getScheme() { + return new getTableNamesWithIsTableEnabled_argsStandardScheme(); } } - private static class getTableNames_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getTableNamesWithIsTableEnabled_argsStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNamesWithIsTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -12671,7 +13607,7 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_args struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNamesWithIsTableEnabled_args struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); @@ -12681,21 +13617,21 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_args } - private static class getTableNames_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNames_argsTupleScheme getScheme() { - return new getTableNames_argsTupleScheme(); + private static class getTableNamesWithIsTableEnabled_argsTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNamesWithIsTableEnabled_argsTupleScheme getScheme() { + return new getTableNamesWithIsTableEnabled_argsTupleScheme(); } } - private static class getTableNames_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getTableNamesWithIsTableEnabled_argsTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_args struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIsTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getTableNames_args struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIsTableEnabled_args struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; } } @@ -12705,16 +13641,16 @@ private static S scheme(org.apache. } } - public static class getTableNames_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNames_result"); + public static class getTableNamesWithIsTableEnabled_result implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableNamesWithIsTableEnabled_result"); - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.LIST, (short)0); + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.MAP, (short)0); private static final org.apache.thrift.protocol.TField IO_FIELD_DESC = new org.apache.thrift.protocol.TField("io", org.apache.thrift.protocol.TType.STRUCT, (short)1); - private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNames_resultStandardSchemeFactory(); - private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNames_resultTupleSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new getTableNamesWithIsTableEnabled_resultStandardSchemeFactory(); + private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new getTableNamesWithIsTableEnabled_resultTupleSchemeFactory(); - public @org.apache.thrift.annotation.Nullable java.util.List success; // required + public @org.apache.thrift.annotation.Nullable java.util.Map success; // required public @org.apache.thrift.annotation.Nullable IOError io; // required /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ @@ -12785,19 +13721,20 @@ public java.lang.String getFieldName() { static { java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Text")))); + new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , "Text"), + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL)))); tmpMap.put(_Fields.IO, new org.apache.thrift.meta_data.FieldMetaData("io", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, IOError.class))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNames_result.class, metaDataMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableNamesWithIsTableEnabled_result.class, metaDataMap); } - public getTableNames_result() { + public getTableNamesWithIsTableEnabled_result() { } - public getTableNames_result( - java.util.List success, + public getTableNamesWithIsTableEnabled_result( + java.util.Map success, IOError io) { this(); @@ -12808,11 +13745,19 @@ public getTableNames_result( /** * Performs a deep copy on other. */ - public getTableNames_result(getTableNames_result other) { + public getTableNamesWithIsTableEnabled_result(getTableNamesWithIsTableEnabled_result other) { if (other.isSetSuccess()) { - java.util.List __this__success = new java.util.ArrayList(other.success.size()); - for (java.nio.ByteBuffer other_element : other.success) { - __this__success.add(org.apache.thrift.TBaseHelper.copyBinary(other_element)); + java.util.Map __this__success = new java.util.HashMap(other.success.size()); + for (java.util.Map.Entry other_element : other.success.entrySet()) { + + java.nio.ByteBuffer other_element_key = other_element.getKey(); + java.lang.Boolean other_element_value = other_element.getValue(); + + java.nio.ByteBuffer __this__success_copy_key = org.apache.thrift.TBaseHelper.copyBinary(other_element_key); + + java.lang.Boolean __this__success_copy_value = other_element_value; + + __this__success.put(__this__success_copy_key, __this__success_copy_value); } this.success = __this__success; } @@ -12821,8 +13766,8 @@ public getTableNames_result(getTableNames_result other) { } } - public getTableNames_result deepCopy() { - return new getTableNames_result(this); + public getTableNamesWithIsTableEnabled_result deepCopy() { + return new getTableNamesWithIsTableEnabled_result(this); } @Override @@ -12835,24 +13780,19 @@ public int getSuccessSize() { return (this.success == null) ? 0 : this.success.size(); } - @org.apache.thrift.annotation.Nullable - public java.util.Iterator getSuccessIterator() { - return (this.success == null) ? null : this.success.iterator(); - } - - public void addToSuccess(java.nio.ByteBuffer elem) { + public void putToSuccess(java.nio.ByteBuffer key, boolean val) { if (this.success == null) { - this.success = new java.util.ArrayList(); + this.success = new java.util.HashMap(); } - this.success.add(elem); + this.success.put(key, val); } @org.apache.thrift.annotation.Nullable - public java.util.List getSuccess() { + public java.util.Map getSuccess() { return this.success; } - public getTableNames_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.List success) { + public getTableNamesWithIsTableEnabled_result setSuccess(@org.apache.thrift.annotation.Nullable java.util.Map success) { this.success = success; return this; } @@ -12877,7 +13817,7 @@ public IOError getIo() { return this.io; } - public getTableNames_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { + public getTableNamesWithIsTableEnabled_result setIo(@org.apache.thrift.annotation.Nullable IOError io) { this.io = io; return this; } @@ -12903,7 +13843,7 @@ public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable if (value == null) { unsetSuccess(); } else { - setSuccess((java.util.List)value); + setSuccess((java.util.Map)value); } break; @@ -12948,12 +13888,12 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that instanceof getTableNames_result) - return this.equals((getTableNames_result)that); + if (that instanceof getTableNamesWithIsTableEnabled_result) + return this.equals((getTableNamesWithIsTableEnabled_result)that); return false; } - public boolean equals(getTableNames_result that) { + public boolean equals(getTableNamesWithIsTableEnabled_result that) { if (that == null) return false; if (this == that) @@ -12996,7 +13936,7 @@ public int hashCode() { } @Override - public int compareTo(getTableNames_result other) { + public int compareTo(getTableNamesWithIsTableEnabled_result other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } @@ -13041,14 +13981,14 @@ public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache. @Override public java.lang.String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNames_result("); + java.lang.StringBuilder sb = new java.lang.StringBuilder("getTableNamesWithIsTableEnabled_result("); boolean first = true; sb.append("success:"); if (this.success == null) { sb.append("null"); } else { - org.apache.thrift.TBaseHelper.toString(this.success, sb); + sb.append(this.success); } first = false; if (!first) sb.append(", "); @@ -13084,15 +14024,15 @@ private void readObject(java.io.ObjectInputStream in) throws java.io.IOException } } - private static class getTableNames_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNames_resultStandardScheme getScheme() { - return new getTableNames_resultStandardScheme(); + private static class getTableNamesWithIsTableEnabled_resultStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNamesWithIsTableEnabled_resultStandardScheme getScheme() { + return new getTableNamesWithIsTableEnabled_resultStandardScheme(); } } - private static class getTableNames_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { + private static class getTableNamesWithIsTableEnabled_resultStandardScheme extends org.apache.thrift.scheme.StandardScheme { - public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNamesWithIsTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TField schemeField; iprot.readStructBegin(); while (true) @@ -13103,17 +14043,19 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_resul } switch (schemeField.id) { case 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TList _list50 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list50.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem51; - for (int _i52 = 0; _i52 < _list50.size; ++_i52) + org.apache.thrift.protocol.TMap _map58 = iprot.readMapBegin(); + struct.success = new java.util.HashMap(2*_map58.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key59; + boolean _val60; + for (int _i61 = 0; _i61 < _map58.size; ++_i61) { - _elem51 = iprot.readBinary(); - struct.success.add(_elem51); + _key59 = iprot.readBinary(); + _val60 = iprot.readBool(); + struct.success.put(_key59, _val60); } - iprot.readListEnd(); + iprot.readMapEnd(); } struct.setSuccessIsSet(true); } else { @@ -13140,19 +14082,20 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableNames_resul struct.validate(); } - public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNamesWithIsTableEnabled_result struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.success != null) { oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (java.nio.ByteBuffer _iter53 : struct.success) + oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.BOOL, struct.success.size())); + for (java.util.Map.Entry _iter62 : struct.success.entrySet()) { - oprot.writeBinary(_iter53); + oprot.writeBinary(_iter62.getKey()); + oprot.writeBool(_iter62.getValue()); } - oprot.writeListEnd(); + oprot.writeMapEnd(); } oprot.writeFieldEnd(); } @@ -13167,16 +14110,16 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getTableNames_resu } - private static class getTableNames_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { - public getTableNames_resultTupleScheme getScheme() { - return new getTableNames_resultTupleScheme(); + private static class getTableNamesWithIsTableEnabled_resultTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { + public getTableNamesWithIsTableEnabled_resultTupleScheme getScheme() { + return new getTableNamesWithIsTableEnabled_resultTupleScheme(); } } - private static class getTableNames_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { + private static class getTableNamesWithIsTableEnabled_resultTupleScheme extends org.apache.thrift.scheme.TupleScheme { @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_result struct) throws org.apache.thrift.TException { + public void write(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIsTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet optionals = new java.util.BitSet(); if (struct.isSetSuccess()) { @@ -13189,9 +14132,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_resul if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.nio.ByteBuffer _iter54 : struct.success) + for (java.util.Map.Entry _iter63 : struct.success.entrySet()) { - oprot.writeBinary(_iter54); + oprot.writeBinary(_iter63.getKey()); + oprot.writeBool(_iter63.getValue()); } } } @@ -13201,18 +14145,20 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getTableNames_resul } @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getTableNames_result struct) throws org.apache.thrift.TException { + public void read(org.apache.thrift.protocol.TProtocol prot, getTableNamesWithIsTableEnabled_result struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list55 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.success = new java.util.ArrayList(_list55.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem56; - for (int _i57 = 0; _i57 < _list55.size; ++_i57) + org.apache.thrift.protocol.TMap _map64 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.BOOL); + struct.success = new java.util.HashMap(2*_map64.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key65; + boolean _val66; + for (int _i67 = 0; _i67 < _map64.size; ++_i67) { - _elem56 = iprot.readBinary(); - struct.success.add(_elem56); + _key65 = iprot.readBinary(); + _val66 = iprot.readBool(); + struct.success.put(_key65, _val66); } } struct.setSuccessIsSet(true); @@ -14024,16 +14970,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getColumnDescriptor case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map58 = iprot.readMapBegin(); - struct.success = new java.util.HashMap(2*_map58.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key59; - @org.apache.thrift.annotation.Nullable ColumnDescriptor _val60; - for (int _i61 = 0; _i61 < _map58.size; ++_i61) + org.apache.thrift.protocol.TMap _map68 = iprot.readMapBegin(); + struct.success = new java.util.HashMap(2*_map68.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key69; + @org.apache.thrift.annotation.Nullable ColumnDescriptor _val70; + for (int _i71 = 0; _i71 < _map68.size; ++_i71) { - _key59 = iprot.readBinary(); - _val60 = new ColumnDescriptor(); - _val60.read(iprot); - struct.success.put(_key59, _val60); + _key69 = iprot.readBinary(); + _val70 = new ColumnDescriptor(); + _val70.read(iprot); + struct.success.put(_key69, _val70); } iprot.readMapEnd(); } @@ -14070,10 +15016,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getColumnDescripto oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (java.util.Map.Entry _iter62 : struct.success.entrySet()) + for (java.util.Map.Entry _iter72 : struct.success.entrySet()) { - oprot.writeBinary(_iter62.getKey()); - _iter62.getValue().write(oprot); + oprot.writeBinary(_iter72.getKey()); + _iter72.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -14112,10 +15058,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getColumnDescriptor if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (java.util.Map.Entry _iter63 : struct.success.entrySet()) + for (java.util.Map.Entry _iter73 : struct.success.entrySet()) { - oprot.writeBinary(_iter63.getKey()); - _iter63.getValue().write(oprot); + oprot.writeBinary(_iter73.getKey()); + _iter73.getValue().write(oprot); } } } @@ -14130,16 +15076,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getColumnDescriptors java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map64 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.HashMap(2*_map64.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key65; - @org.apache.thrift.annotation.Nullable ColumnDescriptor _val66; - for (int _i67 = 0; _i67 < _map64.size; ++_i67) + org.apache.thrift.protocol.TMap _map74 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.HashMap(2*_map74.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key75; + @org.apache.thrift.annotation.Nullable ColumnDescriptor _val76; + for (int _i77 = 0; _i77 < _map74.size; ++_i77) { - _key65 = iprot.readBinary(); - _val66 = new ColumnDescriptor(); - _val66.read(iprot); - struct.success.put(_key65, _val66); + _key75 = iprot.readBinary(); + _val76 = new ColumnDescriptor(); + _val76.read(iprot); + struct.success.put(_key75, _val76); } } struct.setSuccessIsSet(true); @@ -14947,14 +15893,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getTableRegions_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list68 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list68.size); - @org.apache.thrift.annotation.Nullable TRegionInfo _elem69; - for (int _i70 = 0; _i70 < _list68.size; ++_i70) + org.apache.thrift.protocol.TList _list78 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list78.size); + @org.apache.thrift.annotation.Nullable TRegionInfo _elem79; + for (int _i80 = 0; _i80 < _list78.size; ++_i80) { - _elem69 = new TRegionInfo(); - _elem69.read(iprot); - struct.success.add(_elem69); + _elem79 = new TRegionInfo(); + _elem79.read(iprot); + struct.success.add(_elem79); } iprot.readListEnd(); } @@ -14991,9 +15937,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getTableRegions_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRegionInfo _iter71 : struct.success) + for (TRegionInfo _iter81 : struct.success) { - _iter71.write(oprot); + _iter81.write(oprot); } oprot.writeListEnd(); } @@ -15032,9 +15978,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getTableRegions_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRegionInfo _iter72 : struct.success) + for (TRegionInfo _iter82 : struct.success) { - _iter72.write(oprot); + _iter82.write(oprot); } } } @@ -15049,14 +15995,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getTableRegions_resu java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list73 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list73.size); - @org.apache.thrift.annotation.Nullable TRegionInfo _elem74; - for (int _i75 = 0; _i75 < _list73.size; ++_i75) + org.apache.thrift.protocol.TList _list83 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list83.size); + @org.apache.thrift.annotation.Nullable TRegionInfo _elem84; + for (int _i85 = 0; _i85 < _list83.size; ++_i85) { - _elem74 = new TRegionInfo(); - _elem74.read(iprot); - struct.success.add(_elem74); + _elem84 = new TRegionInfo(); + _elem84.read(iprot); + struct.success.add(_elem84); } } struct.setSuccessIsSet(true); @@ -15519,14 +16465,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, createTable_args st case 2: // COLUMN_FAMILIES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list76 = iprot.readListBegin(); - struct.columnFamilies = new java.util.ArrayList(_list76.size); - @org.apache.thrift.annotation.Nullable ColumnDescriptor _elem77; - for (int _i78 = 0; _i78 < _list76.size; ++_i78) + org.apache.thrift.protocol.TList _list86 = iprot.readListBegin(); + struct.columnFamilies = new java.util.ArrayList(_list86.size); + @org.apache.thrift.annotation.Nullable ColumnDescriptor _elem87; + for (int _i88 = 0; _i88 < _list86.size; ++_i88) { - _elem77 = new ColumnDescriptor(); - _elem77.read(iprot); - struct.columnFamilies.add(_elem77); + _elem87 = new ColumnDescriptor(); + _elem87.read(iprot); + struct.columnFamilies.add(_elem87); } iprot.readListEnd(); } @@ -15559,9 +16505,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, createTable_args s oprot.writeFieldBegin(COLUMN_FAMILIES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.columnFamilies.size())); - for (ColumnDescriptor _iter79 : struct.columnFamilies) + for (ColumnDescriptor _iter89 : struct.columnFamilies) { - _iter79.write(oprot); + _iter89.write(oprot); } oprot.writeListEnd(); } @@ -15598,9 +16544,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, createTable_args st if (struct.isSetColumnFamilies()) { { oprot.writeI32(struct.columnFamilies.size()); - for (ColumnDescriptor _iter80 : struct.columnFamilies) + for (ColumnDescriptor _iter90 : struct.columnFamilies) { - _iter80.write(oprot); + _iter90.write(oprot); } } } @@ -15616,14 +16562,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, createTable_args str } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list81 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.columnFamilies = new java.util.ArrayList(_list81.size); - @org.apache.thrift.annotation.Nullable ColumnDescriptor _elem82; - for (int _i83 = 0; _i83 < _list81.size; ++_i83) + org.apache.thrift.protocol.TList _list91 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.columnFamilies = new java.util.ArrayList(_list91.size); + @org.apache.thrift.annotation.Nullable ColumnDescriptor _elem92; + for (int _i93 = 0; _i93 < _list91.size; ++_i93) { - _elem82 = new ColumnDescriptor(); - _elem82.read(iprot); - struct.columnFamilies.add(_elem82); + _elem92 = new ColumnDescriptor(); + _elem92.read(iprot); + struct.columnFamilies.add(_elem92); } } struct.setColumnFamiliesIsSet(true); @@ -17653,15 +18599,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_args struct) th case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map84 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map84.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key85; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val86; - for (int _i87 = 0; _i87 < _map84.size; ++_i87) + org.apache.thrift.protocol.TMap _map94 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map94.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key95; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val96; + for (int _i97 = 0; _i97 < _map94.size; ++_i97) { - _key85 = iprot.readBinary(); - _val86 = iprot.readBinary(); - struct.attributes.put(_key85, _val86); + _key95 = iprot.readBinary(); + _val96 = iprot.readBinary(); + struct.attributes.put(_key95, _val96); } iprot.readMapEnd(); } @@ -17704,10 +18650,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_args struct) t oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter88 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter98 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter88.getKey()); - oprot.writeBinary(_iter88.getValue()); + oprot.writeBinary(_iter98.getKey()); + oprot.writeBinary(_iter98.getValue()); } oprot.writeMapEnd(); } @@ -17756,10 +18702,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_args struct) th if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter89 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter99 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter89.getKey()); - oprot.writeBinary(_iter89.getValue()); + oprot.writeBinary(_iter99.getKey()); + oprot.writeBinary(_iter99.getValue()); } } } @@ -17783,15 +18729,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_args struct) thr } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map90 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map90.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key91; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val92; - for (int _i93 = 0; _i93 < _map90.size; ++_i93) + org.apache.thrift.protocol.TMap _map100 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map100.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key101; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val102; + for (int _i103 = 0; _i103 < _map100.size; ++_i103) { - _key91 = iprot.readBinary(); - _val92 = iprot.readBinary(); - struct.attributes.put(_key91, _val92); + _key101 = iprot.readBinary(); + _val102 = iprot.readBinary(); + struct.attributes.put(_key101, _val102); } } struct.setAttributesIsSet(true); @@ -18204,14 +19150,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_result struct) case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list94 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list94.size); - @org.apache.thrift.annotation.Nullable TCell _elem95; - for (int _i96 = 0; _i96 < _list94.size; ++_i96) + org.apache.thrift.protocol.TList _list104 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list104.size); + @org.apache.thrift.annotation.Nullable TCell _elem105; + for (int _i106 = 0; _i106 < _list104.size; ++_i106) { - _elem95 = new TCell(); - _elem95.read(iprot); - struct.success.add(_elem95); + _elem105 = new TCell(); + _elem105.read(iprot); + struct.success.add(_elem105); } iprot.readListEnd(); } @@ -18248,9 +19194,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_result struct) oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TCell _iter97 : struct.success) + for (TCell _iter107 : struct.success) { - _iter97.write(oprot); + _iter107.write(oprot); } oprot.writeListEnd(); } @@ -18289,9 +19235,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_result struct) if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TCell _iter98 : struct.success) + for (TCell _iter108 : struct.success) { - _iter98.write(oprot); + _iter108.write(oprot); } } } @@ -18306,14 +19252,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_result struct) t java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list99 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list99.size); - @org.apache.thrift.annotation.Nullable TCell _elem100; - for (int _i101 = 0; _i101 < _list99.size; ++_i101) + org.apache.thrift.protocol.TList _list109 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list109.size); + @org.apache.thrift.annotation.Nullable TCell _elem110; + for (int _i111 = 0; _i111 < _list109.size; ++_i111) { - _elem100 = new TCell(); - _elem100.read(iprot); - struct.success.add(_elem100); + _elem110 = new TCell(); + _elem110.read(iprot); + struct.success.add(_elem110); } } struct.setSuccessIsSet(true); @@ -19109,15 +20055,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getVer_args struct) case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map102 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map102.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key103; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val104; - for (int _i105 = 0; _i105 < _map102.size; ++_i105) + org.apache.thrift.protocol.TMap _map112 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map112.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key113; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val114; + for (int _i115 = 0; _i115 < _map112.size; ++_i115) { - _key103 = iprot.readBinary(); - _val104 = iprot.readBinary(); - struct.attributes.put(_key103, _val104); + _key113 = iprot.readBinary(); + _val114 = iprot.readBinary(); + struct.attributes.put(_key113, _val114); } iprot.readMapEnd(); } @@ -19163,10 +20109,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getVer_args struct oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter106 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter116 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter106.getKey()); - oprot.writeBinary(_iter106.getValue()); + oprot.writeBinary(_iter116.getKey()); + oprot.writeBinary(_iter116.getValue()); } oprot.writeMapEnd(); } @@ -19221,10 +20167,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getVer_args struct) if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter107 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter117 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter107.getKey()); - oprot.writeBinary(_iter107.getValue()); + oprot.writeBinary(_iter117.getKey()); + oprot.writeBinary(_iter117.getValue()); } } } @@ -19252,15 +20198,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getVer_args struct) } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map108 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map108.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key109; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val110; - for (int _i111 = 0; _i111 < _map108.size; ++_i111) + org.apache.thrift.protocol.TMap _map118 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map118.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key119; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val120; + for (int _i121 = 0; _i121 < _map118.size; ++_i121) { - _key109 = iprot.readBinary(); - _val110 = iprot.readBinary(); - struct.attributes.put(_key109, _val110); + _key119 = iprot.readBinary(); + _val120 = iprot.readBinary(); + struct.attributes.put(_key119, _val120); } } struct.setAttributesIsSet(true); @@ -19673,14 +20619,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getVer_result struc case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list112 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list112.size); - @org.apache.thrift.annotation.Nullable TCell _elem113; - for (int _i114 = 0; _i114 < _list112.size; ++_i114) + org.apache.thrift.protocol.TList _list122 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list122.size); + @org.apache.thrift.annotation.Nullable TCell _elem123; + for (int _i124 = 0; _i124 < _list122.size; ++_i124) { - _elem113 = new TCell(); - _elem113.read(iprot); - struct.success.add(_elem113); + _elem123 = new TCell(); + _elem123.read(iprot); + struct.success.add(_elem123); } iprot.readListEnd(); } @@ -19717,9 +20663,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getVer_result stru oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TCell _iter115 : struct.success) + for (TCell _iter125 : struct.success) { - _iter115.write(oprot); + _iter125.write(oprot); } oprot.writeListEnd(); } @@ -19758,9 +20704,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getVer_result struc if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TCell _iter116 : struct.success) + for (TCell _iter126 : struct.success) { - _iter116.write(oprot); + _iter126.write(oprot); } } } @@ -19775,14 +20721,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getVer_result struct java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list117 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list117.size); - @org.apache.thrift.annotation.Nullable TCell _elem118; - for (int _i119 = 0; _i119 < _list117.size; ++_i119) + org.apache.thrift.protocol.TList _list127 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list127.size); + @org.apache.thrift.annotation.Nullable TCell _elem128; + for (int _i129 = 0; _i129 < _list127.size; ++_i129) { - _elem118 = new TCell(); - _elem118.read(iprot); - struct.success.add(_elem118); + _elem128 = new TCell(); + _elem128.read(iprot); + struct.success.add(_elem128); } } struct.setSuccessIsSet(true); @@ -20673,15 +21619,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getVerTs_args struc case 6: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map120 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map120.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key121; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val122; - for (int _i123 = 0; _i123 < _map120.size; ++_i123) + org.apache.thrift.protocol.TMap _map130 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map130.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key131; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val132; + for (int _i133 = 0; _i133 < _map130.size; ++_i133) { - _key121 = iprot.readBinary(); - _val122 = iprot.readBinary(); - struct.attributes.put(_key121, _val122); + _key131 = iprot.readBinary(); + _val132 = iprot.readBinary(); + struct.attributes.put(_key131, _val132); } iprot.readMapEnd(); } @@ -20730,10 +21676,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getVerTs_args stru oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter124 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter134 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter124.getKey()); - oprot.writeBinary(_iter124.getValue()); + oprot.writeBinary(_iter134.getKey()); + oprot.writeBinary(_iter134.getValue()); } oprot.writeMapEnd(); } @@ -20794,10 +21740,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getVerTs_args struc if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter125 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter135 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter125.getKey()); - oprot.writeBinary(_iter125.getValue()); + oprot.writeBinary(_iter135.getKey()); + oprot.writeBinary(_iter135.getValue()); } } } @@ -20829,15 +21775,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getVerTs_args struct } if (incoming.get(5)) { { - org.apache.thrift.protocol.TMap _map126 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map126.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key127; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val128; - for (int _i129 = 0; _i129 < _map126.size; ++_i129) + org.apache.thrift.protocol.TMap _map136 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map136.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key137; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val138; + for (int _i139 = 0; _i139 < _map136.size; ++_i139) { - _key127 = iprot.readBinary(); - _val128 = iprot.readBinary(); - struct.attributes.put(_key127, _val128); + _key137 = iprot.readBinary(); + _val138 = iprot.readBinary(); + struct.attributes.put(_key137, _val138); } } struct.setAttributesIsSet(true); @@ -21250,14 +22196,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getVerTs_result str case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list130 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list130.size); - @org.apache.thrift.annotation.Nullable TCell _elem131; - for (int _i132 = 0; _i132 < _list130.size; ++_i132) + org.apache.thrift.protocol.TList _list140 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list140.size); + @org.apache.thrift.annotation.Nullable TCell _elem141; + for (int _i142 = 0; _i142 < _list140.size; ++_i142) { - _elem131 = new TCell(); - _elem131.read(iprot); - struct.success.add(_elem131); + _elem141 = new TCell(); + _elem141.read(iprot); + struct.success.add(_elem141); } iprot.readListEnd(); } @@ -21294,9 +22240,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getVerTs_result st oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TCell _iter133 : struct.success) + for (TCell _iter143 : struct.success) { - _iter133.write(oprot); + _iter143.write(oprot); } oprot.writeListEnd(); } @@ -21335,9 +22281,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getVerTs_result str if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TCell _iter134 : struct.success) + for (TCell _iter144 : struct.success) { - _iter134.write(oprot); + _iter144.write(oprot); } } } @@ -21352,14 +22298,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getVerTs_result stru java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list135 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list135.size); - @org.apache.thrift.annotation.Nullable TCell _elem136; - for (int _i137 = 0; _i137 < _list135.size; ++_i137) + org.apache.thrift.protocol.TList _list145 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list145.size); + @org.apache.thrift.annotation.Nullable TCell _elem146; + for (int _i147 = 0; _i147 < _list145.size; ++_i147) { - _elem136 = new TCell(); - _elem136.read(iprot); - struct.success.add(_elem136); + _elem146 = new TCell(); + _elem146.read(iprot); + struct.success.add(_elem146); } } struct.setSuccessIsSet(true); @@ -21941,15 +22887,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRow_args struct) case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map138 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map138.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key139; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val140; - for (int _i141 = 0; _i141 < _map138.size; ++_i141) + org.apache.thrift.protocol.TMap _map148 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map148.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key149; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val150; + for (int _i151 = 0; _i151 < _map148.size; ++_i151) { - _key139 = iprot.readBinary(); - _val140 = iprot.readBinary(); - struct.attributes.put(_key139, _val140); + _key149 = iprot.readBinary(); + _val150 = iprot.readBinary(); + struct.attributes.put(_key149, _val150); } iprot.readMapEnd(); } @@ -21987,10 +22933,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRow_args struct oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter142 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter152 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter142.getKey()); - oprot.writeBinary(_iter142.getValue()); + oprot.writeBinary(_iter152.getKey()); + oprot.writeBinary(_iter152.getValue()); } oprot.writeMapEnd(); } @@ -22033,10 +22979,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRow_args struct) if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter143 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter153 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter143.getKey()); - oprot.writeBinary(_iter143.getValue()); + oprot.writeBinary(_iter153.getKey()); + oprot.writeBinary(_iter153.getValue()); } } } @@ -22056,15 +23002,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRow_args struct) } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map144 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map144.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key145; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val146; - for (int _i147 = 0; _i147 < _map144.size; ++_i147) + org.apache.thrift.protocol.TMap _map154 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map154.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key155; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val156; + for (int _i157 = 0; _i157 < _map154.size; ++_i157) { - _key145 = iprot.readBinary(); - _val146 = iprot.readBinary(); - struct.attributes.put(_key145, _val146); + _key155 = iprot.readBinary(); + _val156 = iprot.readBinary(); + struct.attributes.put(_key155, _val156); } } struct.setAttributesIsSet(true); @@ -22477,14 +23423,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRow_result struc case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list148 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list148.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem149; - for (int _i150 = 0; _i150 < _list148.size; ++_i150) + org.apache.thrift.protocol.TList _list158 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list158.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem159; + for (int _i160 = 0; _i160 < _list158.size; ++_i160) { - _elem149 = new TRowResult(); - _elem149.read(iprot); - struct.success.add(_elem149); + _elem159 = new TRowResult(); + _elem159.read(iprot); + struct.success.add(_elem159); } iprot.readListEnd(); } @@ -22521,9 +23467,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRow_result stru oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter151 : struct.success) + for (TRowResult _iter161 : struct.success) { - _iter151.write(oprot); + _iter161.write(oprot); } oprot.writeListEnd(); } @@ -22562,9 +23508,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRow_result struc if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter152 : struct.success) + for (TRowResult _iter162 : struct.success) { - _iter152.write(oprot); + _iter162.write(oprot); } } } @@ -22579,14 +23525,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRow_result struct java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list153 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list153.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem154; - for (int _i155 = 0; _i155 < _list153.size; ++_i155) + org.apache.thrift.protocol.TList _list163 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list163.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem164; + for (int _i165 = 0; _i165 < _list163.size; ++_i165) { - _elem154 = new TRowResult(); - _elem154.read(iprot); - struct.success.add(_elem154); + _elem164 = new TRowResult(); + _elem164.read(iprot); + struct.success.add(_elem164); } } struct.setSuccessIsSet(true); @@ -23283,13 +24229,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumns_a case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list156 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list156.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem157; - for (int _i158 = 0; _i158 < _list156.size; ++_i158) + org.apache.thrift.protocol.TList _list166 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list166.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem167; + for (int _i168 = 0; _i168 < _list166.size; ++_i168) { - _elem157 = iprot.readBinary(); - struct.columns.add(_elem157); + _elem167 = iprot.readBinary(); + struct.columns.add(_elem167); } iprot.readListEnd(); } @@ -23301,15 +24247,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumns_a case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map159 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map159.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key160; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val161; - for (int _i162 = 0; _i162 < _map159.size; ++_i162) + org.apache.thrift.protocol.TMap _map169 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map169.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key170; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val171; + for (int _i172 = 0; _i172 < _map169.size; ++_i172) { - _key160 = iprot.readBinary(); - _val161 = iprot.readBinary(); - struct.attributes.put(_key160, _val161); + _key170 = iprot.readBinary(); + _val171 = iprot.readBinary(); + struct.attributes.put(_key170, _val171); } iprot.readMapEnd(); } @@ -23347,9 +24293,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumns_ oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter163 : struct.columns) + for (java.nio.ByteBuffer _iter173 : struct.columns) { - oprot.writeBinary(_iter163); + oprot.writeBinary(_iter173); } oprot.writeListEnd(); } @@ -23359,10 +24305,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumns_ oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter164 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter174 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter164.getKey()); - oprot.writeBinary(_iter164.getValue()); + oprot.writeBinary(_iter174.getKey()); + oprot.writeBinary(_iter174.getValue()); } oprot.writeMapEnd(); } @@ -23408,19 +24354,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumns_a if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter165 : struct.columns) + for (java.nio.ByteBuffer _iter175 : struct.columns) { - oprot.writeBinary(_iter165); + oprot.writeBinary(_iter175); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter166 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter176 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter166.getKey()); - oprot.writeBinary(_iter166.getValue()); + oprot.writeBinary(_iter176.getKey()); + oprot.writeBinary(_iter176.getValue()); } } } @@ -23440,28 +24386,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumns_ar } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list167 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list167.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem168; - for (int _i169 = 0; _i169 < _list167.size; ++_i169) + org.apache.thrift.protocol.TList _list177 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list177.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem178; + for (int _i179 = 0; _i179 < _list177.size; ++_i179) { - _elem168 = iprot.readBinary(); - struct.columns.add(_elem168); + _elem178 = iprot.readBinary(); + struct.columns.add(_elem178); } } struct.setColumnsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map170 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map170.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key171; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val172; - for (int _i173 = 0; _i173 < _map170.size; ++_i173) + org.apache.thrift.protocol.TMap _map180 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map180.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key181; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val182; + for (int _i183 = 0; _i183 < _map180.size; ++_i183) { - _key171 = iprot.readBinary(); - _val172 = iprot.readBinary(); - struct.attributes.put(_key171, _val172); + _key181 = iprot.readBinary(); + _val182 = iprot.readBinary(); + struct.attributes.put(_key181, _val182); } } struct.setAttributesIsSet(true); @@ -23874,14 +24820,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumns_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list174 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list174.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem175; - for (int _i176 = 0; _i176 < _list174.size; ++_i176) + org.apache.thrift.protocol.TList _list184 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list184.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem185; + for (int _i186 = 0; _i186 < _list184.size; ++_i186) { - _elem175 = new TRowResult(); - _elem175.read(iprot); - struct.success.add(_elem175); + _elem185 = new TRowResult(); + _elem185.read(iprot); + struct.success.add(_elem185); } iprot.readListEnd(); } @@ -23918,9 +24864,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumns_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter177 : struct.success) + for (TRowResult _iter187 : struct.success) { - _iter177.write(oprot); + _iter187.write(oprot); } oprot.writeListEnd(); } @@ -23959,9 +24905,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumns_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter178 : struct.success) + for (TRowResult _iter188 : struct.success) { - _iter178.write(oprot); + _iter188.write(oprot); } } } @@ -23976,14 +24922,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumns_re java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list179 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list179.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem180; - for (int _i181 = 0; _i181 < _list179.size; ++_i181) + org.apache.thrift.protocol.TList _list189 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list189.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem190; + for (int _i191 = 0; _i191 < _list189.size; ++_i191) { - _elem180 = new TRowResult(); - _elem180.read(iprot); - struct.success.add(_elem180); + _elem190 = new TRowResult(); + _elem190.read(iprot); + struct.success.add(_elem190); } } struct.setSuccessIsSet(true); @@ -24664,15 +25610,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowTs_args struc case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map182 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map182.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key183; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val184; - for (int _i185 = 0; _i185 < _map182.size; ++_i185) + org.apache.thrift.protocol.TMap _map192 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map192.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key193; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val194; + for (int _i195 = 0; _i195 < _map192.size; ++_i195) { - _key183 = iprot.readBinary(); - _val184 = iprot.readBinary(); - struct.attributes.put(_key183, _val184); + _key193 = iprot.readBinary(); + _val194 = iprot.readBinary(); + struct.attributes.put(_key193, _val194); } iprot.readMapEnd(); } @@ -24713,10 +25659,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowTs_args stru oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter186 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter196 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter186.getKey()); - oprot.writeBinary(_iter186.getValue()); + oprot.writeBinary(_iter196.getKey()); + oprot.writeBinary(_iter196.getValue()); } oprot.writeMapEnd(); } @@ -24765,10 +25711,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowTs_args struc if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter187 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter197 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter187.getKey()); - oprot.writeBinary(_iter187.getValue()); + oprot.writeBinary(_iter197.getKey()); + oprot.writeBinary(_iter197.getValue()); } } } @@ -24792,15 +25738,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowTs_args struct } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map188 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map188.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key189; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val190; - for (int _i191 = 0; _i191 < _map188.size; ++_i191) + org.apache.thrift.protocol.TMap _map198 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map198.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key199; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val200; + for (int _i201 = 0; _i201 < _map198.size; ++_i201) { - _key189 = iprot.readBinary(); - _val190 = iprot.readBinary(); - struct.attributes.put(_key189, _val190); + _key199 = iprot.readBinary(); + _val200 = iprot.readBinary(); + struct.attributes.put(_key199, _val200); } } struct.setAttributesIsSet(true); @@ -25213,14 +26159,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowTs_result str case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list192 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list192.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem193; - for (int _i194 = 0; _i194 < _list192.size; ++_i194) + org.apache.thrift.protocol.TList _list202 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list202.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem203; + for (int _i204 = 0; _i204 < _list202.size; ++_i204) { - _elem193 = new TRowResult(); - _elem193.read(iprot); - struct.success.add(_elem193); + _elem203 = new TRowResult(); + _elem203.read(iprot); + struct.success.add(_elem203); } iprot.readListEnd(); } @@ -25257,9 +26203,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowTs_result st oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter195 : struct.success) + for (TRowResult _iter205 : struct.success) { - _iter195.write(oprot); + _iter205.write(oprot); } oprot.writeListEnd(); } @@ -25298,9 +26244,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowTs_result str if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter196 : struct.success) + for (TRowResult _iter206 : struct.success) { - _iter196.write(oprot); + _iter206.write(oprot); } } } @@ -25315,14 +26261,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowTs_result stru java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list197 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list197.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem198; - for (int _i199 = 0; _i199 < _list197.size; ++_i199) + org.apache.thrift.protocol.TList _list207 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list207.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem208; + for (int _i209 = 0; _i209 < _list207.size; ++_i209) { - _elem198 = new TRowResult(); - _elem198.read(iprot); - struct.success.add(_elem198); + _elem208 = new TRowResult(); + _elem208.read(iprot); + struct.success.add(_elem208); } } struct.setSuccessIsSet(true); @@ -26098,13 +27044,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumnsTs case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list200 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list200.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem201; - for (int _i202 = 0; _i202 < _list200.size; ++_i202) + org.apache.thrift.protocol.TList _list210 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list210.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem211; + for (int _i212 = 0; _i212 < _list210.size; ++_i212) { - _elem201 = iprot.readBinary(); - struct.columns.add(_elem201); + _elem211 = iprot.readBinary(); + struct.columns.add(_elem211); } iprot.readListEnd(); } @@ -26124,15 +27070,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumnsTs case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map203 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map203.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key204; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val205; - for (int _i206 = 0; _i206 < _map203.size; ++_i206) + org.apache.thrift.protocol.TMap _map213 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map213.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key214; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val215; + for (int _i216 = 0; _i216 < _map213.size; ++_i216) { - _key204 = iprot.readBinary(); - _val205 = iprot.readBinary(); - struct.attributes.put(_key204, _val205); + _key214 = iprot.readBinary(); + _val215 = iprot.readBinary(); + struct.attributes.put(_key214, _val215); } iprot.readMapEnd(); } @@ -26170,9 +27116,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumnsT oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter207 : struct.columns) + for (java.nio.ByteBuffer _iter217 : struct.columns) { - oprot.writeBinary(_iter207); + oprot.writeBinary(_iter217); } oprot.writeListEnd(); } @@ -26185,10 +27131,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumnsT oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter208 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter218 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter208.getKey()); - oprot.writeBinary(_iter208.getValue()); + oprot.writeBinary(_iter218.getKey()); + oprot.writeBinary(_iter218.getValue()); } oprot.writeMapEnd(); } @@ -26237,9 +27183,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter209 : struct.columns) + for (java.nio.ByteBuffer _iter219 : struct.columns) { - oprot.writeBinary(_iter209); + oprot.writeBinary(_iter219); } } } @@ -26249,10 +27195,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter210 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter220 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter210.getKey()); - oprot.writeBinary(_iter210.getValue()); + oprot.writeBinary(_iter220.getKey()); + oprot.writeBinary(_iter220.getValue()); } } } @@ -26272,13 +27218,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs_ } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list211 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list211.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem212; - for (int _i213 = 0; _i213 < _list211.size; ++_i213) + org.apache.thrift.protocol.TList _list221 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list221.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem222; + for (int _i223 = 0; _i223 < _list221.size; ++_i223) { - _elem212 = iprot.readBinary(); - struct.columns.add(_elem212); + _elem222 = iprot.readBinary(); + struct.columns.add(_elem222); } } struct.setColumnsIsSet(true); @@ -26289,15 +27235,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs_ } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map214 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map214.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key215; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val216; - for (int _i217 = 0; _i217 < _map214.size; ++_i217) + org.apache.thrift.protocol.TMap _map224 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map224.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key225; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val226; + for (int _i227 = 0; _i227 < _map224.size; ++_i227) { - _key215 = iprot.readBinary(); - _val216 = iprot.readBinary(); - struct.attributes.put(_key215, _val216); + _key225 = iprot.readBinary(); + _val226 = iprot.readBinary(); + struct.attributes.put(_key225, _val226); } } struct.setAttributesIsSet(true); @@ -26710,14 +27656,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowWithColumnsTs case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list218 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list218.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem219; - for (int _i220 = 0; _i220 < _list218.size; ++_i220) + org.apache.thrift.protocol.TList _list228 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list228.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem229; + for (int _i230 = 0; _i230 < _list228.size; ++_i230) { - _elem219 = new TRowResult(); - _elem219.read(iprot); - struct.success.add(_elem219); + _elem229 = new TRowResult(); + _elem229.read(iprot); + struct.success.add(_elem229); } iprot.readListEnd(); } @@ -26754,9 +27700,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowWithColumnsT oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter221 : struct.success) + for (TRowResult _iter231 : struct.success) { - _iter221.write(oprot); + _iter231.write(oprot); } oprot.writeListEnd(); } @@ -26795,9 +27741,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter222 : struct.success) + for (TRowResult _iter232 : struct.success) { - _iter222.write(oprot); + _iter232.write(oprot); } } } @@ -26812,14 +27758,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowWithColumnsTs_ java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list223 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list223.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem224; - for (int _i225 = 0; _i225 < _list223.size; ++_i225) + org.apache.thrift.protocol.TList _list233 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list233.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem234; + for (int _i235 = 0; _i235 < _list233.size; ++_i235) { - _elem224 = new TRowResult(); - _elem224.read(iprot); - struct.success.add(_elem224); + _elem234 = new TRowResult(); + _elem234.read(iprot); + struct.success.add(_elem234); } } struct.setSuccessIsSet(true); @@ -27401,13 +28347,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRows_args struct case 2: // ROWS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list226 = iprot.readListBegin(); - struct.rows = new java.util.ArrayList(_list226.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem227; - for (int _i228 = 0; _i228 < _list226.size; ++_i228) + org.apache.thrift.protocol.TList _list236 = iprot.readListBegin(); + struct.rows = new java.util.ArrayList(_list236.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem237; + for (int _i238 = 0; _i238 < _list236.size; ++_i238) { - _elem227 = iprot.readBinary(); - struct.rows.add(_elem227); + _elem237 = iprot.readBinary(); + struct.rows.add(_elem237); } iprot.readListEnd(); } @@ -27419,15 +28365,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRows_args struct case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map229 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map229.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key230; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val231; - for (int _i232 = 0; _i232 < _map229.size; ++_i232) + org.apache.thrift.protocol.TMap _map239 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map239.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key240; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val241; + for (int _i242 = 0; _i242 < _map239.size; ++_i242) { - _key230 = iprot.readBinary(); - _val231 = iprot.readBinary(); - struct.attributes.put(_key230, _val231); + _key240 = iprot.readBinary(); + _val241 = iprot.readBinary(); + struct.attributes.put(_key240, _val241); } iprot.readMapEnd(); } @@ -27460,9 +28406,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRows_args struc oprot.writeFieldBegin(ROWS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.rows.size())); - for (java.nio.ByteBuffer _iter233 : struct.rows) + for (java.nio.ByteBuffer _iter243 : struct.rows) { - oprot.writeBinary(_iter233); + oprot.writeBinary(_iter243); } oprot.writeListEnd(); } @@ -27472,10 +28418,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRows_args struc oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter234 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter244 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter234.getKey()); - oprot.writeBinary(_iter234.getValue()); + oprot.writeBinary(_iter244.getKey()); + oprot.writeBinary(_iter244.getValue()); } oprot.writeMapEnd(); } @@ -27515,19 +28461,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRows_args struct if (struct.isSetRows()) { { oprot.writeI32(struct.rows.size()); - for (java.nio.ByteBuffer _iter235 : struct.rows) + for (java.nio.ByteBuffer _iter245 : struct.rows) { - oprot.writeBinary(_iter235); + oprot.writeBinary(_iter245); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter236 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter246 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter236.getKey()); - oprot.writeBinary(_iter236.getValue()); + oprot.writeBinary(_iter246.getKey()); + oprot.writeBinary(_iter246.getValue()); } } } @@ -27543,28 +28489,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRows_args struct) } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list237 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.rows = new java.util.ArrayList(_list237.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem238; - for (int _i239 = 0; _i239 < _list237.size; ++_i239) + org.apache.thrift.protocol.TList _list247 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.rows = new java.util.ArrayList(_list247.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem248; + for (int _i249 = 0; _i249 < _list247.size; ++_i249) { - _elem238 = iprot.readBinary(); - struct.rows.add(_elem238); + _elem248 = iprot.readBinary(); + struct.rows.add(_elem248); } } struct.setRowsIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map240 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map240.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key241; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val242; - for (int _i243 = 0; _i243 < _map240.size; ++_i243) + org.apache.thrift.protocol.TMap _map250 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map250.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key251; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val252; + for (int _i253 = 0; _i253 < _map250.size; ++_i253) { - _key241 = iprot.readBinary(); - _val242 = iprot.readBinary(); - struct.attributes.put(_key241, _val242); + _key251 = iprot.readBinary(); + _val252 = iprot.readBinary(); + struct.attributes.put(_key251, _val252); } } struct.setAttributesIsSet(true); @@ -27977,14 +28923,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRows_result stru case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list244 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list244.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem245; - for (int _i246 = 0; _i246 < _list244.size; ++_i246) + org.apache.thrift.protocol.TList _list254 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list254.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem255; + for (int _i256 = 0; _i256 < _list254.size; ++_i256) { - _elem245 = new TRowResult(); - _elem245.read(iprot); - struct.success.add(_elem245); + _elem255 = new TRowResult(); + _elem255.read(iprot); + struct.success.add(_elem255); } iprot.readListEnd(); } @@ -28021,9 +28967,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRows_result str oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter247 : struct.success) + for (TRowResult _iter257 : struct.success) { - _iter247.write(oprot); + _iter257.write(oprot); } oprot.writeListEnd(); } @@ -28062,9 +29008,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRows_result stru if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter248 : struct.success) + for (TRowResult _iter258 : struct.success) { - _iter248.write(oprot); + _iter258.write(oprot); } } } @@ -28079,14 +29025,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRows_result struc java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list249 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list249.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem250; - for (int _i251 = 0; _i251 < _list249.size; ++_i251) + org.apache.thrift.protocol.TList _list259 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list259.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem260; + for (int _i261 = 0; _i261 < _list259.size; ++_i261) { - _elem250 = new TRowResult(); - _elem250.read(iprot); - struct.success.add(_elem250); + _elem260 = new TRowResult(); + _elem260.read(iprot); + struct.success.add(_elem260); } } struct.setSuccessIsSet(true); @@ -28783,13 +29729,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumns_ case 2: // ROWS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list252 = iprot.readListBegin(); - struct.rows = new java.util.ArrayList(_list252.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem253; - for (int _i254 = 0; _i254 < _list252.size; ++_i254) + org.apache.thrift.protocol.TList _list262 = iprot.readListBegin(); + struct.rows = new java.util.ArrayList(_list262.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem263; + for (int _i264 = 0; _i264 < _list262.size; ++_i264) { - _elem253 = iprot.readBinary(); - struct.rows.add(_elem253); + _elem263 = iprot.readBinary(); + struct.rows.add(_elem263); } iprot.readListEnd(); } @@ -28801,13 +29747,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumns_ case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list255 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list255.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem256; - for (int _i257 = 0; _i257 < _list255.size; ++_i257) + org.apache.thrift.protocol.TList _list265 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list265.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem266; + for (int _i267 = 0; _i267 < _list265.size; ++_i267) { - _elem256 = iprot.readBinary(); - struct.columns.add(_elem256); + _elem266 = iprot.readBinary(); + struct.columns.add(_elem266); } iprot.readListEnd(); } @@ -28819,15 +29765,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumns_ case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map258 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map258.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key259; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val260; - for (int _i261 = 0; _i261 < _map258.size; ++_i261) + org.apache.thrift.protocol.TMap _map268 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map268.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key269; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val270; + for (int _i271 = 0; _i271 < _map268.size; ++_i271) { - _key259 = iprot.readBinary(); - _val260 = iprot.readBinary(); - struct.attributes.put(_key259, _val260); + _key269 = iprot.readBinary(); + _val270 = iprot.readBinary(); + struct.attributes.put(_key269, _val270); } iprot.readMapEnd(); } @@ -28860,9 +29806,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(ROWS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.rows.size())); - for (java.nio.ByteBuffer _iter262 : struct.rows) + for (java.nio.ByteBuffer _iter272 : struct.rows) { - oprot.writeBinary(_iter262); + oprot.writeBinary(_iter272); } oprot.writeListEnd(); } @@ -28872,9 +29818,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter263 : struct.columns) + for (java.nio.ByteBuffer _iter273 : struct.columns) { - oprot.writeBinary(_iter263); + oprot.writeBinary(_iter273); } oprot.writeListEnd(); } @@ -28884,10 +29830,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter264 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter274 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter264.getKey()); - oprot.writeBinary(_iter264.getValue()); + oprot.writeBinary(_iter274.getKey()); + oprot.writeBinary(_iter274.getValue()); } oprot.writeMapEnd(); } @@ -28930,28 +29876,28 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumns_ if (struct.isSetRows()) { { oprot.writeI32(struct.rows.size()); - for (java.nio.ByteBuffer _iter265 : struct.rows) + for (java.nio.ByteBuffer _iter275 : struct.rows) { - oprot.writeBinary(_iter265); + oprot.writeBinary(_iter275); } } } if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter266 : struct.columns) + for (java.nio.ByteBuffer _iter276 : struct.columns) { - oprot.writeBinary(_iter266); + oprot.writeBinary(_iter276); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter267 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter277 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter267.getKey()); - oprot.writeBinary(_iter267.getValue()); + oprot.writeBinary(_iter277.getKey()); + oprot.writeBinary(_iter277.getValue()); } } } @@ -28967,41 +29913,41 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumns_a } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list268 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.rows = new java.util.ArrayList(_list268.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem269; - for (int _i270 = 0; _i270 < _list268.size; ++_i270) + org.apache.thrift.protocol.TList _list278 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.rows = new java.util.ArrayList(_list278.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem279; + for (int _i280 = 0; _i280 < _list278.size; ++_i280) { - _elem269 = iprot.readBinary(); - struct.rows.add(_elem269); + _elem279 = iprot.readBinary(); + struct.rows.add(_elem279); } } struct.setRowsIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list271 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list271.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem272; - for (int _i273 = 0; _i273 < _list271.size; ++_i273) + org.apache.thrift.protocol.TList _list281 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list281.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem282; + for (int _i283 = 0; _i283 < _list281.size; ++_i283) { - _elem272 = iprot.readBinary(); - struct.columns.add(_elem272); + _elem282 = iprot.readBinary(); + struct.columns.add(_elem282); } } struct.setColumnsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map274 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map274.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key275; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val276; - for (int _i277 = 0; _i277 < _map274.size; ++_i277) + org.apache.thrift.protocol.TMap _map284 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map284.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key285; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val286; + for (int _i287 = 0; _i287 < _map284.size; ++_i287) { - _key275 = iprot.readBinary(); - _val276 = iprot.readBinary(); - struct.attributes.put(_key275, _val276); + _key285 = iprot.readBinary(); + _val286 = iprot.readBinary(); + struct.attributes.put(_key285, _val286); } } struct.setAttributesIsSet(true); @@ -29414,14 +30360,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumns_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list278 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list278.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem279; - for (int _i280 = 0; _i280 < _list278.size; ++_i280) + org.apache.thrift.protocol.TList _list288 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list288.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem289; + for (int _i290 = 0; _i290 < _list288.size; ++_i290) { - _elem279 = new TRowResult(); - _elem279.read(iprot); - struct.success.add(_elem279); + _elem289 = new TRowResult(); + _elem289.read(iprot); + struct.success.add(_elem289); } iprot.readListEnd(); } @@ -29458,9 +30404,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter281 : struct.success) + for (TRowResult _iter291 : struct.success) { - _iter281.write(oprot); + _iter291.write(oprot); } oprot.writeListEnd(); } @@ -29499,9 +30445,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumns_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter282 : struct.success) + for (TRowResult _iter292 : struct.success) { - _iter282.write(oprot); + _iter292.write(oprot); } } } @@ -29516,14 +30462,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumns_r java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list283 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list283.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem284; - for (int _i285 = 0; _i285 < _list283.size; ++_i285) + org.apache.thrift.protocol.TList _list293 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list293.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem294; + for (int _i295 = 0; _i295 < _list293.size; ++_i295) { - _elem284 = new TRowResult(); - _elem284.read(iprot); - struct.success.add(_elem284); + _elem294 = new TRowResult(); + _elem294.read(iprot); + struct.success.add(_elem294); } } struct.setSuccessIsSet(true); @@ -30196,13 +31142,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsTs_args stru case 2: // ROWS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list286 = iprot.readListBegin(); - struct.rows = new java.util.ArrayList(_list286.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem287; - for (int _i288 = 0; _i288 < _list286.size; ++_i288) + org.apache.thrift.protocol.TList _list296 = iprot.readListBegin(); + struct.rows = new java.util.ArrayList(_list296.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem297; + for (int _i298 = 0; _i298 < _list296.size; ++_i298) { - _elem287 = iprot.readBinary(); - struct.rows.add(_elem287); + _elem297 = iprot.readBinary(); + struct.rows.add(_elem297); } iprot.readListEnd(); } @@ -30222,15 +31168,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsTs_args stru case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map289 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map289.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key290; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val291; - for (int _i292 = 0; _i292 < _map289.size; ++_i292) + org.apache.thrift.protocol.TMap _map299 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map299.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key300; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val301; + for (int _i302 = 0; _i302 < _map299.size; ++_i302) { - _key290 = iprot.readBinary(); - _val291 = iprot.readBinary(); - struct.attributes.put(_key290, _val291); + _key300 = iprot.readBinary(); + _val301 = iprot.readBinary(); + struct.attributes.put(_key300, _val301); } iprot.readMapEnd(); } @@ -30263,9 +31209,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsTs_args str oprot.writeFieldBegin(ROWS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.rows.size())); - for (java.nio.ByteBuffer _iter293 : struct.rows) + for (java.nio.ByteBuffer _iter303 : struct.rows) { - oprot.writeBinary(_iter293); + oprot.writeBinary(_iter303); } oprot.writeListEnd(); } @@ -30278,10 +31224,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsTs_args str oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter294 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter304 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter294.getKey()); - oprot.writeBinary(_iter294.getValue()); + oprot.writeBinary(_iter304.getKey()); + oprot.writeBinary(_iter304.getValue()); } oprot.writeMapEnd(); } @@ -30324,9 +31270,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsTs_args stru if (struct.isSetRows()) { { oprot.writeI32(struct.rows.size()); - for (java.nio.ByteBuffer _iter295 : struct.rows) + for (java.nio.ByteBuffer _iter305 : struct.rows) { - oprot.writeBinary(_iter295); + oprot.writeBinary(_iter305); } } } @@ -30336,10 +31282,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsTs_args stru if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter296 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter306 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter296.getKey()); - oprot.writeBinary(_iter296.getValue()); + oprot.writeBinary(_iter306.getKey()); + oprot.writeBinary(_iter306.getValue()); } } } @@ -30355,13 +31301,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsTs_args struc } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list297 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.rows = new java.util.ArrayList(_list297.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem298; - for (int _i299 = 0; _i299 < _list297.size; ++_i299) + org.apache.thrift.protocol.TList _list307 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.rows = new java.util.ArrayList(_list307.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem308; + for (int _i309 = 0; _i309 < _list307.size; ++_i309) { - _elem298 = iprot.readBinary(); - struct.rows.add(_elem298); + _elem308 = iprot.readBinary(); + struct.rows.add(_elem308); } } struct.setRowsIsSet(true); @@ -30372,15 +31318,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsTs_args struc } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map300 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map300.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key301; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val302; - for (int _i303 = 0; _i303 < _map300.size; ++_i303) + org.apache.thrift.protocol.TMap _map310 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map310.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key311; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val312; + for (int _i313 = 0; _i313 < _map310.size; ++_i313) { - _key301 = iprot.readBinary(); - _val302 = iprot.readBinary(); - struct.attributes.put(_key301, _val302); + _key311 = iprot.readBinary(); + _val312 = iprot.readBinary(); + struct.attributes.put(_key311, _val312); } } struct.setAttributesIsSet(true); @@ -30793,14 +31739,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsTs_result st case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list304 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list304.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem305; - for (int _i306 = 0; _i306 < _list304.size; ++_i306) + org.apache.thrift.protocol.TList _list314 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list314.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem315; + for (int _i316 = 0; _i316 < _list314.size; ++_i316) { - _elem305 = new TRowResult(); - _elem305.read(iprot); - struct.success.add(_elem305); + _elem315 = new TRowResult(); + _elem315.read(iprot); + struct.success.add(_elem315); } iprot.readListEnd(); } @@ -30837,9 +31783,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsTs_result s oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter307 : struct.success) + for (TRowResult _iter317 : struct.success) { - _iter307.write(oprot); + _iter317.write(oprot); } oprot.writeListEnd(); } @@ -30878,9 +31824,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsTs_result st if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter308 : struct.success) + for (TRowResult _iter318 : struct.success) { - _iter308.write(oprot); + _iter318.write(oprot); } } } @@ -30895,14 +31841,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsTs_result str java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list309 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list309.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem310; - for (int _i311 = 0; _i311 < _list309.size; ++_i311) + org.apache.thrift.protocol.TList _list319 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list319.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem320; + for (int _i321 = 0; _i321 < _list319.size; ++_i321) { - _elem310 = new TRowResult(); - _elem310.read(iprot); - struct.success.add(_elem310); + _elem320 = new TRowResult(); + _elem320.read(iprot); + struct.success.add(_elem320); } } struct.setSuccessIsSet(true); @@ -31678,13 +32624,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumnsT case 2: // ROWS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list312 = iprot.readListBegin(); - struct.rows = new java.util.ArrayList(_list312.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem313; - for (int _i314 = 0; _i314 < _list312.size; ++_i314) + org.apache.thrift.protocol.TList _list322 = iprot.readListBegin(); + struct.rows = new java.util.ArrayList(_list322.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem323; + for (int _i324 = 0; _i324 < _list322.size; ++_i324) { - _elem313 = iprot.readBinary(); - struct.rows.add(_elem313); + _elem323 = iprot.readBinary(); + struct.rows.add(_elem323); } iprot.readListEnd(); } @@ -31696,13 +32642,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumnsT case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list315 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list315.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem316; - for (int _i317 = 0; _i317 < _list315.size; ++_i317) + org.apache.thrift.protocol.TList _list325 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list325.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem326; + for (int _i327 = 0; _i327 < _list325.size; ++_i327) { - _elem316 = iprot.readBinary(); - struct.columns.add(_elem316); + _elem326 = iprot.readBinary(); + struct.columns.add(_elem326); } iprot.readListEnd(); } @@ -31722,15 +32668,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumnsT case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map318 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map318.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key319; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val320; - for (int _i321 = 0; _i321 < _map318.size; ++_i321) + org.apache.thrift.protocol.TMap _map328 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map328.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key329; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val330; + for (int _i331 = 0; _i331 < _map328.size; ++_i331) { - _key319 = iprot.readBinary(); - _val320 = iprot.readBinary(); - struct.attributes.put(_key319, _val320); + _key329 = iprot.readBinary(); + _val330 = iprot.readBinary(); + struct.attributes.put(_key329, _val330); } iprot.readMapEnd(); } @@ -31763,9 +32709,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(ROWS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.rows.size())); - for (java.nio.ByteBuffer _iter322 : struct.rows) + for (java.nio.ByteBuffer _iter332 : struct.rows) { - oprot.writeBinary(_iter322); + oprot.writeBinary(_iter332); } oprot.writeListEnd(); } @@ -31775,9 +32721,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter323 : struct.columns) + for (java.nio.ByteBuffer _iter333 : struct.columns) { - oprot.writeBinary(_iter323); + oprot.writeBinary(_iter333); } oprot.writeListEnd(); } @@ -31790,10 +32736,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter324 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter334 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter324.getKey()); - oprot.writeBinary(_iter324.getValue()); + oprot.writeBinary(_iter334.getKey()); + oprot.writeBinary(_iter334.getValue()); } oprot.writeMapEnd(); } @@ -31839,18 +32785,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsT if (struct.isSetRows()) { { oprot.writeI32(struct.rows.size()); - for (java.nio.ByteBuffer _iter325 : struct.rows) + for (java.nio.ByteBuffer _iter335 : struct.rows) { - oprot.writeBinary(_iter325); + oprot.writeBinary(_iter335); } } } if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter326 : struct.columns) + for (java.nio.ByteBuffer _iter336 : struct.columns) { - oprot.writeBinary(_iter326); + oprot.writeBinary(_iter336); } } } @@ -31860,10 +32806,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsT if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter327 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter337 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter327.getKey()); - oprot.writeBinary(_iter327.getValue()); + oprot.writeBinary(_iter337.getKey()); + oprot.writeBinary(_iter337.getValue()); } } } @@ -31879,26 +32825,26 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsTs } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list328 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.rows = new java.util.ArrayList(_list328.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem329; - for (int _i330 = 0; _i330 < _list328.size; ++_i330) + org.apache.thrift.protocol.TList _list338 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.rows = new java.util.ArrayList(_list338.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem339; + for (int _i340 = 0; _i340 < _list338.size; ++_i340) { - _elem329 = iprot.readBinary(); - struct.rows.add(_elem329); + _elem339 = iprot.readBinary(); + struct.rows.add(_elem339); } } struct.setRowsIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list331 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list331.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem332; - for (int _i333 = 0; _i333 < _list331.size; ++_i333) + org.apache.thrift.protocol.TList _list341 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list341.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem342; + for (int _i343 = 0; _i343 < _list341.size; ++_i343) { - _elem332 = iprot.readBinary(); - struct.columns.add(_elem332); + _elem342 = iprot.readBinary(); + struct.columns.add(_elem342); } } struct.setColumnsIsSet(true); @@ -31909,15 +32855,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsTs } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map334 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map334.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key335; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val336; - for (int _i337 = 0; _i337 < _map334.size; ++_i337) + org.apache.thrift.protocol.TMap _map344 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map344.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key345; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val346; + for (int _i347 = 0; _i347 < _map344.size; ++_i347) { - _key335 = iprot.readBinary(); - _val336 = iprot.readBinary(); - struct.attributes.put(_key335, _val336); + _key345 = iprot.readBinary(); + _val346 = iprot.readBinary(); + struct.attributes.put(_key345, _val346); } } struct.setAttributesIsSet(true); @@ -32330,14 +33276,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, getRowsWithColumnsT case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list338 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list338.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem339; - for (int _i340 = 0; _i340 < _list338.size; ++_i340) + org.apache.thrift.protocol.TList _list348 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list348.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem349; + for (int _i350 = 0; _i350 < _list348.size; ++_i350) { - _elem339 = new TRowResult(); - _elem339.read(iprot); - struct.success.add(_elem339); + _elem349 = new TRowResult(); + _elem349.read(iprot); + struct.success.add(_elem349); } iprot.readListEnd(); } @@ -32374,9 +33320,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, getRowsWithColumns oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter341 : struct.success) + for (TRowResult _iter351 : struct.success) { - _iter341.write(oprot); + _iter351.write(oprot); } oprot.writeListEnd(); } @@ -32415,9 +33361,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsT if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter342 : struct.success) + for (TRowResult _iter352 : struct.success) { - _iter342.write(oprot); + _iter352.write(oprot); } } } @@ -32432,14 +33378,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, getRowsWithColumnsTs java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list343 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list343.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem344; - for (int _i345 = 0; _i345 < _list343.size; ++_i345) + org.apache.thrift.protocol.TList _list353 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list353.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem354; + for (int _i355 = 0; _i355 < _list353.size; ++_i355) { - _elem344 = new TRowResult(); - _elem344.read(iprot); - struct.success.add(_elem344); + _elem354 = new TRowResult(); + _elem354.read(iprot); + struct.success.add(_elem354); } } struct.setSuccessIsSet(true); @@ -33136,14 +34082,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRow_args stru case 3: // MUTATIONS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list346 = iprot.readListBegin(); - struct.mutations = new java.util.ArrayList(_list346.size); - @org.apache.thrift.annotation.Nullable Mutation _elem347; - for (int _i348 = 0; _i348 < _list346.size; ++_i348) + org.apache.thrift.protocol.TList _list356 = iprot.readListBegin(); + struct.mutations = new java.util.ArrayList(_list356.size); + @org.apache.thrift.annotation.Nullable Mutation _elem357; + for (int _i358 = 0; _i358 < _list356.size; ++_i358) { - _elem347 = new Mutation(); - _elem347.read(iprot); - struct.mutations.add(_elem347); + _elem357 = new Mutation(); + _elem357.read(iprot); + struct.mutations.add(_elem357); } iprot.readListEnd(); } @@ -33155,15 +34101,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRow_args stru case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map349 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map349.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key350; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val351; - for (int _i352 = 0; _i352 < _map349.size; ++_i352) + org.apache.thrift.protocol.TMap _map359 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map359.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key360; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val361; + for (int _i362 = 0; _i362 < _map359.size; ++_i362) { - _key350 = iprot.readBinary(); - _val351 = iprot.readBinary(); - struct.attributes.put(_key350, _val351); + _key360 = iprot.readBinary(); + _val361 = iprot.readBinary(); + struct.attributes.put(_key360, _val361); } iprot.readMapEnd(); } @@ -33201,9 +34147,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRow_args str oprot.writeFieldBegin(MUTATIONS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.mutations.size())); - for (Mutation _iter353 : struct.mutations) + for (Mutation _iter363 : struct.mutations) { - _iter353.write(oprot); + _iter363.write(oprot); } oprot.writeListEnd(); } @@ -33213,10 +34159,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRow_args str oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter354 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter364 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter354.getKey()); - oprot.writeBinary(_iter354.getValue()); + oprot.writeBinary(_iter364.getKey()); + oprot.writeBinary(_iter364.getValue()); } oprot.writeMapEnd(); } @@ -33262,19 +34208,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRow_args stru if (struct.isSetMutations()) { { oprot.writeI32(struct.mutations.size()); - for (Mutation _iter355 : struct.mutations) + for (Mutation _iter365 : struct.mutations) { - _iter355.write(oprot); + _iter365.write(oprot); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter356 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter366 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter356.getKey()); - oprot.writeBinary(_iter356.getValue()); + oprot.writeBinary(_iter366.getKey()); + oprot.writeBinary(_iter366.getValue()); } } } @@ -33294,29 +34240,29 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRow_args struc } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list357 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.mutations = new java.util.ArrayList(_list357.size); - @org.apache.thrift.annotation.Nullable Mutation _elem358; - for (int _i359 = 0; _i359 < _list357.size; ++_i359) + org.apache.thrift.protocol.TList _list367 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.mutations = new java.util.ArrayList(_list367.size); + @org.apache.thrift.annotation.Nullable Mutation _elem368; + for (int _i369 = 0; _i369 < _list367.size; ++_i369) { - _elem358 = new Mutation(); - _elem358.read(iprot); - struct.mutations.add(_elem358); + _elem368 = new Mutation(); + _elem368.read(iprot); + struct.mutations.add(_elem368); } } struct.setMutationsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map360 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map360.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key361; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val362; - for (int _i363 = 0; _i363 < _map360.size; ++_i363) + org.apache.thrift.protocol.TMap _map370 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map370.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key371; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val372; + for (int _i373 = 0; _i373 < _map370.size; ++_i373) { - _key361 = iprot.readBinary(); - _val362 = iprot.readBinary(); - struct.attributes.put(_key361, _val362); + _key371 = iprot.readBinary(); + _val372 = iprot.readBinary(); + struct.attributes.put(_key371, _val372); } } struct.setAttributesIsSet(true); @@ -34573,14 +35519,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRowTs_args st case 3: // MUTATIONS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list364 = iprot.readListBegin(); - struct.mutations = new java.util.ArrayList(_list364.size); - @org.apache.thrift.annotation.Nullable Mutation _elem365; - for (int _i366 = 0; _i366 < _list364.size; ++_i366) + org.apache.thrift.protocol.TList _list374 = iprot.readListBegin(); + struct.mutations = new java.util.ArrayList(_list374.size); + @org.apache.thrift.annotation.Nullable Mutation _elem375; + for (int _i376 = 0; _i376 < _list374.size; ++_i376) { - _elem365 = new Mutation(); - _elem365.read(iprot); - struct.mutations.add(_elem365); + _elem375 = new Mutation(); + _elem375.read(iprot); + struct.mutations.add(_elem375); } iprot.readListEnd(); } @@ -34600,15 +35546,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRowTs_args st case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map367 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map367.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key368; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val369; - for (int _i370 = 0; _i370 < _map367.size; ++_i370) + org.apache.thrift.protocol.TMap _map377 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map377.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key378; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val379; + for (int _i380 = 0; _i380 < _map377.size; ++_i380) { - _key368 = iprot.readBinary(); - _val369 = iprot.readBinary(); - struct.attributes.put(_key368, _val369); + _key378 = iprot.readBinary(); + _val379 = iprot.readBinary(); + struct.attributes.put(_key378, _val379); } iprot.readMapEnd(); } @@ -34646,9 +35592,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRowTs_args s oprot.writeFieldBegin(MUTATIONS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.mutations.size())); - for (Mutation _iter371 : struct.mutations) + for (Mutation _iter381 : struct.mutations) { - _iter371.write(oprot); + _iter381.write(oprot); } oprot.writeListEnd(); } @@ -34661,10 +35607,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRowTs_args s oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter372 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter382 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter372.getKey()); - oprot.writeBinary(_iter372.getValue()); + oprot.writeBinary(_iter382.getKey()); + oprot.writeBinary(_iter382.getValue()); } oprot.writeMapEnd(); } @@ -34713,9 +35659,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRowTs_args st if (struct.isSetMutations()) { { oprot.writeI32(struct.mutations.size()); - for (Mutation _iter373 : struct.mutations) + for (Mutation _iter383 : struct.mutations) { - _iter373.write(oprot); + _iter383.write(oprot); } } } @@ -34725,10 +35671,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRowTs_args st if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter374 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter384 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter374.getKey()); - oprot.writeBinary(_iter374.getValue()); + oprot.writeBinary(_iter384.getKey()); + oprot.writeBinary(_iter384.getValue()); } } } @@ -34748,14 +35694,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRowTs_args str } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list375 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.mutations = new java.util.ArrayList(_list375.size); - @org.apache.thrift.annotation.Nullable Mutation _elem376; - for (int _i377 = 0; _i377 < _list375.size; ++_i377) + org.apache.thrift.protocol.TList _list385 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.mutations = new java.util.ArrayList(_list385.size); + @org.apache.thrift.annotation.Nullable Mutation _elem386; + for (int _i387 = 0; _i387 < _list385.size; ++_i387) { - _elem376 = new Mutation(); - _elem376.read(iprot); - struct.mutations.add(_elem376); + _elem386 = new Mutation(); + _elem386.read(iprot); + struct.mutations.add(_elem386); } } struct.setMutationsIsSet(true); @@ -34766,15 +35712,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRowTs_args str } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map378 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map378.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key379; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val380; - for (int _i381 = 0; _i381 < _map378.size; ++_i381) + org.apache.thrift.protocol.TMap _map388 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map388.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key389; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val390; + for (int _i391 = 0; _i391 < _map388.size; ++_i391) { - _key379 = iprot.readBinary(); - _val380 = iprot.readBinary(); - struct.attributes.put(_key379, _val380); + _key389 = iprot.readBinary(); + _val390 = iprot.readBinary(); + struct.attributes.put(_key389, _val390); } } struct.setAttributesIsSet(true); @@ -35825,14 +36771,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRows_args str case 2: // ROW_BATCHES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list382 = iprot.readListBegin(); - struct.rowBatches = new java.util.ArrayList(_list382.size); - @org.apache.thrift.annotation.Nullable BatchMutation _elem383; - for (int _i384 = 0; _i384 < _list382.size; ++_i384) + org.apache.thrift.protocol.TList _list392 = iprot.readListBegin(); + struct.rowBatches = new java.util.ArrayList(_list392.size); + @org.apache.thrift.annotation.Nullable BatchMutation _elem393; + for (int _i394 = 0; _i394 < _list392.size; ++_i394) { - _elem383 = new BatchMutation(); - _elem383.read(iprot); - struct.rowBatches.add(_elem383); + _elem393 = new BatchMutation(); + _elem393.read(iprot); + struct.rowBatches.add(_elem393); } iprot.readListEnd(); } @@ -35844,15 +36790,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRows_args str case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map385 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map385.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key386; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val387; - for (int _i388 = 0; _i388 < _map385.size; ++_i388) + org.apache.thrift.protocol.TMap _map395 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map395.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key396; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val397; + for (int _i398 = 0; _i398 < _map395.size; ++_i398) { - _key386 = iprot.readBinary(); - _val387 = iprot.readBinary(); - struct.attributes.put(_key386, _val387); + _key396 = iprot.readBinary(); + _val397 = iprot.readBinary(); + struct.attributes.put(_key396, _val397); } iprot.readMapEnd(); } @@ -35885,9 +36831,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRows_args st oprot.writeFieldBegin(ROW_BATCHES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.rowBatches.size())); - for (BatchMutation _iter389 : struct.rowBatches) + for (BatchMutation _iter399 : struct.rowBatches) { - _iter389.write(oprot); + _iter399.write(oprot); } oprot.writeListEnd(); } @@ -35897,10 +36843,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRows_args st oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter390 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter400 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter390.getKey()); - oprot.writeBinary(_iter390.getValue()); + oprot.writeBinary(_iter400.getKey()); + oprot.writeBinary(_iter400.getValue()); } oprot.writeMapEnd(); } @@ -35940,19 +36886,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRows_args str if (struct.isSetRowBatches()) { { oprot.writeI32(struct.rowBatches.size()); - for (BatchMutation _iter391 : struct.rowBatches) + for (BatchMutation _iter401 : struct.rowBatches) { - _iter391.write(oprot); + _iter401.write(oprot); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter392 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter402 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter392.getKey()); - oprot.writeBinary(_iter392.getValue()); + oprot.writeBinary(_iter402.getKey()); + oprot.writeBinary(_iter402.getValue()); } } } @@ -35968,29 +36914,29 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRows_args stru } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list393 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.rowBatches = new java.util.ArrayList(_list393.size); - @org.apache.thrift.annotation.Nullable BatchMutation _elem394; - for (int _i395 = 0; _i395 < _list393.size; ++_i395) + org.apache.thrift.protocol.TList _list403 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.rowBatches = new java.util.ArrayList(_list403.size); + @org.apache.thrift.annotation.Nullable BatchMutation _elem404; + for (int _i405 = 0; _i405 < _list403.size; ++_i405) { - _elem394 = new BatchMutation(); - _elem394.read(iprot); - struct.rowBatches.add(_elem394); + _elem404 = new BatchMutation(); + _elem404.read(iprot); + struct.rowBatches.add(_elem404); } } struct.setRowBatchesIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map396 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map396.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key397; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val398; - for (int _i399 = 0; _i399 < _map396.size; ++_i399) + org.apache.thrift.protocol.TMap _map406 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map406.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key407; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val408; + for (int _i409 = 0; _i409 < _map406.size; ++_i409) { - _key397 = iprot.readBinary(); - _val398 = iprot.readBinary(); - struct.attributes.put(_key397, _val398); + _key407 = iprot.readBinary(); + _val408 = iprot.readBinary(); + struct.attributes.put(_key407, _val408); } } struct.setAttributesIsSet(true); @@ -37132,14 +38078,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRowsTs_args s case 2: // ROW_BATCHES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list400 = iprot.readListBegin(); - struct.rowBatches = new java.util.ArrayList(_list400.size); - @org.apache.thrift.annotation.Nullable BatchMutation _elem401; - for (int _i402 = 0; _i402 < _list400.size; ++_i402) + org.apache.thrift.protocol.TList _list410 = iprot.readListBegin(); + struct.rowBatches = new java.util.ArrayList(_list410.size); + @org.apache.thrift.annotation.Nullable BatchMutation _elem411; + for (int _i412 = 0; _i412 < _list410.size; ++_i412) { - _elem401 = new BatchMutation(); - _elem401.read(iprot); - struct.rowBatches.add(_elem401); + _elem411 = new BatchMutation(); + _elem411.read(iprot); + struct.rowBatches.add(_elem411); } iprot.readListEnd(); } @@ -37159,15 +38105,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, mutateRowsTs_args s case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map403 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map403.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key404; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val405; - for (int _i406 = 0; _i406 < _map403.size; ++_i406) + org.apache.thrift.protocol.TMap _map413 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map413.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key414; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val415; + for (int _i416 = 0; _i416 < _map413.size; ++_i416) { - _key404 = iprot.readBinary(); - _val405 = iprot.readBinary(); - struct.attributes.put(_key404, _val405); + _key414 = iprot.readBinary(); + _val415 = iprot.readBinary(); + struct.attributes.put(_key414, _val415); } iprot.readMapEnd(); } @@ -37200,9 +38146,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRowsTs_args oprot.writeFieldBegin(ROW_BATCHES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.rowBatches.size())); - for (BatchMutation _iter407 : struct.rowBatches) + for (BatchMutation _iter417 : struct.rowBatches) { - _iter407.write(oprot); + _iter417.write(oprot); } oprot.writeListEnd(); } @@ -37215,10 +38161,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, mutateRowsTs_args oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter408 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter418 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter408.getKey()); - oprot.writeBinary(_iter408.getValue()); + oprot.writeBinary(_iter418.getKey()); + oprot.writeBinary(_iter418.getValue()); } oprot.writeMapEnd(); } @@ -37261,9 +38207,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRowsTs_args s if (struct.isSetRowBatches()) { { oprot.writeI32(struct.rowBatches.size()); - for (BatchMutation _iter409 : struct.rowBatches) + for (BatchMutation _iter419 : struct.rowBatches) { - _iter409.write(oprot); + _iter419.write(oprot); } } } @@ -37273,10 +38219,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, mutateRowsTs_args s if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter410 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter420 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter410.getKey()); - oprot.writeBinary(_iter410.getValue()); + oprot.writeBinary(_iter420.getKey()); + oprot.writeBinary(_iter420.getValue()); } } } @@ -37292,14 +38238,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRowsTs_args st } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list411 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.rowBatches = new java.util.ArrayList(_list411.size); - @org.apache.thrift.annotation.Nullable BatchMutation _elem412; - for (int _i413 = 0; _i413 < _list411.size; ++_i413) + org.apache.thrift.protocol.TList _list421 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.rowBatches = new java.util.ArrayList(_list421.size); + @org.apache.thrift.annotation.Nullable BatchMutation _elem422; + for (int _i423 = 0; _i423 < _list421.size; ++_i423) { - _elem412 = new BatchMutation(); - _elem412.read(iprot); - struct.rowBatches.add(_elem412); + _elem422 = new BatchMutation(); + _elem422.read(iprot); + struct.rowBatches.add(_elem422); } } struct.setRowBatchesIsSet(true); @@ -37310,15 +38256,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, mutateRowsTs_args st } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map414 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map414.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key415; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val416; - for (int _i417 = 0; _i417 < _map414.size; ++_i417) + org.apache.thrift.protocol.TMap _map424 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map424.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key425; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val426; + for (int _i427 = 0; _i427 < _map424.size; ++_i427) { - _key415 = iprot.readBinary(); - _val416 = iprot.readBinary(); - struct.attributes.put(_key415, _val416); + _key425 = iprot.readBinary(); + _val426 = iprot.readBinary(); + struct.attributes.put(_key425, _val426); } } struct.setAttributesIsSet(true); @@ -39822,15 +40768,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, deleteAll_args stru case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map418 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map418.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key419; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val420; - for (int _i421 = 0; _i421 < _map418.size; ++_i421) + org.apache.thrift.protocol.TMap _map428 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map428.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key429; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val430; + for (int _i431 = 0; _i431 < _map428.size; ++_i431) { - _key419 = iprot.readBinary(); - _val420 = iprot.readBinary(); - struct.attributes.put(_key419, _val420); + _key429 = iprot.readBinary(); + _val430 = iprot.readBinary(); + struct.attributes.put(_key429, _val430); } iprot.readMapEnd(); } @@ -39873,10 +40819,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, deleteAll_args str oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter422 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter432 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter422.getKey()); - oprot.writeBinary(_iter422.getValue()); + oprot.writeBinary(_iter432.getKey()); + oprot.writeBinary(_iter432.getValue()); } oprot.writeMapEnd(); } @@ -39925,10 +40871,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, deleteAll_args stru if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter423 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter433 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter423.getKey()); - oprot.writeBinary(_iter423.getValue()); + oprot.writeBinary(_iter433.getKey()); + oprot.writeBinary(_iter433.getValue()); } } } @@ -39952,15 +40898,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, deleteAll_args struc } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map424 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map424.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key425; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val426; - for (int _i427 = 0; _i427 < _map424.size; ++_i427) + org.apache.thrift.protocol.TMap _map434 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map434.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key435; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val436; + for (int _i437 = 0; _i437 < _map434.size; ++_i437) { - _key425 = iprot.readBinary(); - _val426 = iprot.readBinary(); - struct.attributes.put(_key425, _val426); + _key435 = iprot.readBinary(); + _val436 = iprot.readBinary(); + struct.attributes.put(_key435, _val436); } } struct.setAttributesIsSet(true); @@ -41118,15 +42064,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, deleteAllTs_args st case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map428 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map428.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key429; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val430; - for (int _i431 = 0; _i431 < _map428.size; ++_i431) + org.apache.thrift.protocol.TMap _map438 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map438.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key439; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val440; + for (int _i441 = 0; _i441 < _map438.size; ++_i441) { - _key429 = iprot.readBinary(); - _val430 = iprot.readBinary(); - struct.attributes.put(_key429, _val430); + _key439 = iprot.readBinary(); + _val440 = iprot.readBinary(); + struct.attributes.put(_key439, _val440); } iprot.readMapEnd(); } @@ -41172,10 +42118,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, deleteAllTs_args s oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter432 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter442 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter432.getKey()); - oprot.writeBinary(_iter432.getValue()); + oprot.writeBinary(_iter442.getKey()); + oprot.writeBinary(_iter442.getValue()); } oprot.writeMapEnd(); } @@ -41230,10 +42176,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, deleteAllTs_args st if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter433 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter443 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter433.getKey()); - oprot.writeBinary(_iter433.getValue()); + oprot.writeBinary(_iter443.getKey()); + oprot.writeBinary(_iter443.getValue()); } } } @@ -41261,15 +42207,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, deleteAllTs_args str } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map434 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map434.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key435; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val436; - for (int _i437 = 0; _i437 < _map434.size; ++_i437) + org.apache.thrift.protocol.TMap _map444 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map444.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key445; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val446; + for (int _i447 = 0; _i447 < _map444.size; ++_i447) { - _key435 = iprot.readBinary(); - _val436 = iprot.readBinary(); - struct.attributes.put(_key435, _val436); + _key445 = iprot.readBinary(); + _val446 = iprot.readBinary(); + struct.attributes.put(_key445, _val446); } } struct.setAttributesIsSet(true); @@ -42213,15 +43159,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, deleteAllRow_args s case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map438 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map438.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key439; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val440; - for (int _i441 = 0; _i441 < _map438.size; ++_i441) + org.apache.thrift.protocol.TMap _map448 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map448.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key449; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val450; + for (int _i451 = 0; _i451 < _map448.size; ++_i451) { - _key439 = iprot.readBinary(); - _val440 = iprot.readBinary(); - struct.attributes.put(_key439, _val440); + _key449 = iprot.readBinary(); + _val450 = iprot.readBinary(); + struct.attributes.put(_key449, _val450); } iprot.readMapEnd(); } @@ -42259,10 +43205,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, deleteAllRow_args oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter442 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter452 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter442.getKey()); - oprot.writeBinary(_iter442.getValue()); + oprot.writeBinary(_iter452.getKey()); + oprot.writeBinary(_iter452.getValue()); } oprot.writeMapEnd(); } @@ -42305,10 +43251,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, deleteAllRow_args s if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter443 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter453 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter443.getKey()); - oprot.writeBinary(_iter443.getValue()); + oprot.writeBinary(_iter453.getKey()); + oprot.writeBinary(_iter453.getValue()); } } } @@ -42328,15 +43274,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, deleteAllRow_args st } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map444 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map444.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key445; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val446; - for (int _i447 = 0; _i447 < _map444.size; ++_i447) + org.apache.thrift.protocol.TMap _map454 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map454.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key455; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val456; + for (int _i457 = 0; _i457 < _map454.size; ++_i457) { - _key445 = iprot.readBinary(); - _val446 = iprot.readBinary(); - struct.attributes.put(_key445, _val446); + _key455 = iprot.readBinary(); + _val456 = iprot.readBinary(); + struct.attributes.put(_key455, _val456); } } struct.setAttributesIsSet(true); @@ -43795,14 +44741,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, incrementRows_args case 1: // INCREMENTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list448 = iprot.readListBegin(); - struct.increments = new java.util.ArrayList(_list448.size); - @org.apache.thrift.annotation.Nullable TIncrement _elem449; - for (int _i450 = 0; _i450 < _list448.size; ++_i450) + org.apache.thrift.protocol.TList _list458 = iprot.readListBegin(); + struct.increments = new java.util.ArrayList(_list458.size); + @org.apache.thrift.annotation.Nullable TIncrement _elem459; + for (int _i460 = 0; _i460 < _list458.size; ++_i460) { - _elem449 = new TIncrement(); - _elem449.read(iprot); - struct.increments.add(_elem449); + _elem459 = new TIncrement(); + _elem459.read(iprot); + struct.increments.add(_elem459); } iprot.readListEnd(); } @@ -43830,9 +44776,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, incrementRows_args oprot.writeFieldBegin(INCREMENTS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.increments.size())); - for (TIncrement _iter451 : struct.increments) + for (TIncrement _iter461 : struct.increments) { - _iter451.write(oprot); + _iter461.write(oprot); } oprot.writeListEnd(); } @@ -43863,9 +44809,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, incrementRows_args if (struct.isSetIncrements()) { { oprot.writeI32(struct.increments.size()); - for (TIncrement _iter452 : struct.increments) + for (TIncrement _iter462 : struct.increments) { - _iter452.write(oprot); + _iter462.write(oprot); } } } @@ -43877,14 +44823,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, incrementRows_args s java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list453 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.increments = new java.util.ArrayList(_list453.size); - @org.apache.thrift.annotation.Nullable TIncrement _elem454; - for (int _i455 = 0; _i455 < _list453.size; ++_i455) + org.apache.thrift.protocol.TList _list463 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.increments = new java.util.ArrayList(_list463.size); + @org.apache.thrift.annotation.Nullable TIncrement _elem464; + for (int _i465 = 0; _i465 < _list463.size; ++_i465) { - _elem454 = new TIncrement(); - _elem454.read(iprot); - struct.increments.add(_elem454); + _elem464 = new TIncrement(); + _elem464.read(iprot); + struct.increments.add(_elem464); } } struct.setIncrementsIsSet(true); @@ -44927,15 +45873,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, deleteAllRowTs_args case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map456 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map456.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key457; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val458; - for (int _i459 = 0; _i459 < _map456.size; ++_i459) + org.apache.thrift.protocol.TMap _map466 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map466.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key467; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val468; + for (int _i469 = 0; _i469 < _map466.size; ++_i469) { - _key457 = iprot.readBinary(); - _val458 = iprot.readBinary(); - struct.attributes.put(_key457, _val458); + _key467 = iprot.readBinary(); + _val468 = iprot.readBinary(); + struct.attributes.put(_key467, _val468); } iprot.readMapEnd(); } @@ -44976,10 +45922,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, deleteAllRowTs_arg oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter460 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter470 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter460.getKey()); - oprot.writeBinary(_iter460.getValue()); + oprot.writeBinary(_iter470.getKey()); + oprot.writeBinary(_iter470.getValue()); } oprot.writeMapEnd(); } @@ -45028,10 +45974,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, deleteAllRowTs_args if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter461 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter471 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter461.getKey()); - oprot.writeBinary(_iter461.getValue()); + oprot.writeBinary(_iter471.getKey()); + oprot.writeBinary(_iter471.getValue()); } } } @@ -45055,15 +46001,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, deleteAllRowTs_args } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map462 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map462.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key463; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val464; - for (int _i465 = 0; _i465 < _map462.size; ++_i465) + org.apache.thrift.protocol.TMap _map472 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map472.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key473; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val474; + for (int _i475 = 0; _i475 < _map472.size; ++_i475) { - _key463 = iprot.readBinary(); - _val464 = iprot.readBinary(); - struct.attributes.put(_key463, _val464); + _key473 = iprot.readBinary(); + _val474 = iprot.readBinary(); + struct.attributes.put(_key473, _val474); } } struct.setAttributesIsSet(true); @@ -45998,15 +46944,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithScan case 3: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map466 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map466.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key467; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val468; - for (int _i469 = 0; _i469 < _map466.size; ++_i469) + org.apache.thrift.protocol.TMap _map476 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map476.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key477; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val478; + for (int _i479 = 0; _i479 < _map476.size; ++_i479) { - _key467 = iprot.readBinary(); - _val468 = iprot.readBinary(); - struct.attributes.put(_key467, _val468); + _key477 = iprot.readBinary(); + _val478 = iprot.readBinary(); + struct.attributes.put(_key477, _val478); } iprot.readMapEnd(); } @@ -46044,10 +46990,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSca oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter470 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter480 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter470.getKey()); - oprot.writeBinary(_iter470.getValue()); + oprot.writeBinary(_iter480.getKey()); + oprot.writeBinary(_iter480.getValue()); } oprot.writeMapEnd(); } @@ -46090,10 +47036,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithScan if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter471 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter481 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter471.getKey()); - oprot.writeBinary(_iter471.getValue()); + oprot.writeBinary(_iter481.getKey()); + oprot.writeBinary(_iter481.getValue()); } } } @@ -46114,15 +47060,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithScan_ } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map472 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map472.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key473; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val474; - for (int _i475 = 0; _i475 < _map472.size; ++_i475) + org.apache.thrift.protocol.TMap _map482 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map482.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key483; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val484; + for (int _i485 = 0; _i485 < _map482.size; ++_i485) { - _key473 = iprot.readBinary(); - _val474 = iprot.readBinary(); - struct.attributes.put(_key473, _val474); + _key483 = iprot.readBinary(); + _val484 = iprot.readBinary(); + struct.attributes.put(_key483, _val484); } } struct.setAttributesIsSet(true); @@ -47295,13 +48241,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpen_args st case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list476 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list476.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem477; - for (int _i478 = 0; _i478 < _list476.size; ++_i478) + org.apache.thrift.protocol.TList _list486 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list486.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem487; + for (int _i488 = 0; _i488 < _list486.size; ++_i488) { - _elem477 = iprot.readBinary(); - struct.columns.add(_elem477); + _elem487 = iprot.readBinary(); + struct.columns.add(_elem487); } iprot.readListEnd(); } @@ -47313,15 +48259,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpen_args st case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map479 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map479.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key480; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val481; - for (int _i482 = 0; _i482 < _map479.size; ++_i482) + org.apache.thrift.protocol.TMap _map489 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map489.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key490; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val491; + for (int _i492 = 0; _i492 < _map489.size; ++_i492) { - _key480 = iprot.readBinary(); - _val481 = iprot.readBinary(); - struct.attributes.put(_key480, _val481); + _key490 = iprot.readBinary(); + _val491 = iprot.readBinary(); + struct.attributes.put(_key490, _val491); } iprot.readMapEnd(); } @@ -47359,9 +48305,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpen_args s oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter483 : struct.columns) + for (java.nio.ByteBuffer _iter493 : struct.columns) { - oprot.writeBinary(_iter483); + oprot.writeBinary(_iter493); } oprot.writeListEnd(); } @@ -47371,10 +48317,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpen_args s oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter484 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter494 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter484.getKey()); - oprot.writeBinary(_iter484.getValue()); + oprot.writeBinary(_iter494.getKey()); + oprot.writeBinary(_iter494.getValue()); } oprot.writeMapEnd(); } @@ -47420,19 +48366,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpen_args st if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter485 : struct.columns) + for (java.nio.ByteBuffer _iter495 : struct.columns) { - oprot.writeBinary(_iter485); + oprot.writeBinary(_iter495); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter486 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter496 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter486.getKey()); - oprot.writeBinary(_iter486.getValue()); + oprot.writeBinary(_iter496.getKey()); + oprot.writeBinary(_iter496.getValue()); } } } @@ -47452,28 +48398,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpen_args str } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list487 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list487.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem488; - for (int _i489 = 0; _i489 < _list487.size; ++_i489) + org.apache.thrift.protocol.TList _list497 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list497.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem498; + for (int _i499 = 0; _i499 < _list497.size; ++_i499) { - _elem488 = iprot.readBinary(); - struct.columns.add(_elem488); + _elem498 = iprot.readBinary(); + struct.columns.add(_elem498); } } struct.setColumnsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map490 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map490.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key491; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val492; - for (int _i493 = 0; _i493 < _map490.size; ++_i493) + org.apache.thrift.protocol.TMap _map500 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map500.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key501; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val502; + for (int _i503 = 0; _i503 < _map500.size; ++_i503) { - _key491 = iprot.readBinary(); - _val492 = iprot.readBinary(); - struct.attributes.put(_key491, _val492); + _key501 = iprot.readBinary(); + _val502 = iprot.readBinary(); + struct.attributes.put(_key501, _val502); } } struct.setAttributesIsSet(true); @@ -48765,13 +49711,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithStop case 4: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list494 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list494.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem495; - for (int _i496 = 0; _i496 < _list494.size; ++_i496) + org.apache.thrift.protocol.TList _list504 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list504.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem505; + for (int _i506 = 0; _i506 < _list504.size; ++_i506) { - _elem495 = iprot.readBinary(); - struct.columns.add(_elem495); + _elem505 = iprot.readBinary(); + struct.columns.add(_elem505); } iprot.readListEnd(); } @@ -48783,15 +49729,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithStop case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map497 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map497.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key498; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val499; - for (int _i500 = 0; _i500 < _map497.size; ++_i500) + org.apache.thrift.protocol.TMap _map507 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map507.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key508; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val509; + for (int _i510 = 0; _i510 < _map507.size; ++_i510) { - _key498 = iprot.readBinary(); - _val499 = iprot.readBinary(); - struct.attributes.put(_key498, _val499); + _key508 = iprot.readBinary(); + _val509 = iprot.readBinary(); + struct.attributes.put(_key508, _val509); } iprot.readMapEnd(); } @@ -48834,9 +49780,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSto oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter501 : struct.columns) + for (java.nio.ByteBuffer _iter511 : struct.columns) { - oprot.writeBinary(_iter501); + oprot.writeBinary(_iter511); } oprot.writeListEnd(); } @@ -48846,10 +49792,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSto oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter502 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter512 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter502.getKey()); - oprot.writeBinary(_iter502.getValue()); + oprot.writeBinary(_iter512.getKey()); + oprot.writeBinary(_iter512.getValue()); } oprot.writeMapEnd(); } @@ -48901,19 +49847,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStop if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter503 : struct.columns) + for (java.nio.ByteBuffer _iter513 : struct.columns) { - oprot.writeBinary(_iter503); + oprot.writeBinary(_iter513); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter504 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter514 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter504.getKey()); - oprot.writeBinary(_iter504.getValue()); + oprot.writeBinary(_iter514.getKey()); + oprot.writeBinary(_iter514.getValue()); } } } @@ -48937,28 +49883,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStop_ } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list505 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list505.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem506; - for (int _i507 = 0; _i507 < _list505.size; ++_i507) + org.apache.thrift.protocol.TList _list515 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list515.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem516; + for (int _i517 = 0; _i517 < _list515.size; ++_i517) { - _elem506 = iprot.readBinary(); - struct.columns.add(_elem506); + _elem516 = iprot.readBinary(); + struct.columns.add(_elem516); } } struct.setColumnsIsSet(true); } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map508 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map508.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key509; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val510; - for (int _i511 = 0; _i511 < _map508.size; ++_i511) + org.apache.thrift.protocol.TMap _map518 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map518.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key519; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val520; + for (int _i521 = 0; _i521 < _map518.size; ++_i521) { - _key509 = iprot.readBinary(); - _val510 = iprot.readBinary(); - struct.attributes.put(_key509, _val510); + _key519 = iprot.readBinary(); + _val520 = iprot.readBinary(); + struct.attributes.put(_key519, _val520); } } struct.setAttributesIsSet(true); @@ -50119,13 +51065,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithPref case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list512 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list512.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem513; - for (int _i514 = 0; _i514 < _list512.size; ++_i514) + org.apache.thrift.protocol.TList _list522 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list522.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem523; + for (int _i524 = 0; _i524 < _list522.size; ++_i524) { - _elem513 = iprot.readBinary(); - struct.columns.add(_elem513); + _elem523 = iprot.readBinary(); + struct.columns.add(_elem523); } iprot.readListEnd(); } @@ -50137,15 +51083,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithPref case 4: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map515 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map515.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key516; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val517; - for (int _i518 = 0; _i518 < _map515.size; ++_i518) + org.apache.thrift.protocol.TMap _map525 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map525.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key526; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val527; + for (int _i528 = 0; _i528 < _map525.size; ++_i528) { - _key516 = iprot.readBinary(); - _val517 = iprot.readBinary(); - struct.attributes.put(_key516, _val517); + _key526 = iprot.readBinary(); + _val527 = iprot.readBinary(); + struct.attributes.put(_key526, _val527); } iprot.readMapEnd(); } @@ -50183,9 +51129,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithPre oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter519 : struct.columns) + for (java.nio.ByteBuffer _iter529 : struct.columns) { - oprot.writeBinary(_iter519); + oprot.writeBinary(_iter529); } oprot.writeListEnd(); } @@ -50195,10 +51141,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithPre oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter520 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter530 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter520.getKey()); - oprot.writeBinary(_iter520.getValue()); + oprot.writeBinary(_iter530.getKey()); + oprot.writeBinary(_iter530.getValue()); } oprot.writeMapEnd(); } @@ -50244,19 +51190,19 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithPref if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter521 : struct.columns) + for (java.nio.ByteBuffer _iter531 : struct.columns) { - oprot.writeBinary(_iter521); + oprot.writeBinary(_iter531); } } } if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter522 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter532 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter522.getKey()); - oprot.writeBinary(_iter522.getValue()); + oprot.writeBinary(_iter532.getKey()); + oprot.writeBinary(_iter532.getValue()); } } } @@ -50276,28 +51222,28 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithPrefi } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list523 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list523.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem524; - for (int _i525 = 0; _i525 < _list523.size; ++_i525) + org.apache.thrift.protocol.TList _list533 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list533.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem534; + for (int _i535 = 0; _i535 < _list533.size; ++_i535) { - _elem524 = iprot.readBinary(); - struct.columns.add(_elem524); + _elem534 = iprot.readBinary(); + struct.columns.add(_elem534); } } struct.setColumnsIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map526 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map526.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key527; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val528; - for (int _i529 = 0; _i529 < _map526.size; ++_i529) + org.apache.thrift.protocol.TMap _map536 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map536.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key537; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val538; + for (int _i539 = 0; _i539 < _map536.size; ++_i539) { - _key527 = iprot.readBinary(); - _val528 = iprot.readBinary(); - struct.attributes.put(_key527, _val528); + _key537 = iprot.readBinary(); + _val538 = iprot.readBinary(); + struct.attributes.put(_key537, _val538); } } struct.setAttributesIsSet(true); @@ -51561,13 +52507,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenTs_args case 3: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list530 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list530.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem531; - for (int _i532 = 0; _i532 < _list530.size; ++_i532) + org.apache.thrift.protocol.TList _list540 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list540.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem541; + for (int _i542 = 0; _i542 < _list540.size; ++_i542) { - _elem531 = iprot.readBinary(); - struct.columns.add(_elem531); + _elem541 = iprot.readBinary(); + struct.columns.add(_elem541); } iprot.readListEnd(); } @@ -51587,15 +52533,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenTs_args case 5: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map533 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map533.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key534; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val535; - for (int _i536 = 0; _i536 < _map533.size; ++_i536) + org.apache.thrift.protocol.TMap _map543 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map543.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key544; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val545; + for (int _i546 = 0; _i546 < _map543.size; ++_i546) { - _key534 = iprot.readBinary(); - _val535 = iprot.readBinary(); - struct.attributes.put(_key534, _val535); + _key544 = iprot.readBinary(); + _val545 = iprot.readBinary(); + struct.attributes.put(_key544, _val545); } iprot.readMapEnd(); } @@ -51633,9 +52579,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenTs_args oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter537 : struct.columns) + for (java.nio.ByteBuffer _iter547 : struct.columns) { - oprot.writeBinary(_iter537); + oprot.writeBinary(_iter547); } oprot.writeListEnd(); } @@ -51648,10 +52594,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenTs_args oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter538 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter548 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter538.getKey()); - oprot.writeBinary(_iter538.getValue()); + oprot.writeBinary(_iter548.getKey()); + oprot.writeBinary(_iter548.getValue()); } oprot.writeMapEnd(); } @@ -51700,9 +52646,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenTs_args if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter539 : struct.columns) + for (java.nio.ByteBuffer _iter549 : struct.columns) { - oprot.writeBinary(_iter539); + oprot.writeBinary(_iter549); } } } @@ -51712,10 +52658,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenTs_args if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter540 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter550 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter540.getKey()); - oprot.writeBinary(_iter540.getValue()); + oprot.writeBinary(_iter550.getKey()); + oprot.writeBinary(_iter550.getValue()); } } } @@ -51735,13 +52681,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenTs_args s } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list541 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list541.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem542; - for (int _i543 = 0; _i543 < _list541.size; ++_i543) + org.apache.thrift.protocol.TList _list551 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list551.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem552; + for (int _i553 = 0; _i553 < _list551.size; ++_i553) { - _elem542 = iprot.readBinary(); - struct.columns.add(_elem542); + _elem552 = iprot.readBinary(); + struct.columns.add(_elem552); } } struct.setColumnsIsSet(true); @@ -51752,15 +52698,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenTs_args s } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map544 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map544.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key545; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val546; - for (int _i547 = 0; _i547 < _map544.size; ++_i547) + org.apache.thrift.protocol.TMap _map554 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map554.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key555; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val556; + for (int _i557 = 0; _i557 < _map554.size; ++_i557) { - _key545 = iprot.readBinary(); - _val546 = iprot.readBinary(); - struct.attributes.put(_key545, _val546); + _key555 = iprot.readBinary(); + _val556 = iprot.readBinary(); + struct.attributes.put(_key555, _val556); } } struct.setAttributesIsSet(true); @@ -53143,13 +54089,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithStop case 4: // COLUMNS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list548 = iprot.readListBegin(); - struct.columns = new java.util.ArrayList(_list548.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem549; - for (int _i550 = 0; _i550 < _list548.size; ++_i550) + org.apache.thrift.protocol.TList _list558 = iprot.readListBegin(); + struct.columns = new java.util.ArrayList(_list558.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem559; + for (int _i560 = 0; _i560 < _list558.size; ++_i560) { - _elem549 = iprot.readBinary(); - struct.columns.add(_elem549); + _elem559 = iprot.readBinary(); + struct.columns.add(_elem559); } iprot.readListEnd(); } @@ -53169,15 +54115,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerOpenWithStop case 6: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map551 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map551.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key552; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val553; - for (int _i554 = 0; _i554 < _map551.size; ++_i554) + org.apache.thrift.protocol.TMap _map561 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map561.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key562; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val563; + for (int _i564 = 0; _i564 < _map561.size; ++_i564) { - _key552 = iprot.readBinary(); - _val553 = iprot.readBinary(); - struct.attributes.put(_key552, _val553); + _key562 = iprot.readBinary(); + _val563 = iprot.readBinary(); + struct.attributes.put(_key562, _val563); } iprot.readMapEnd(); } @@ -53220,9 +54166,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSto oprot.writeFieldBegin(COLUMNS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.columns.size())); - for (java.nio.ByteBuffer _iter555 : struct.columns) + for (java.nio.ByteBuffer _iter565 : struct.columns) { - oprot.writeBinary(_iter555); + oprot.writeBinary(_iter565); } oprot.writeListEnd(); } @@ -53235,10 +54181,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerOpenWithSto oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter556 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter566 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter556.getKey()); - oprot.writeBinary(_iter556.getValue()); + oprot.writeBinary(_iter566.getKey()); + oprot.writeBinary(_iter566.getValue()); } oprot.writeMapEnd(); } @@ -53293,9 +54239,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStop if (struct.isSetColumns()) { { oprot.writeI32(struct.columns.size()); - for (java.nio.ByteBuffer _iter557 : struct.columns) + for (java.nio.ByteBuffer _iter567 : struct.columns) { - oprot.writeBinary(_iter557); + oprot.writeBinary(_iter567); } } } @@ -53305,10 +54251,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStop if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter558 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter568 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter558.getKey()); - oprot.writeBinary(_iter558.getValue()); + oprot.writeBinary(_iter568.getKey()); + oprot.writeBinary(_iter568.getValue()); } } } @@ -53332,13 +54278,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStopT } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list559 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); - struct.columns = new java.util.ArrayList(_list559.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem560; - for (int _i561 = 0; _i561 < _list559.size; ++_i561) + org.apache.thrift.protocol.TList _list569 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); + struct.columns = new java.util.ArrayList(_list569.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem570; + for (int _i571 = 0; _i571 < _list569.size; ++_i571) { - _elem560 = iprot.readBinary(); - struct.columns.add(_elem560); + _elem570 = iprot.readBinary(); + struct.columns.add(_elem570); } } struct.setColumnsIsSet(true); @@ -53349,15 +54295,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerOpenWithStopT } if (incoming.get(5)) { { - org.apache.thrift.protocol.TMap _map562 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map562.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key563; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val564; - for (int _i565 = 0; _i565 < _map562.size; ++_i565) + org.apache.thrift.protocol.TMap _map572 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map572.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key573; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val574; + for (int _i575 = 0; _i575 < _map572.size; ++_i575) { - _key563 = iprot.readBinary(); - _val564 = iprot.readBinary(); - struct.attributes.put(_key563, _val564); + _key573 = iprot.readBinary(); + _val574 = iprot.readBinary(); + struct.attributes.put(_key573, _val574); } } struct.setAttributesIsSet(true); @@ -54693,14 +55639,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerGet_result s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list566 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list566.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem567; - for (int _i568 = 0; _i568 < _list566.size; ++_i568) + org.apache.thrift.protocol.TList _list576 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list576.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem577; + for (int _i578 = 0; _i578 < _list576.size; ++_i578) { - _elem567 = new TRowResult(); - _elem567.read(iprot); - struct.success.add(_elem567); + _elem577 = new TRowResult(); + _elem577.read(iprot); + struct.success.add(_elem577); } iprot.readListEnd(); } @@ -54746,9 +55692,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerGet_result oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter569 : struct.success) + for (TRowResult _iter579 : struct.success) { - _iter569.write(oprot); + _iter579.write(oprot); } oprot.writeListEnd(); } @@ -54795,9 +55741,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerGet_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter570 : struct.success) + for (TRowResult _iter580 : struct.success) { - _iter570.write(oprot); + _iter580.write(oprot); } } } @@ -54815,14 +55761,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerGet_result st java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list571 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list571.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem572; - for (int _i573 = 0; _i573 < _list571.size; ++_i573) + org.apache.thrift.protocol.TList _list581 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list581.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem582; + for (int _i583 = 0; _i583 < _list581.size; ++_i583) { - _elem572 = new TRowResult(); - _elem572.read(iprot); - struct.success.add(_elem572); + _elem582 = new TRowResult(); + _elem582.read(iprot); + struct.success.add(_elem582); } } struct.setSuccessIsSet(true); @@ -55807,14 +56753,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, scannerGetList_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list574 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list574.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem575; - for (int _i576 = 0; _i576 < _list574.size; ++_i576) + org.apache.thrift.protocol.TList _list584 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list584.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem585; + for (int _i586 = 0; _i586 < _list584.size; ++_i586) { - _elem575 = new TRowResult(); - _elem575.read(iprot); - struct.success.add(_elem575); + _elem585 = new TRowResult(); + _elem585.read(iprot); + struct.success.add(_elem585); } iprot.readListEnd(); } @@ -55860,9 +56806,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, scannerGetList_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TRowResult _iter577 : struct.success) + for (TRowResult _iter587 : struct.success) { - _iter577.write(oprot); + _iter587.write(oprot); } oprot.writeListEnd(); } @@ -55909,9 +56855,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, scannerGetList_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TRowResult _iter578 : struct.success) + for (TRowResult _iter588 : struct.success) { - _iter578.write(oprot); + _iter588.write(oprot); } } } @@ -55929,14 +56875,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, scannerGetList_resul java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list579 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list579.size); - @org.apache.thrift.annotation.Nullable TRowResult _elem580; - for (int _i581 = 0; _i581 < _list579.size; ++_i581) + org.apache.thrift.protocol.TList _list589 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list589.size); + @org.apache.thrift.annotation.Nullable TRowResult _elem590; + for (int _i591 = 0; _i591 < _list589.size; ++_i591) { - _elem580 = new TRowResult(); - _elem580.read(iprot); - struct.success.add(_elem580); + _elem590 = new TRowResult(); + _elem590.read(iprot); + struct.success.add(_elem590); } } struct.setSuccessIsSet(true); @@ -58454,14 +59400,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, append_result struc case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list582 = iprot.readListBegin(); - struct.success = new java.util.ArrayList(_list582.size); - @org.apache.thrift.annotation.Nullable TCell _elem583; - for (int _i584 = 0; _i584 < _list582.size; ++_i584) + org.apache.thrift.protocol.TList _list592 = iprot.readListBegin(); + struct.success = new java.util.ArrayList(_list592.size); + @org.apache.thrift.annotation.Nullable TCell _elem593; + for (int _i594 = 0; _i594 < _list592.size; ++_i594) { - _elem583 = new TCell(); - _elem583.read(iprot); - struct.success.add(_elem583); + _elem593 = new TCell(); + _elem593.read(iprot); + struct.success.add(_elem593); } iprot.readListEnd(); } @@ -58498,9 +59444,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, append_result stru oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TCell _iter585 : struct.success) + for (TCell _iter595 : struct.success) { - _iter585.write(oprot); + _iter595.write(oprot); } oprot.writeListEnd(); } @@ -58539,9 +59485,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, append_result struc if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TCell _iter586 : struct.success) + for (TCell _iter596 : struct.success) { - _iter586.write(oprot); + _iter596.write(oprot); } } } @@ -58556,14 +59502,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, append_result struct java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list587 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); - struct.success = new java.util.ArrayList(_list587.size); - @org.apache.thrift.annotation.Nullable TCell _elem588; - for (int _i589 = 0; _i589 < _list587.size; ++_i589) + org.apache.thrift.protocol.TList _list597 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); + struct.success = new java.util.ArrayList(_list597.size); + @org.apache.thrift.annotation.Nullable TCell _elem598; + for (int _i599 = 0; _i599 < _list597.size; ++_i599) { - _elem588 = new TCell(); - _elem588.read(iprot); - struct.success.add(_elem588); + _elem598 = new TCell(); + _elem598.read(iprot); + struct.success.add(_elem598); } } struct.setSuccessIsSet(true); @@ -59489,15 +60435,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, checkAndPut_args st case 7: // ATTRIBUTES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map590 = iprot.readMapBegin(); - struct.attributes = new java.util.HashMap(2*_map590.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key591; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val592; - for (int _i593 = 0; _i593 < _map590.size; ++_i593) + org.apache.thrift.protocol.TMap _map600 = iprot.readMapBegin(); + struct.attributes = new java.util.HashMap(2*_map600.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key601; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val602; + for (int _i603 = 0; _i603 < _map600.size; ++_i603) { - _key591 = iprot.readBinary(); - _val592 = iprot.readBinary(); - struct.attributes.put(_key591, _val592); + _key601 = iprot.readBinary(); + _val602 = iprot.readBinary(); + struct.attributes.put(_key601, _val602); } iprot.readMapEnd(); } @@ -59550,10 +60496,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, checkAndPut_args s oprot.writeFieldBegin(ATTRIBUTES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.attributes.size())); - for (java.util.Map.Entry _iter594 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter604 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter594.getKey()); - oprot.writeBinary(_iter594.getValue()); + oprot.writeBinary(_iter604.getKey()); + oprot.writeBinary(_iter604.getValue()); } oprot.writeMapEnd(); } @@ -59614,10 +60560,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, checkAndPut_args st if (struct.isSetAttributes()) { { oprot.writeI32(struct.attributes.size()); - for (java.util.Map.Entry _iter595 : struct.attributes.entrySet()) + for (java.util.Map.Entry _iter605 : struct.attributes.entrySet()) { - oprot.writeBinary(_iter595.getKey()); - oprot.writeBinary(_iter595.getValue()); + oprot.writeBinary(_iter605.getKey()); + oprot.writeBinary(_iter605.getValue()); } } } @@ -59650,15 +60596,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, checkAndPut_args str } if (incoming.get(5)) { { - org.apache.thrift.protocol.TMap _map596 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); - struct.attributes = new java.util.HashMap(2*_map596.size); - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key597; - @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val598; - for (int _i599 = 0; _i599 < _map596.size; ++_i599) + org.apache.thrift.protocol.TMap _map606 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); + struct.attributes = new java.util.HashMap(2*_map606.size); + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _key607; + @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val608; + for (int _i609 = 0; _i609 < _map606.size; ++_i609) { - _key597 = iprot.readBinary(); - _val598 = iprot.readBinary(); - struct.attributes.put(_key597, _val598); + _key607 = iprot.readBinary(); + _val608 = iprot.readBinary(); + struct.attributes.put(_key607, _val608); } } struct.setAttributesIsSet(true);