diff --git a/common/src/java/org/apache/hadoop/hive/common/auth/HiveAuthUtils.java b/common/src/java/org/apache/hadoop/hive/common/auth/HiveAuthUtils.java index 938fd5228b02..8aa560cbc746 100644 --- a/common/src/java/org/apache/hadoop/hive/common/auth/HiveAuthUtils.java +++ b/common/src/java/org/apache/hadoop/hive/common/auth/HiveAuthUtils.java @@ -30,6 +30,7 @@ import javax.net.ssl.SSLSocket; import javax.net.ssl.TrustManagerFactory; +import org.apache.thrift.TConfiguration; import org.apache.thrift.transport.TSSLTransportFactory; import org.apache.thrift.transport.TServerSocket; import org.apache.thrift.transport.TSocket; @@ -45,8 +46,8 @@ public class HiveAuthUtils { private static final Logger LOG = LoggerFactory.getLogger(HiveAuthUtils.class); - public static TTransport getSocketTransport(String host, int port, int loginTimeout) { - return new TSocket(host, port, loginTimeout); + public static TTransport getSocketTransport(String host, int port, int loginTimeout) throws TTransportException { + return new TSocket(new TConfiguration(),host, port, loginTimeout); } public static TTransport getSSLSocket(String host, int port, int loginTimeout) diff --git a/hcatalog/webhcat/java-client/src/main/java/org/apache/hive/hcatalog/api/MetadataJSONSerializer.java b/hcatalog/webhcat/java-client/src/main/java/org/apache/hive/hcatalog/api/MetadataJSONSerializer.java index d0aa86f1984f..3bbfa61ea395 100644 --- a/hcatalog/webhcat/java-client/src/main/java/org/apache/hive/hcatalog/api/MetadataJSONSerializer.java +++ b/hcatalog/webhcat/java-client/src/main/java/org/apache/hive/hcatalog/api/MetadataJSONSerializer.java @@ -49,7 +49,7 @@ class MetadataJSONSerializer extends MetadataSerializer { public String serializeTable(HCatTable hcatTable) throws HCatException { try { return new TSerializer(new TJSONProtocol.Factory()) - .toString(hcatTable.toHiveTable(), "UTF-8"); + .toString(hcatTable.toHiveTable()); } catch (TException exception) { throw new HCatException("Could not serialize HCatTable: " + hcatTable, exception); @@ -74,7 +74,7 @@ public HCatTable deserializeTable(String hcatTableStringRep) throws HCatExceptio public String serializePartition(HCatPartition hcatPartition) throws HCatException { try { return new TSerializer(new TJSONProtocol.Factory()) - .toString(hcatPartition.toHivePartition(), "UTF-8"); + .toString(hcatPartition.toHivePartition()); } catch (TException exception) { throw new HCatException("Could not serialize HCatPartition: " + hcatPartition, exception); @@ -103,7 +103,7 @@ public List serializePartitionSpec(HCatPartitionSpec hcatPartitionSpec) List stringReps = new ArrayList(); TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); for (PartitionSpec partitionSpec : hcatPartitionSpec.partitionSpecProxy.toPartitionSpec()) { - stringReps.add(serializer.toString(partitionSpec, "UTF-8")); + stringReps.add(serializer.toString(partitionSpec)); } return stringReps; } diff --git a/itests/hcatalog-unit/src/test/java/org/apache/hive/hcatalog/listener/DummyRawStoreFailEvent.java b/itests/hcatalog-unit/src/test/java/org/apache/hive/hcatalog/listener/DummyRawStoreFailEvent.java index 0fd02da5d54a..266e33770a2e 100644 --- a/itests/hcatalog-unit/src/test/java/org/apache/hive/hcatalog/listener/DummyRawStoreFailEvent.java +++ b/itests/hcatalog-unit/src/test/java/org/apache/hive/hcatalog/listener/DummyRawStoreFailEvent.java @@ -193,7 +193,12 @@ public Catalog getCatalog(String catalogName) throws NoSuchObjectException, Meta @Override public List getCatalogs() { - return objectStore.getCatalogs(); + try { + return objectStore.getCatalogs(); + } catch (Exception e) { + e.printStackTrace(); + } + return null; } @Override diff --git a/pom.xml b/pom.xml index fdae9f7c6267..6fd82af61c0b 100644 --- a/pom.xml +++ b/pom.xml @@ -178,7 +178,7 @@ 1.12.0 0.9.3 - 0.13.0 + 0.14.1 2.13.2 2.5.0 42.2.14 diff --git a/ql/src/gen/thrift/gen-cpp/queryplan_constants.cpp b/ql/src/gen/thrift/gen-cpp/queryplan_constants.cpp deleted file mode 100644 index 0ee2fc9dde9e..000000000000 --- a/ql/src/gen/thrift/gen-cpp/queryplan_constants.cpp +++ /dev/null @@ -1,17 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.13.0) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -#include "queryplan_constants.h" - -namespace Apache { namespace Hadoop { namespace Hive { - -const queryplanConstants g_queryplan_constants; - -queryplanConstants::queryplanConstants() { -} - -}}} // namespace - diff --git a/ql/src/gen/thrift/gen-cpp/queryplan_constants.h b/ql/src/gen/thrift/gen-cpp/queryplan_constants.h deleted file mode 100644 index cf5e3da6290d..000000000000 --- a/ql/src/gen/thrift/gen-cpp/queryplan_constants.h +++ /dev/null @@ -1,24 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.13.0) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -#ifndef queryplan_CONSTANTS_H -#define queryplan_CONSTANTS_H - -#include "queryplan_types.h" - -namespace Apache { namespace Hadoop { namespace Hive { - -class queryplanConstants { - public: - queryplanConstants(); - -}; - -extern const queryplanConstants g_queryplan_constants; - -}}} // namespace - -#endif diff --git a/ql/src/gen/thrift/gen-cpp/queryplan_types.cpp b/ql/src/gen/thrift/gen-cpp/queryplan_types.cpp index d6e0fecf4627..0d1c78f1d698 100644 --- a/ql/src/gen/thrift/gen-cpp/queryplan_types.cpp +++ b/ql/src/gen/thrift/gen-cpp/queryplan_types.cpp @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -21,7 +21,7 @@ const char* _kAdjacencyTypeNames[] = { "CONJUNCTIVE", "DISJUNCTIVE" }; -const std::map _AdjacencyType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kAdjacencyTypeValues, _kAdjacencyTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _AdjacencyType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kAdjacencyTypeValues, _kAdjacencyTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const AdjacencyType::type& val) { std::map::const_iterator it = _AdjacencyType_VALUES_TO_NAMES.find(val); @@ -50,7 +50,7 @@ const char* _kNodeTypeNames[] = { "OPERATOR", "STAGE" }; -const std::map _NodeType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kNodeTypeValues, _kNodeTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _NodeType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kNodeTypeValues, _kNodeTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const NodeType::type& val) { std::map::const_iterator it = _NodeType_VALUES_TO_NAMES.find(val); @@ -129,7 +129,7 @@ const char* _kOperatorTypeNames[] = { "SPARKPRUNINGSINK", "TOPNKEY" }; -const std::map _OperatorType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(27, _kOperatorTypeValues, _kOperatorTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _OperatorType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(27, _kOperatorTypeValues, _kOperatorTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const OperatorType::type& val) { std::map::const_iterator it = _OperatorType_VALUES_TO_NAMES.find(val); @@ -160,7 +160,7 @@ const char* _kTaskTypeNames[] = { "REDUCE", "OTHER" }; -const std::map _TaskType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kTaskTypeValues, _kTaskTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _TaskType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kTaskTypeValues, _kTaskTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const TaskType::type& val) { std::map::const_iterator it = _TaskType_VALUES_TO_NAMES.find(val); @@ -231,7 +231,7 @@ const char* _kStageTypeNames[] = { "ATLAS_DUMP", "ATLAS_LOAD" }; -const std::map _StageType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(23, _kStageTypeValues, _kStageTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _StageType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(23, _kStageTypeValues, _kStageTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const StageType::type& val) { std::map::const_iterator it = _StageType_VALUES_TO_NAMES.find(val); diff --git a/ql/src/gen/thrift/gen-cpp/queryplan_types.h b/ql/src/gen/thrift/gen-cpp/queryplan_types.h index beba59e2e19a..35c7c7abc445 100644 --- a/ql/src/gen/thrift/gen-cpp/queryplan_types.h +++ b/ql/src/gen/thrift/gen-cpp/queryplan_types.h @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -165,6 +165,10 @@ class Adjacency : public virtual ::apache::thrift::TBase { virtual ~Adjacency() noexcept; std::string node; std::vector children; + /** + * + * @see AdjacencyType + */ AdjacencyType::type adjacencyType; _Adjacency__isset __isset; @@ -217,6 +221,10 @@ class Graph : public virtual ::apache::thrift::TBase { } virtual ~Graph() noexcept; + /** + * + * @see NodeType + */ NodeType::type nodeType; std::vector roots; std::vector adjacencyList; @@ -275,6 +283,10 @@ class Operator : public virtual ::apache::thrift::TBase { virtual ~Operator() noexcept; std::string operatorId; + /** + * + * @see OperatorType + */ OperatorType::type operatorType; std::map operatorAttributes; std::map operatorCounters; @@ -349,6 +361,10 @@ class Task : public virtual ::apache::thrift::TBase { virtual ~Task() noexcept; std::string taskId; + /** + * + * @see TaskType + */ TaskType::type taskType; std::map taskAttributes; std::map taskCounters; @@ -436,6 +452,10 @@ class Stage : public virtual ::apache::thrift::TBase { virtual ~Stage() noexcept; std::string stageId; + /** + * + * @see StageType + */ StageType::type stageType; std::map stageAttributes; std::map stageCounters; diff --git a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Adjacency.java b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Adjacency.java index dbfb052f4538..2533d51292af 100644 --- a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Adjacency.java +++ b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Adjacency.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.ql.plan.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class Adjacency 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("Adjacency"); @@ -308,8 +308,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Adjacency) return this.equals((Adjacency)that); return false; @@ -378,7 +376,7 @@ public int compareTo(Adjacency other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNode()).compareTo(other.isSetNode()); + lastComparison = java.lang.Boolean.compare(isSetNode(), other.isSetNode()); if (lastComparison != 0) { return lastComparison; } @@ -388,7 +386,7 @@ public int compareTo(Adjacency other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetChildren()).compareTo(other.isSetChildren()); + lastComparison = java.lang.Boolean.compare(isSetChildren(), other.isSetChildren()); if (lastComparison != 0) { return lastComparison; } @@ -398,7 +396,7 @@ public int compareTo(Adjacency other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAdjacencyType()).compareTo(other.isSetAdjacencyType()); + lastComparison = java.lang.Boolean.compare(isSetAdjacencyType(), other.isSetAdjacencyType()); if (lastComparison != 0) { return lastComparison; } @@ -619,7 +617,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Adjacency struct) th } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list5 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list5 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.children = new java.util.ArrayList(_list5.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem6; for (int _i7 = 0; _i7 < _list5.size; ++_i7) diff --git a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/AdjacencyType.java b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/AdjacencyType.java index 344bef9cfc23..b92a11d5699f 100644 --- a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/AdjacencyType.java +++ b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/AdjacencyType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.ql.plan.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum AdjacencyType implements org.apache.thrift.TEnum { CONJUNCTIVE(0), DISJUNCTIVE(1); diff --git a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Graph.java b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Graph.java index d50b2d510344..8247e45a3a84 100644 --- a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Graph.java +++ b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Graph.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.ql.plan.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class Graph 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("Graph"); @@ -329,8 +329,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Graph) return this.equals((Graph)that); return false; @@ -399,7 +397,7 @@ public int compareTo(Graph other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNodeType()).compareTo(other.isSetNodeType()); + lastComparison = java.lang.Boolean.compare(isSetNodeType(), other.isSetNodeType()); if (lastComparison != 0) { return lastComparison; } @@ -409,7 +407,7 @@ public int compareTo(Graph other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRoots()).compareTo(other.isSetRoots()); + lastComparison = java.lang.Boolean.compare(isSetRoots(), other.isSetRoots()); if (lastComparison != 0) { return lastComparison; } @@ -419,7 +417,7 @@ public int compareTo(Graph other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAdjacencyList()).compareTo(other.isSetAdjacencyList()); + lastComparison = java.lang.Boolean.compare(isSetAdjacencyList(), other.isSetAdjacencyList()); if (lastComparison != 0) { return lastComparison; } @@ -664,7 +662,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Graph struct) throws } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list18 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list18 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.roots = new java.util.ArrayList(_list18.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem19; for (int _i20 = 0; _i20 < _list18.size; ++_i20) @@ -677,7 +675,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Graph struct) throws } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list21 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list21 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.adjacencyList = new java.util.ArrayList(_list21.size); @org.apache.thrift.annotation.Nullable Adjacency _elem22; for (int _i23 = 0; _i23 < _list21.size; ++_i23) diff --git a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/NodeType.java b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/NodeType.java index 15db065c534f..cd90ec5ea2d1 100644 --- a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/NodeType.java +++ b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/NodeType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.ql.plan.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum NodeType implements org.apache.thrift.TEnum { OPERATOR(0), STAGE(1); diff --git a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Operator.java b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Operator.java index 445794ee50dd..9fd8a1ab9a5b 100644 --- a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Operator.java +++ b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Operator.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.ql.plan.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class Operator 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("Operator"); @@ -468,8 +468,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Operator) return this.equals((Operator)that); return false; @@ -573,7 +571,7 @@ public int compareTo(Operator other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetOperatorId()).compareTo(other.isSetOperatorId()); + lastComparison = java.lang.Boolean.compare(isSetOperatorId(), other.isSetOperatorId()); if (lastComparison != 0) { return lastComparison; } @@ -583,7 +581,7 @@ public int compareTo(Operator other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperatorType()).compareTo(other.isSetOperatorType()); + lastComparison = java.lang.Boolean.compare(isSetOperatorType(), other.isSetOperatorType()); if (lastComparison != 0) { return lastComparison; } @@ -593,7 +591,7 @@ public int compareTo(Operator other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperatorAttributes()).compareTo(other.isSetOperatorAttributes()); + lastComparison = java.lang.Boolean.compare(isSetOperatorAttributes(), other.isSetOperatorAttributes()); if (lastComparison != 0) { return lastComparison; } @@ -603,7 +601,7 @@ public int compareTo(Operator other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperatorCounters()).compareTo(other.isSetOperatorCounters()); + lastComparison = java.lang.Boolean.compare(isSetOperatorCounters(), other.isSetOperatorCounters()); if (lastComparison != 0) { return lastComparison; } @@ -613,7 +611,7 @@ public int compareTo(Operator other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDone()).compareTo(other.isSetDone()); + lastComparison = java.lang.Boolean.compare(isSetDone(), other.isSetDone()); if (lastComparison != 0) { return lastComparison; } @@ -623,7 +621,7 @@ public int compareTo(Operator other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStarted()).compareTo(other.isSetStarted()); + lastComparison = java.lang.Boolean.compare(isSetStarted(), other.isSetStarted()); if (lastComparison != 0) { return lastComparison; } @@ -950,7 +948,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Operator struct) thr } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map36 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map36 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.operatorAttributes = new java.util.HashMap(2*_map36.size); @org.apache.thrift.annotation.Nullable java.lang.String _key37; @org.apache.thrift.annotation.Nullable java.lang.String _val38; @@ -965,7 +963,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Operator struct) thr } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map40 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TMap _map40 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I64); struct.operatorCounters = new java.util.HashMap(2*_map40.size); @org.apache.thrift.annotation.Nullable java.lang.String _key41; long _val42; diff --git a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/OperatorType.java b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/OperatorType.java index ba0f57b2a6dd..7d0317d8229c 100644 --- a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/OperatorType.java +++ b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/OperatorType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.ql.plan.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum OperatorType implements org.apache.thrift.TEnum { JOIN(0), MAPJOIN(1), diff --git a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Query.java b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Query.java index 08cb8a44bf25..67555d990b5d 100644 --- a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Query.java +++ b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Query.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.ql.plan.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class Query 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("Query"); @@ -577,8 +577,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Query) return this.equals((Query)that); return false; @@ -708,7 +706,7 @@ public int compareTo(Query other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetQueryId()).compareTo(other.isSetQueryId()); + lastComparison = java.lang.Boolean.compare(isSetQueryId(), other.isSetQueryId()); if (lastComparison != 0) { return lastComparison; } @@ -718,7 +716,7 @@ public int compareTo(Query other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetQueryType()).compareTo(other.isSetQueryType()); + lastComparison = java.lang.Boolean.compare(isSetQueryType(), other.isSetQueryType()); if (lastComparison != 0) { return lastComparison; } @@ -728,7 +726,7 @@ public int compareTo(Query other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetQueryAttributes()).compareTo(other.isSetQueryAttributes()); + lastComparison = java.lang.Boolean.compare(isSetQueryAttributes(), other.isSetQueryAttributes()); if (lastComparison != 0) { return lastComparison; } @@ -738,7 +736,7 @@ public int compareTo(Query other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetQueryCounters()).compareTo(other.isSetQueryCounters()); + lastComparison = java.lang.Boolean.compare(isSetQueryCounters(), other.isSetQueryCounters()); if (lastComparison != 0) { return lastComparison; } @@ -748,7 +746,7 @@ public int compareTo(Query other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStageGraph()).compareTo(other.isSetStageGraph()); + lastComparison = java.lang.Boolean.compare(isSetStageGraph(), other.isSetStageGraph()); if (lastComparison != 0) { return lastComparison; } @@ -758,7 +756,7 @@ public int compareTo(Query other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStageList()).compareTo(other.isSetStageList()); + lastComparison = java.lang.Boolean.compare(isSetStageList(), other.isSetStageList()); if (lastComparison != 0) { return lastComparison; } @@ -768,7 +766,7 @@ public int compareTo(Query other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDone()).compareTo(other.isSetDone()); + lastComparison = java.lang.Boolean.compare(isSetDone(), other.isSetDone()); if (lastComparison != 0) { return lastComparison; } @@ -778,7 +776,7 @@ public int compareTo(Query other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStarted()).compareTo(other.isSetStarted()); + lastComparison = java.lang.Boolean.compare(isSetStarted(), other.isSetStarted()); if (lastComparison != 0) { return lastComparison; } @@ -1187,7 +1185,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Query struct) throws } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map117 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map117 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.queryAttributes = new java.util.HashMap(2*_map117.size); @org.apache.thrift.annotation.Nullable java.lang.String _key118; @org.apache.thrift.annotation.Nullable java.lang.String _val119; @@ -1202,7 +1200,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Query struct) throws } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map121 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TMap _map121 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I64); struct.queryCounters = new java.util.HashMap(2*_map121.size); @org.apache.thrift.annotation.Nullable java.lang.String _key122; long _val123; @@ -1222,7 +1220,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Query struct) throws } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list125 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list125 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.stageList = new java.util.ArrayList(_list125.size); @org.apache.thrift.annotation.Nullable Stage _elem126; for (int _i127 = 0; _i127 < _list125.size; ++_i127) diff --git a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/QueryPlan.java b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/QueryPlan.java index 9239445751b0..4e10186a1ba0 100644 --- a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/QueryPlan.java +++ b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/QueryPlan.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.ql.plan.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class QueryPlan 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("QueryPlan"); @@ -299,8 +299,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof QueryPlan) return this.equals((QueryPlan)that); return false; @@ -365,7 +363,7 @@ public int compareTo(QueryPlan other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetQueries()).compareTo(other.isSetQueries()); + lastComparison = java.lang.Boolean.compare(isSetQueries(), other.isSetQueries()); if (lastComparison != 0) { return lastComparison; } @@ -375,7 +373,7 @@ public int compareTo(QueryPlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDone()).compareTo(other.isSetDone()); + lastComparison = java.lang.Boolean.compare(isSetDone(), other.isSetDone()); if (lastComparison != 0) { return lastComparison; } @@ -385,7 +383,7 @@ public int compareTo(QueryPlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStarted()).compareTo(other.isSetStarted()); + lastComparison = java.lang.Boolean.compare(isSetStarted(), other.isSetStarted()); if (lastComparison != 0) { return lastComparison; } @@ -593,7 +591,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, QueryPlan struct) th java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list133 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list133 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.queries = new java.util.ArrayList(_list133.size); @org.apache.thrift.annotation.Nullable Query _elem134; for (int _i135 = 0; _i135 < _list133.size; ++_i135) diff --git a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Stage.java b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Stage.java index 7df16a00f606..8221ee29214e 100644 --- a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Stage.java +++ b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Stage.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.ql.plan.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class Stage 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("Stage"); @@ -539,8 +539,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Stage) return this.equals((Stage)that); return false; @@ -657,7 +655,7 @@ public int compareTo(Stage other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStageId()).compareTo(other.isSetStageId()); + lastComparison = java.lang.Boolean.compare(isSetStageId(), other.isSetStageId()); if (lastComparison != 0) { return lastComparison; } @@ -667,7 +665,7 @@ public int compareTo(Stage other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStageType()).compareTo(other.isSetStageType()); + lastComparison = java.lang.Boolean.compare(isSetStageType(), other.isSetStageType()); if (lastComparison != 0) { return lastComparison; } @@ -677,7 +675,7 @@ public int compareTo(Stage other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStageAttributes()).compareTo(other.isSetStageAttributes()); + lastComparison = java.lang.Boolean.compare(isSetStageAttributes(), other.isSetStageAttributes()); if (lastComparison != 0) { return lastComparison; } @@ -687,7 +685,7 @@ public int compareTo(Stage other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStageCounters()).compareTo(other.isSetStageCounters()); + lastComparison = java.lang.Boolean.compare(isSetStageCounters(), other.isSetStageCounters()); if (lastComparison != 0) { return lastComparison; } @@ -697,7 +695,7 @@ public int compareTo(Stage other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTaskList()).compareTo(other.isSetTaskList()); + lastComparison = java.lang.Boolean.compare(isSetTaskList(), other.isSetTaskList()); if (lastComparison != 0) { return lastComparison; } @@ -707,7 +705,7 @@ public int compareTo(Stage other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDone()).compareTo(other.isSetDone()); + lastComparison = java.lang.Boolean.compare(isSetDone(), other.isSetDone()); if (lastComparison != 0) { return lastComparison; } @@ -717,7 +715,7 @@ public int compareTo(Stage other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStarted()).compareTo(other.isSetStarted()); + lastComparison = java.lang.Boolean.compare(isSetStarted(), other.isSetStarted()); if (lastComparison != 0) { return lastComparison; } @@ -1095,7 +1093,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Stage struct) throws } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map89 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map89 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.stageAttributes = new java.util.HashMap(2*_map89.size); @org.apache.thrift.annotation.Nullable java.lang.String _key90; @org.apache.thrift.annotation.Nullable java.lang.String _val91; @@ -1110,7 +1108,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Stage struct) throws } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map93 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TMap _map93 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I64); struct.stageCounters = new java.util.HashMap(2*_map93.size); @org.apache.thrift.annotation.Nullable java.lang.String _key94; long _val95; @@ -1125,7 +1123,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Stage struct) throws } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list97 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list97 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.taskList = new java.util.ArrayList(_list97.size); @org.apache.thrift.annotation.Nullable Task _elem98; for (int _i99 = 0; _i99 < _list97.size; ++_i99) diff --git a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/StageType.java b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/StageType.java index 1228e031ffe5..95e6913fdf3f 100644 --- a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/StageType.java +++ b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/StageType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.ql.plan.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum StageType implements org.apache.thrift.TEnum { CONDITIONAL(0), COPY(1), diff --git a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Task.java b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Task.java index 56bfecd613ea..c18f909669ae 100644 --- a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Task.java +++ b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/Task.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.ql.plan.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class Task 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("Task"); @@ -586,8 +586,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Task) return this.equals((Task)that); return false; @@ -717,7 +715,7 @@ public int compareTo(Task other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTaskId()).compareTo(other.isSetTaskId()); + lastComparison = java.lang.Boolean.compare(isSetTaskId(), other.isSetTaskId()); if (lastComparison != 0) { return lastComparison; } @@ -727,7 +725,7 @@ public int compareTo(Task other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTaskType()).compareTo(other.isSetTaskType()); + lastComparison = java.lang.Boolean.compare(isSetTaskType(), other.isSetTaskType()); if (lastComparison != 0) { return lastComparison; } @@ -737,7 +735,7 @@ public int compareTo(Task other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTaskAttributes()).compareTo(other.isSetTaskAttributes()); + lastComparison = java.lang.Boolean.compare(isSetTaskAttributes(), other.isSetTaskAttributes()); if (lastComparison != 0) { return lastComparison; } @@ -747,7 +745,7 @@ public int compareTo(Task other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTaskCounters()).compareTo(other.isSetTaskCounters()); + lastComparison = java.lang.Boolean.compare(isSetTaskCounters(), other.isSetTaskCounters()); if (lastComparison != 0) { return lastComparison; } @@ -757,7 +755,7 @@ public int compareTo(Task other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperatorGraph()).compareTo(other.isSetOperatorGraph()); + lastComparison = java.lang.Boolean.compare(isSetOperatorGraph(), other.isSetOperatorGraph()); if (lastComparison != 0) { return lastComparison; } @@ -767,7 +765,7 @@ public int compareTo(Task other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperatorList()).compareTo(other.isSetOperatorList()); + lastComparison = java.lang.Boolean.compare(isSetOperatorList(), other.isSetOperatorList()); if (lastComparison != 0) { return lastComparison; } @@ -777,7 +775,7 @@ public int compareTo(Task other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDone()).compareTo(other.isSetDone()); + lastComparison = java.lang.Boolean.compare(isSetDone(), other.isSetDone()); if (lastComparison != 0) { return lastComparison; } @@ -787,7 +785,7 @@ public int compareTo(Task other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStarted()).compareTo(other.isSetStarted()); + lastComparison = java.lang.Boolean.compare(isSetStarted(), other.isSetStarted()); if (lastComparison != 0) { return lastComparison; } @@ -1204,7 +1202,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Task struct) throws } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map61 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map61 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.taskAttributes = new java.util.HashMap(2*_map61.size); @org.apache.thrift.annotation.Nullable java.lang.String _key62; @org.apache.thrift.annotation.Nullable java.lang.String _val63; @@ -1219,7 +1217,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Task struct) throws } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map65 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TMap _map65 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I64); struct.taskCounters = new java.util.HashMap(2*_map65.size); @org.apache.thrift.annotation.Nullable java.lang.String _key66; long _val67; @@ -1239,7 +1237,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Task struct) throws } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list69 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list69 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.operatorList = new java.util.ArrayList(_list69.size); @org.apache.thrift.annotation.Nullable Operator _elem70; for (int _i71 = 0; _i71 < _list69.size; ++_i71) diff --git a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/TaskType.java b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/TaskType.java index bd20c8b140ce..adf3c1e0e869 100644 --- a/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/TaskType.java +++ b/ql/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/ql/plan/api/TaskType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.ql.plan.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum TaskType implements org.apache.thrift.TEnum { MAP(0), REDUCE(1), diff --git a/ql/src/gen/thrift/gen-php/Adjacency.php b/ql/src/gen/thrift/gen-php/Adjacency.php index 815f9d8f8910..8ce3c69180b6 100644 --- a/ql/src/gen/thrift/gen-php/Adjacency.php +++ b/ql/src/gen/thrift/gen-php/Adjacency.php @@ -1,6 +1,6 @@ 'adjacencyType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\AdjacencyType', ), ); diff --git a/ql/src/gen/thrift/gen-php/AdjacencyType.php b/ql/src/gen/thrift/gen-php/AdjacencyType.php index cb8e4182cedd..934739373638 100644 --- a/ql/src/gen/thrift/gen-php/AdjacencyType.php +++ b/ql/src/gen/thrift/gen-php/AdjacencyType.php @@ -1,6 +1,6 @@ 'nodeType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\NodeType', ), 2 => array( 'var' => 'roots', diff --git a/ql/src/gen/thrift/gen-php/NodeType.php b/ql/src/gen/thrift/gen-php/NodeType.php index d04f46a3da27..4142d9cc1d49 100644 --- a/ql/src/gen/thrift/gen-php/NodeType.php +++ b/ql/src/gen/thrift/gen-php/NodeType.php @@ -1,6 +1,6 @@ 'operatorType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\OperatorType', ), 3 => array( 'var' => 'operatorAttributes', diff --git a/ql/src/gen/thrift/gen-php/OperatorType.php b/ql/src/gen/thrift/gen-php/OperatorType.php index 18ee555f260e..3f037652fbb7 100644 --- a/ql/src/gen/thrift/gen-php/OperatorType.php +++ b/ql/src/gen/thrift/gen-php/OperatorType.php @@ -1,6 +1,6 @@ 'stageType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\StageType', ), 3 => array( 'var' => 'stageAttributes', diff --git a/ql/src/gen/thrift/gen-php/StageType.php b/ql/src/gen/thrift/gen-php/StageType.php index 48b37172c496..be00baf8d677 100644 --- a/ql/src/gen/thrift/gen-php/StageType.php +++ b/ql/src/gen/thrift/gen-php/StageType.php @@ -1,6 +1,6 @@ 'taskType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\TaskType', ), 3 => array( 'var' => 'taskAttributes', diff --git a/ql/src/gen/thrift/gen-php/TaskType.php b/ql/src/gen/thrift/gen-php/TaskType.php index 84758015bc7d..6dddf87583f4 100644 --- a/ql/src/gen/thrift/gen-php/TaskType.php +++ b/ql/src/gen/thrift/gen-php/TaskType.php @@ -1,6 +1,6 @@ resourceUris = new ArrayList<>(); if (function.getResourceUris() != null) { for (ResourceUri uri : function.getResourceUris()) { @@ -90,13 +90,14 @@ public void writeTo(JsonWriter writer, ReplicationSpec additionalPropertiesProvi } try { + TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); //This is required otherwise correct work object on repl load wont be created. writer.jsonGenerator.writeStringField(ReplicationSpec.KEY.REPL_SCOPE.toString(), "all"); writer.jsonGenerator.writeStringField(ReplicationSpec.KEY.CURR_STATE_ID.toString(), additionalPropertiesProvider.getCurrentReplicationState()); writer.jsonGenerator - .writeStringField(FIELD_NAME, serializer.toString(copyObj, UTF_8)); + .writeStringField(FIELD_NAME, serializer.toString(copyObj)); } catch (TException e) { throw new SemanticException(ErrorMsg.ERROR_SERIALIZE_METASTORE.getMsg(), e); } diff --git a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/io/PartitionSerializer.java b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/io/PartitionSerializer.java index ecd4c84651d8..12c183e2d986 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/io/PartitionSerializer.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/io/PartitionSerializer.java @@ -40,8 +40,10 @@ public class PartitionSerializer implements JsonWriter.Serializer { @Override public void writeTo(JsonWriter writer, ReplicationSpec additionalPropertiesProvider) throws SemanticException, IOException { - TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); + try { + TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); + // Remove all the entries from the parameters which are added by repl tasks internally. Map parameters = partition.getParameters(); if (parameters != null) { @@ -59,7 +61,7 @@ public void writeTo(JsonWriter writer, ReplicationSpec additionalPropertiesProvi additionalPropertiesProvider.getCurrentReplicationState()); } } - writer.jsonGenerator.writeString(serializer.toString(partition, UTF_8)); + writer.jsonGenerator.writeString(serializer.toString(partition)); writer.jsonGenerator.flush(); } catch (TException e) { throw new SemanticException(ErrorMsg.ERROR_SERIALIZE_METASTORE.getMsg(), e); diff --git a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/io/TableSerializer.java b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/io/TableSerializer.java index 898b839355c4..16c371ad3790 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/io/TableSerializer.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/io/TableSerializer.java @@ -63,7 +63,7 @@ public void writeTo(JsonWriter writer, ReplicationSpec additionalPropertiesProvi try { TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); writer.jsonGenerator - .writeStringField(FIELD_NAME, serializer.toString(tTable, UTF_8)); + .writeStringField(FIELD_NAME, serializer.toString(tTable)); writer.jsonGenerator.writeFieldName(PartitionSerializer.FIELD_NAME); writePartitions(writer, additionalPropertiesProvider); } catch (TException e) { diff --git a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/MetadataJson.java b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/MetadataJson.java index b04fdefd6b34..d3c348549de4 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/MetadataJson.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/MetadataJson.java @@ -32,6 +32,7 @@ import org.apache.thrift.TDeserializer; import org.apache.thrift.TException; import org.apache.thrift.protocol.TJSONProtocol; +import org.apache.thrift.transport.TTransportException; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; @@ -46,7 +47,7 @@ public class MetadataJson { private final TDeserializer deserializer; private final String tableDesc; - public MetadataJson(String message) throws JSONException, SemanticException { + public MetadataJson(String message) throws JSONException, SemanticException, TTransportException { deserializer = new TDeserializer(new TJSONProtocol.Factory()); json = new JSONObject(message); checkCompatibility(); diff --git a/serde/src/gen/thrift/gen-cpp/complex_constants.cpp b/serde/src/gen/thrift/gen-cpp/complex_constants.cpp deleted file mode 100644 index 21e6fdfc6f2d..000000000000 --- a/serde/src/gen/thrift/gen-cpp/complex_constants.cpp +++ /dev/null @@ -1,17 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.13.0) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -#include "complex_constants.h" - - - -const complexConstants g_complex_constants; - -complexConstants::complexConstants() { -} - - - diff --git a/serde/src/gen/thrift/gen-cpp/complex_constants.h b/serde/src/gen/thrift/gen-cpp/complex_constants.h deleted file mode 100644 index 5791c6c88c73..000000000000 --- a/serde/src/gen/thrift/gen-cpp/complex_constants.h +++ /dev/null @@ -1,24 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.13.0) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -#ifndef complex_CONSTANTS_H -#define complex_CONSTANTS_H - -#include "complex_types.h" - - - -class complexConstants { - public: - complexConstants(); - -}; - -extern const complexConstants g_complex_constants; - - - -#endif diff --git a/serde/src/gen/thrift/gen-cpp/complex_types.cpp b/serde/src/gen/thrift/gen-cpp/complex_types.cpp index e26df4327e22..f9fe48c54d3d 100644 --- a/serde/src/gen/thrift/gen-cpp/complex_types.cpp +++ b/serde/src/gen/thrift/gen-cpp/complex_types.cpp @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/serde/src/gen/thrift/gen-cpp/complex_types.h b/serde/src/gen/thrift/gen-cpp/complex_types.h index e9d3eef6f1a2..a005cb83d11b 100644 --- a/serde/src/gen/thrift/gen-cpp/complex_types.h +++ b/serde/src/gen/thrift/gen-cpp/complex_types.h @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/serde/src/gen/thrift/gen-cpp/megastruct_constants.cpp b/serde/src/gen/thrift/gen-cpp/megastruct_constants.cpp deleted file mode 100644 index 71677beb8fb3..000000000000 --- a/serde/src/gen/thrift/gen-cpp/megastruct_constants.cpp +++ /dev/null @@ -1,17 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.13.0) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -#include "megastruct_constants.h" - - - -const megastructConstants g_megastruct_constants; - -megastructConstants::megastructConstants() { -} - - - diff --git a/serde/src/gen/thrift/gen-cpp/megastruct_constants.h b/serde/src/gen/thrift/gen-cpp/megastruct_constants.h deleted file mode 100644 index b22dd569ab0b..000000000000 --- a/serde/src/gen/thrift/gen-cpp/megastruct_constants.h +++ /dev/null @@ -1,24 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.13.0) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -#ifndef megastruct_CONSTANTS_H -#define megastruct_CONSTANTS_H - -#include "megastruct_types.h" - - - -class megastructConstants { - public: - megastructConstants(); - -}; - -extern const megastructConstants g_megastruct_constants; - - - -#endif diff --git a/serde/src/gen/thrift/gen-cpp/megastruct_types.cpp b/serde/src/gen/thrift/gen-cpp/megastruct_types.cpp index 5a8c75b13751..8e1776460a25 100644 --- a/serde/src/gen/thrift/gen-cpp/megastruct_types.cpp +++ b/serde/src/gen/thrift/gen-cpp/megastruct_types.cpp @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -21,7 +21,7 @@ const char* _kMyEnumNames[] = { "LLAMA", "ALPACA" }; -const std::map _MyEnum_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kMyEnumValues, _kMyEnumNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _MyEnum_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kMyEnumValues, _kMyEnumNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const MyEnum::type& val) { std::map::const_iterator it = _MyEnum_VALUES_TO_NAMES.find(val); diff --git a/serde/src/gen/thrift/gen-cpp/megastruct_types.h b/serde/src/gen/thrift/gen-cpp/megastruct_types.h index 42e18d1db087..6586b1b5781f 100644 --- a/serde/src/gen/thrift/gen-cpp/megastruct_types.h +++ b/serde/src/gen/thrift/gen-cpp/megastruct_types.h @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -54,6 +54,10 @@ class MiniStruct : public virtual ::apache::thrift::TBase { virtual ~MiniStruct() noexcept; std::string my_string; + /** + * + * @see MyEnum + */ MyEnum::type my_enum; _MiniStruct__isset __isset; diff --git a/serde/src/gen/thrift/gen-cpp/serde_constants.cpp b/serde/src/gen/thrift/gen-cpp/serde_constants.cpp index a808e355fc0a..6ddac21b22fb 100644 --- a/serde/src/gen/thrift/gen-cpp/serde_constants.cpp +++ b/serde/src/gen/thrift/gen-cpp/serde_constants.cpp @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/serde/src/gen/thrift/gen-cpp/serde_constants.h b/serde/src/gen/thrift/gen-cpp/serde_constants.h index 0f066ea7ce4e..fdaf6a9a7fd5 100644 --- a/serde/src/gen/thrift/gen-cpp/serde_constants.h +++ b/serde/src/gen/thrift/gen-cpp/serde_constants.h @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/serde/src/gen/thrift/gen-cpp/serde_types.cpp b/serde/src/gen/thrift/gen-cpp/serde_types.cpp deleted file mode 100644 index dd0f8c2f14fe..000000000000 --- a/serde/src/gen/thrift/gen-cpp/serde_types.cpp +++ /dev/null @@ -1,16 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.13.0) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -#include "serde_types.h" - -#include -#include - -#include - -namespace Hive { - -} // namespace diff --git a/serde/src/gen/thrift/gen-cpp/serde_types.h b/serde/src/gen/thrift/gen-cpp/serde_types.h index afc8f542230d..47ea5196fbe8 100644 --- a/serde/src/gen/thrift/gen-cpp/serde_types.h +++ b/serde/src/gen/thrift/gen-cpp/serde_types.h @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/serde/src/gen/thrift/gen-cpp/testthrift_constants.cpp b/serde/src/gen/thrift/gen-cpp/testthrift_constants.cpp deleted file mode 100644 index 3a264c813cb4..000000000000 --- a/serde/src/gen/thrift/gen-cpp/testthrift_constants.cpp +++ /dev/null @@ -1,17 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.13.0) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -#include "testthrift_constants.h" - - - -const testthriftConstants g_testthrift_constants; - -testthriftConstants::testthriftConstants() { -} - - - diff --git a/serde/src/gen/thrift/gen-cpp/testthrift_constants.h b/serde/src/gen/thrift/gen-cpp/testthrift_constants.h deleted file mode 100644 index 55b5d1ae0cac..000000000000 --- a/serde/src/gen/thrift/gen-cpp/testthrift_constants.h +++ /dev/null @@ -1,24 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.13.0) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -#ifndef testthrift_CONSTANTS_H -#define testthrift_CONSTANTS_H - -#include "testthrift_types.h" - - - -class testthriftConstants { - public: - testthriftConstants(); - -}; - -extern const testthriftConstants g_testthrift_constants; - - - -#endif diff --git a/serde/src/gen/thrift/gen-cpp/testthrift_types.cpp b/serde/src/gen/thrift/gen-cpp/testthrift_types.cpp index 928dc06e3943..84dc2a67dd14 100644 --- a/serde/src/gen/thrift/gen-cpp/testthrift_types.cpp +++ b/serde/src/gen/thrift/gen-cpp/testthrift_types.cpp @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/serde/src/gen/thrift/gen-cpp/testthrift_types.h b/serde/src/gen/thrift/gen-cpp/testthrift_types.h index 3450cd59be95..7628a840df8f 100644 --- a/serde/src/gen/thrift/gen-cpp/testthrift_types.h +++ b/serde/src/gen/thrift/gen-cpp/testthrift_types.h @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde/serdeConstants.java b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde/serdeConstants.java index 9c9dc82126e5..25d7379513c9 100644 --- a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde/serdeConstants.java +++ b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde/serdeConstants.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde/test/InnerStruct.java b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde/test/InnerStruct.java index 240337b7404c..37d00126d132 100644 --- a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde/test/InnerStruct.java +++ b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde/test/InnerStruct.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.serde.test; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class InnerStruct 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("InnerStruct"); @@ -179,8 +179,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof InnerStruct) return this.equals((InnerStruct)that); return false; @@ -221,7 +219,7 @@ public int compareTo(InnerStruct other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetField0()).compareTo(other.isSetField0()); + lastComparison = java.lang.Boolean.compare(isSetField0(), other.isSetField0()); if (lastComparison != 0) { return lastComparison; } diff --git a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde/test/ThriftTestObj.java b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde/test/ThriftTestObj.java index c21a84c2b109..a61d7ff10b3c 100644 --- a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde/test/ThriftTestObj.java +++ b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde/test/ThriftTestObj.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.serde.test; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class ThriftTestObj 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("ThriftTestObj"); @@ -300,8 +300,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ThriftTestObj) return this.equals((ThriftTestObj)that); return false; @@ -368,7 +366,7 @@ public int compareTo(ThriftTestObj other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetField1()).compareTo(other.isSetField1()); + lastComparison = java.lang.Boolean.compare(isSetField1(), other.isSetField1()); if (lastComparison != 0) { return lastComparison; } @@ -378,7 +376,7 @@ public int compareTo(ThriftTestObj other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetField2()).compareTo(other.isSetField2()); + lastComparison = java.lang.Boolean.compare(isSetField2(), other.isSetField2()); if (lastComparison != 0) { return lastComparison; } @@ -388,7 +386,7 @@ public int compareTo(ThriftTestObj other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetField3()).compareTo(other.isSetField3()); + lastComparison = java.lang.Boolean.compare(isSetField3(), other.isSetField3()); if (lastComparison != 0) { return lastComparison; } @@ -610,7 +608,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, ThriftTestObj struct } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list5 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list5 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.field3 = new java.util.ArrayList(_list5.size); @org.apache.thrift.annotation.Nullable InnerStruct _elem6; for (int _i7 = 0; _i7 < _list5.size; ++_i7) diff --git a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/Complex.java b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/Complex.java index ab73803753b0..4369dd4f5398 100644 --- a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/Complex.java +++ b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/Complex.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.serde2.thrift.test; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class Complex 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("Complex"); @@ -751,8 +751,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Complex) return this.equals((Complex)that); return false; @@ -910,7 +908,7 @@ public int compareTo(Complex other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetAint()).compareTo(other.isSetAint()); + lastComparison = java.lang.Boolean.compare(isSetAint(), other.isSetAint()); if (lastComparison != 0) { return lastComparison; } @@ -920,7 +918,7 @@ public int compareTo(Complex other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAString()).compareTo(other.isSetAString()); + lastComparison = java.lang.Boolean.compare(isSetAString(), other.isSetAString()); if (lastComparison != 0) { return lastComparison; } @@ -930,7 +928,7 @@ public int compareTo(Complex other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLint()).compareTo(other.isSetLint()); + lastComparison = java.lang.Boolean.compare(isSetLint(), other.isSetLint()); if (lastComparison != 0) { return lastComparison; } @@ -940,7 +938,7 @@ public int compareTo(Complex other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLString()).compareTo(other.isSetLString()); + lastComparison = java.lang.Boolean.compare(isSetLString(), other.isSetLString()); if (lastComparison != 0) { return lastComparison; } @@ -950,7 +948,7 @@ public int compareTo(Complex other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLintString()).compareTo(other.isSetLintString()); + lastComparison = java.lang.Boolean.compare(isSetLintString(), other.isSetLintString()); if (lastComparison != 0) { return lastComparison; } @@ -960,7 +958,7 @@ public int compareTo(Complex other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMStringString()).compareTo(other.isSetMStringString()); + lastComparison = java.lang.Boolean.compare(isSetMStringString(), other.isSetMStringString()); if (lastComparison != 0) { return lastComparison; } @@ -970,7 +968,7 @@ public int compareTo(Complex other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAttributes()).compareTo(other.isSetAttributes()); + lastComparison = java.lang.Boolean.compare(isSetAttributes(), other.isSetAttributes()); if (lastComparison != 0) { return lastComparison; } @@ -980,7 +978,7 @@ public int compareTo(Complex other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUnionField1()).compareTo(other.isSetUnionField1()); + lastComparison = java.lang.Boolean.compare(isSetUnionField1(), other.isSetUnionField1()); if (lastComparison != 0) { return lastComparison; } @@ -990,7 +988,7 @@ public int compareTo(Complex other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUnionField2()).compareTo(other.isSetUnionField2()); + lastComparison = java.lang.Boolean.compare(isSetUnionField2(), other.isSetUnionField2()); if (lastComparison != 0) { return lastComparison; } @@ -1000,7 +998,7 @@ public int compareTo(Complex other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUnionField3()).compareTo(other.isSetUnionField3()); + lastComparison = java.lang.Boolean.compare(isSetUnionField3(), other.isSetUnionField3()); if (lastComparison != 0) { return lastComparison; } @@ -1569,7 +1567,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Complex struct) thro } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list57 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, iprot.readI32()); + org.apache.thrift.protocol.TList _list57 = iprot.readListBegin(org.apache.thrift.protocol.TType.I32); struct.lint = new java.util.ArrayList(_list57.size); int _elem58; for (int _i59 = 0; _i59 < _list57.size; ++_i59) @@ -1582,7 +1580,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Complex struct) thro } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list60 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list60 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.lString = new java.util.ArrayList(_list60.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem61; for (int _i62 = 0; _i62 < _list60.size; ++_i62) @@ -1595,7 +1593,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Complex struct) thro } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list63 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list63 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.lintString = new java.util.ArrayList(_list63.size); @org.apache.thrift.annotation.Nullable IntString _elem64; for (int _i65 = 0; _i65 < _list63.size; ++_i65) @@ -1609,7 +1607,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Complex struct) thro } if (incoming.get(5)) { { - org.apache.thrift.protocol.TMap _map66 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map66 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.mStringString = new java.util.HashMap(2*_map66.size); @org.apache.thrift.annotation.Nullable java.lang.String _key67; @org.apache.thrift.annotation.Nullable java.lang.String _val68; @@ -1624,7 +1622,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Complex struct) thro } if (incoming.get(6)) { { - org.apache.thrift.protocol.TMap _map70 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP, iprot.readI32()); + org.apache.thrift.protocol.TMap _map70 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); struct.attributes = new java.util.HashMap>>(2*_map70.size); @org.apache.thrift.annotation.Nullable java.lang.String _key71; @org.apache.thrift.annotation.Nullable java.util.Map> _val72; @@ -1632,7 +1630,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Complex struct) thro { _key71 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map74 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP, iprot.readI32()); + org.apache.thrift.protocol.TMap _map74 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.MAP); _val72 = new java.util.HashMap>(2*_map74.size); @org.apache.thrift.annotation.Nullable java.lang.String _key75; @org.apache.thrift.annotation.Nullable java.util.Map _val76; @@ -1640,7 +1638,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Complex struct) thro { _key75 = iprot.readString(); { - org.apache.thrift.protocol.TMap _map78 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TMap _map78 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); _val76 = new java.util.HashMap(2*_map78.size); @org.apache.thrift.annotation.Nullable java.lang.String _key79; @org.apache.thrift.annotation.Nullable PropValueUnion _val80; diff --git a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/IntString.java b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/IntString.java index f0998a4413e7..b71034b5653a 100644 --- a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/IntString.java +++ b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/IntString.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.serde2.thrift.test; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class IntString 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("IntString"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof IntString) return this.equals((IntString)that); return false; @@ -344,7 +342,7 @@ public int compareTo(IntString other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMyint()).compareTo(other.isSetMyint()); + lastComparison = java.lang.Boolean.compare(isSetMyint(), other.isSetMyint()); if (lastComparison != 0) { return lastComparison; } @@ -354,7 +352,7 @@ public int compareTo(IntString other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMyString()).compareTo(other.isSetMyString()); + lastComparison = java.lang.Boolean.compare(isSetMyString(), other.isSetMyString()); if (lastComparison != 0) { return lastComparison; } @@ -364,7 +362,7 @@ public int compareTo(IntString other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUnderscore_int()).compareTo(other.isSetUnderscore_int()); + lastComparison = java.lang.Boolean.compare(isSetUnderscore_int(), other.isSetUnderscore_int()); if (lastComparison != 0) { return lastComparison; } diff --git a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/MegaStruct.java b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/MegaStruct.java index b82fc008f385..5acebcde22a9 100644 --- a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/MegaStruct.java +++ b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/MegaStruct.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.serde2.thrift.test; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class MegaStruct 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("MegaStruct"); @@ -1350,8 +1350,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof MegaStruct) return this.equals((MegaStruct)that); return false; @@ -1641,7 +1639,7 @@ public int compareTo(MegaStruct other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMy_bool()).compareTo(other.isSetMy_bool()); + lastComparison = java.lang.Boolean.compare(isSetMy_bool(), other.isSetMy_bool()); if (lastComparison != 0) { return lastComparison; } @@ -1651,7 +1649,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_byte()).compareTo(other.isSetMy_byte()); + lastComparison = java.lang.Boolean.compare(isSetMy_byte(), other.isSetMy_byte()); if (lastComparison != 0) { return lastComparison; } @@ -1661,7 +1659,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_16bit_int()).compareTo(other.isSetMy_16bit_int()); + lastComparison = java.lang.Boolean.compare(isSetMy_16bit_int(), other.isSetMy_16bit_int()); if (lastComparison != 0) { return lastComparison; } @@ -1671,7 +1669,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_32bit_int()).compareTo(other.isSetMy_32bit_int()); + lastComparison = java.lang.Boolean.compare(isSetMy_32bit_int(), other.isSetMy_32bit_int()); if (lastComparison != 0) { return lastComparison; } @@ -1681,7 +1679,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_64bit_int()).compareTo(other.isSetMy_64bit_int()); + lastComparison = java.lang.Boolean.compare(isSetMy_64bit_int(), other.isSetMy_64bit_int()); if (lastComparison != 0) { return lastComparison; } @@ -1691,7 +1689,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_double()).compareTo(other.isSetMy_double()); + lastComparison = java.lang.Boolean.compare(isSetMy_double(), other.isSetMy_double()); if (lastComparison != 0) { return lastComparison; } @@ -1701,7 +1699,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_string()).compareTo(other.isSetMy_string()); + lastComparison = java.lang.Boolean.compare(isSetMy_string(), other.isSetMy_string()); if (lastComparison != 0) { return lastComparison; } @@ -1711,7 +1709,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_binary()).compareTo(other.isSetMy_binary()); + lastComparison = java.lang.Boolean.compare(isSetMy_binary(), other.isSetMy_binary()); if (lastComparison != 0) { return lastComparison; } @@ -1721,7 +1719,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_string_string_map()).compareTo(other.isSetMy_string_string_map()); + lastComparison = java.lang.Boolean.compare(isSetMy_string_string_map(), other.isSetMy_string_string_map()); if (lastComparison != 0) { return lastComparison; } @@ -1731,7 +1729,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_string_enum_map()).compareTo(other.isSetMy_string_enum_map()); + lastComparison = java.lang.Boolean.compare(isSetMy_string_enum_map(), other.isSetMy_string_enum_map()); if (lastComparison != 0) { return lastComparison; } @@ -1741,7 +1739,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_enum_string_map()).compareTo(other.isSetMy_enum_string_map()); + lastComparison = java.lang.Boolean.compare(isSetMy_enum_string_map(), other.isSetMy_enum_string_map()); if (lastComparison != 0) { return lastComparison; } @@ -1751,7 +1749,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_enum_struct_map()).compareTo(other.isSetMy_enum_struct_map()); + lastComparison = java.lang.Boolean.compare(isSetMy_enum_struct_map(), other.isSetMy_enum_struct_map()); if (lastComparison != 0) { return lastComparison; } @@ -1761,7 +1759,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_enum_stringlist_map()).compareTo(other.isSetMy_enum_stringlist_map()); + lastComparison = java.lang.Boolean.compare(isSetMy_enum_stringlist_map(), other.isSetMy_enum_stringlist_map()); if (lastComparison != 0) { return lastComparison; } @@ -1771,7 +1769,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_enum_structlist_map()).compareTo(other.isSetMy_enum_structlist_map()); + lastComparison = java.lang.Boolean.compare(isSetMy_enum_structlist_map(), other.isSetMy_enum_structlist_map()); if (lastComparison != 0) { return lastComparison; } @@ -1781,7 +1779,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_stringlist()).compareTo(other.isSetMy_stringlist()); + lastComparison = java.lang.Boolean.compare(isSetMy_stringlist(), other.isSetMy_stringlist()); if (lastComparison != 0) { return lastComparison; } @@ -1791,7 +1789,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_structlist()).compareTo(other.isSetMy_structlist()); + lastComparison = java.lang.Boolean.compare(isSetMy_structlist(), other.isSetMy_structlist()); if (lastComparison != 0) { return lastComparison; } @@ -1801,7 +1799,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_enumlist()).compareTo(other.isSetMy_enumlist()); + lastComparison = java.lang.Boolean.compare(isSetMy_enumlist(), other.isSetMy_enumlist()); if (lastComparison != 0) { return lastComparison; } @@ -1811,7 +1809,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_stringset()).compareTo(other.isSetMy_stringset()); + lastComparison = java.lang.Boolean.compare(isSetMy_stringset(), other.isSetMy_stringset()); if (lastComparison != 0) { return lastComparison; } @@ -1821,7 +1819,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_enumset()).compareTo(other.isSetMy_enumset()); + lastComparison = java.lang.Boolean.compare(isSetMy_enumset(), other.isSetMy_enumset()); if (lastComparison != 0) { return lastComparison; } @@ -1831,7 +1829,7 @@ public int compareTo(MegaStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_structset()).compareTo(other.isSetMy_structset()); + lastComparison = java.lang.Boolean.compare(isSetMy_structset(), other.isSetMy_structset()); if (lastComparison != 0) { return lastComparison; } @@ -2930,7 +2928,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t } if (incoming.get(8)) { { - org.apache.thrift.protocol.TMap _map76 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map76 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.my_string_string_map = new java.util.HashMap(2*_map76.size); @org.apache.thrift.annotation.Nullable java.lang.String _key77; @org.apache.thrift.annotation.Nullable java.lang.String _val78; @@ -2945,7 +2943,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t } if (incoming.get(9)) { { - org.apache.thrift.protocol.TMap _map80 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I32, iprot.readI32()); + org.apache.thrift.protocol.TMap _map80 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I32); struct.my_string_enum_map = new java.util.HashMap(2*_map80.size); @org.apache.thrift.annotation.Nullable java.lang.String _key81; @org.apache.thrift.annotation.Nullable MyEnum _val82; @@ -2960,7 +2958,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t } if (incoming.get(10)) { { - org.apache.thrift.protocol.TMap _map84 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map84 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.STRING); struct.my_enum_string_map = new java.util.EnumMap(MyEnum.class); @org.apache.thrift.annotation.Nullable MyEnum _key85; @org.apache.thrift.annotation.Nullable java.lang.String _val86; @@ -2978,7 +2976,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t } if (incoming.get(11)) { { - org.apache.thrift.protocol.TMap _map88 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TMap _map88 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.STRUCT); struct.my_enum_struct_map = new java.util.EnumMap(MyEnum.class); @org.apache.thrift.annotation.Nullable MyEnum _key89; @org.apache.thrift.annotation.Nullable MiniStruct _val90; @@ -2997,7 +2995,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t } if (incoming.get(12)) { { - org.apache.thrift.protocol.TMap _map92 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.LIST, iprot.readI32()); + org.apache.thrift.protocol.TMap _map92 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.LIST); struct.my_enum_stringlist_map = new java.util.EnumMap>(MyEnum.class); @org.apache.thrift.annotation.Nullable MyEnum _key93; @org.apache.thrift.annotation.Nullable java.util.List _val94; @@ -3005,7 +3003,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t { _key93 = org.apache.hadoop.hive.serde2.thrift.test.MyEnum.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TList _list96 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list96 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); _val94 = new java.util.ArrayList(_list96.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem97; for (int _i98 = 0; _i98 < _list96.size; ++_i98) @@ -3024,7 +3022,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t } if (incoming.get(13)) { { - org.apache.thrift.protocol.TMap _map99 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.LIST, iprot.readI32()); + org.apache.thrift.protocol.TMap _map99 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.LIST); struct.my_enum_structlist_map = new java.util.EnumMap>(MyEnum.class); @org.apache.thrift.annotation.Nullable MyEnum _key100; @org.apache.thrift.annotation.Nullable java.util.List _val101; @@ -3032,7 +3030,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t { _key100 = org.apache.hadoop.hive.serde2.thrift.test.MyEnum.findByValue(iprot.readI32()); { - org.apache.thrift.protocol.TList _list103 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list103 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); _val101 = new java.util.ArrayList(_list103.size); @org.apache.thrift.annotation.Nullable MiniStruct _elem104; for (int _i105 = 0; _i105 < _list103.size; ++_i105) @@ -3052,7 +3050,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t } if (incoming.get(14)) { { - org.apache.thrift.protocol.TList _list106 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list106 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.my_stringlist = new java.util.ArrayList(_list106.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem107; for (int _i108 = 0; _i108 < _list106.size; ++_i108) @@ -3065,7 +3063,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t } if (incoming.get(15)) { { - org.apache.thrift.protocol.TList _list109 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list109 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.my_structlist = new java.util.ArrayList(_list109.size); @org.apache.thrift.annotation.Nullable MiniStruct _elem110; for (int _i111 = 0; _i111 < _list109.size; ++_i111) @@ -3079,7 +3077,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t } if (incoming.get(16)) { { - org.apache.thrift.protocol.TList _list112 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, iprot.readI32()); + org.apache.thrift.protocol.TList _list112 = iprot.readListBegin(org.apache.thrift.protocol.TType.I32); struct.my_enumlist = new java.util.ArrayList(_list112.size); @org.apache.thrift.annotation.Nullable MyEnum _elem113; for (int _i114 = 0; _i114 < _list112.size; ++_i114) @@ -3095,7 +3093,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t } if (incoming.get(17)) { { - org.apache.thrift.protocol.TSet _set115 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TSet _set115 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); struct.my_stringset = new java.util.HashSet(2*_set115.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem116; for (int _i117 = 0; _i117 < _set115.size; ++_i117) @@ -3108,7 +3106,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t } if (incoming.get(18)) { { - org.apache.thrift.protocol.TSet _set118 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I32, iprot.readI32()); + org.apache.thrift.protocol.TSet _set118 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I32); struct.my_enumset = java.util.EnumSet.noneOf(MyEnum.class); @org.apache.thrift.annotation.Nullable MyEnum _elem119; for (int _i120 = 0; _i120 < _set118.size; ++_i120) @@ -3124,7 +3122,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, MegaStruct struct) t } if (incoming.get(19)) { { - org.apache.thrift.protocol.TSet _set121 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TSet _set121 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); struct.my_structset = new java.util.HashSet(2*_set121.size); @org.apache.thrift.annotation.Nullable MiniStruct _elem122; for (int _i123 = 0; _i123 < _set121.size; ++_i123) diff --git a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/MiniStruct.java b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/MiniStruct.java index 172a1b2624ea..fd7ff2a67fe2 100644 --- a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/MiniStruct.java +++ b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/MiniStruct.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.serde2.thrift.test; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class MiniStruct 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("MiniStruct"); @@ -232,8 +232,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof MiniStruct) return this.equals((MiniStruct)that); return false; @@ -289,7 +287,7 @@ public int compareTo(MiniStruct other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMy_string()).compareTo(other.isSetMy_string()); + lastComparison = java.lang.Boolean.compare(isSetMy_string(), other.isSetMy_string()); if (lastComparison != 0) { return lastComparison; } @@ -299,7 +297,7 @@ public int compareTo(MiniStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMy_enum()).compareTo(other.isSetMy_enum()); + lastComparison = java.lang.Boolean.compare(isSetMy_enum(), other.isSetMy_enum()); if (lastComparison != 0) { return lastComparison; } diff --git a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/MyEnum.java b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/MyEnum.java index 5ea048c2dfce..a56eca6289c9 100644 --- a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/MyEnum.java +++ b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/MyEnum.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.serde2.thrift.test; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum MyEnum implements org.apache.thrift.TEnum { LLAMA(1), ALPACA(2); diff --git a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/PropValueUnion.java b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/PropValueUnion.java index 172fba8ed62b..8621ceb7aadf 100644 --- a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/PropValueUnion.java +++ b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/PropValueUnion.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.serde2.thrift.test; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class PropValueUnion extends org.apache.thrift.TUnion { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("PropValueUnion"); private static final org.apache.thrift.protocol.TField INT_VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("intValue", org.apache.thrift.protocol.TType.I32, (short)1); @@ -558,9 +558,8 @@ public java.lang.String getStringValue() { } public void setStringValue(java.lang.String value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.STRING_VALUE; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.STRING_VALUE"); } public double getDoubleValue() { @@ -598,9 +597,8 @@ public java.util.List getLString() { } public void setLString(java.util.List value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.L_STRING; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.L_STRING"); } public java.util.Map getUnionMStringString() { @@ -612,9 +610,8 @@ public java.util.Map getUnionMStringString() } public void setUnionMStringString(java.util.Map value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.UNION_MSTRING_STRING; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.UNION_MSTRING_STRING"); } public boolean isSetIntValue() { diff --git a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/SetIntString.java b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/SetIntString.java index ddb12ddc542e..1de901233fec 100644 --- a/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/SetIntString.java +++ b/serde/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/serde2/thrift/test/SetIntString.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.serde2.thrift.test; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public class SetIntString 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("SetIntString"); @@ -249,8 +249,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SetIntString) return this.equals((SetIntString)that); return false; @@ -306,7 +304,7 @@ public int compareTo(SetIntString other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSIntString()).compareTo(other.isSetSIntString()); + lastComparison = java.lang.Boolean.compare(isSetSIntString(), other.isSetSIntString()); if (lastComparison != 0) { return lastComparison; } @@ -316,7 +314,7 @@ public int compareTo(SetIntString other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAString()).compareTo(other.isSetAString()); + lastComparison = java.lang.Boolean.compare(isSetAString(), other.isSetAString()); if (lastComparison != 0) { return lastComparison; } @@ -507,7 +505,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SetIntString struct) java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TSet _set87 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TSet _set87 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRUCT); struct.sIntString = new java.util.HashSet(2*_set87.size); @org.apache.thrift.annotation.Nullable IntString _elem88; for (int _i89 = 0; _i89 < _set87.size; ++_i89) diff --git a/serde/src/gen/thrift/gen-php/Complex.php b/serde/src/gen/thrift/gen-php/Complex.php index 630f694baef7..c134c79ef04f 100644 --- a/serde/src/gen/thrift/gen-php/Complex.php +++ b/serde/src/gen/thrift/gen-php/Complex.php @@ -1,6 +1,6 @@ array( 'type' => TType::I32, + 'class' => '\MyEnum', ), ), 11 => array( @@ -93,6 +94,7 @@ class MegaStruct 'vtype' => TType::STRING, 'key' => array( 'type' => TType::I32, + 'class' => '\MyEnum', ), 'val' => array( 'type' => TType::STRING, @@ -106,6 +108,7 @@ class MegaStruct 'vtype' => TType::STRUCT, 'key' => array( 'type' => TType::I32, + 'class' => '\MyEnum', ), 'val' => array( 'type' => TType::STRUCT, @@ -120,6 +123,7 @@ class MegaStruct 'vtype' => TType::LST, 'key' => array( 'type' => TType::I32, + 'class' => '\MyEnum', ), 'val' => array( 'type' => TType::LST, @@ -137,6 +141,7 @@ class MegaStruct 'vtype' => TType::LST, 'key' => array( 'type' => TType::I32, + 'class' => '\MyEnum', ), 'val' => array( 'type' => TType::LST, @@ -173,6 +178,7 @@ class MegaStruct 'etype' => TType::I32, 'elem' => array( 'type' => TType::I32, + 'class' => '\MyEnum', ), ), 18 => array( @@ -191,6 +197,7 @@ class MegaStruct 'etype' => TType::I32, 'elem' => array( 'type' => TType::I32, + 'class' => '\MyEnum', ), ), 20 => array( diff --git a/serde/src/gen/thrift/gen-php/MiniStruct.php b/serde/src/gen/thrift/gen-php/MiniStruct.php index 8caef4c4b5e7..67e1e155fd11 100644 --- a/serde/src/gen/thrift/gen-php/MiniStruct.php +++ b/serde/src/gen/thrift/gen-php/MiniStruct.php @@ -1,6 +1,6 @@ 'my_enum', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\MyEnum', ), ); diff --git a/serde/src/gen/thrift/gen-php/MyEnum.php b/serde/src/gen/thrift/gen-php/MyEnum.php index 2e039b88ef28..ce909910035b 100644 --- a/serde/src/gen/thrift/gen-php/MyEnum.php +++ b/serde/src/gen/thrift/gen-php/MyEnum.php @@ -1,6 +1,6 @@ row; private BytesWritable serializedBytesWritable = new BytesWritable(); private ByteStream.Output output = new ByteStream.Output(); - private TProtocol protocol = new TCompactProtocol(new TIOStreamTransport(output)); + private TProtocol protocol; private ThriftFormatter thriftFormatter = new ThriftFormatter(); private int MAX_BUFFERED_ROWS; private int count; @@ -71,6 +72,11 @@ public void initialize(Configuration configuration, Properties tableProperties, throws SerDeException { super.initialize(configuration, tableProperties, partitionProperties); + try { + protocol = new TCompactProtocol(new TIOStreamTransport(output)); + } catch (TTransportException e) { + throw new SerDeException(e); + } // Get column names MAX_BUFFERED_ROWS = HiveConf.getIntVar(configuration, HiveConf.ConfVars.HIVE_SERVER2_THRIFT_RESULTSET_DEFAULT_FETCH_SIZE); diff --git a/serde/src/test/org/apache/hadoop/hive/serde2/TestTCTLSeparatedProtocol.java b/serde/src/test/org/apache/hadoop/hive/serde2/TestTCTLSeparatedProtocol.java index 177944cef99c..d5d65661365a 100644 --- a/serde/src/test/org/apache/hadoop/hive/serde2/TestTCTLSeparatedProtocol.java +++ b/serde/src/test/org/apache/hadoop/hive/serde2/TestTCTLSeparatedProtocol.java @@ -25,6 +25,7 @@ import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hive.serde.serdeConstants; import org.apache.hadoop.hive.serde2.thrift.TCTLSeparatedProtocol; +import org.apache.thrift.TConfiguration; import org.apache.thrift.protocol.TField; import org.apache.thrift.protocol.TList; import org.apache.thrift.protocol.TMap; @@ -165,7 +166,7 @@ public void testWrites() throws Exception { prot.writeStructEnd(); trans.flush(); - byte[] b = new byte[3 * 1024]; + byte[] b = new byte[1024]; int len = trans.read(b, 0, b.length); String test = new String(b, 0, len); @@ -428,7 +429,7 @@ public void testNulls() throws Exception { prot.writeStructEnd(); - byte b[] = new byte[3 * 1024]; + byte b[] = new byte[1024]; int len = trans.read(b, 0, b.length); String written = new String(b, 0, len); @@ -510,6 +511,21 @@ public int read(byte[] buf, int off, int len) throws TTransportException { @Override public void write(byte[] buf, int off, int len) throws TTransportException { } + + @Override + public TConfiguration getConfiguration() { + return null; + } + + @Override + public void updateKnownMessageSize(long l) throws TTransportException { + + } + + @Override + public void checkReadBytesAvailable(long l) throws TTransportException { + + } }); separatedProtocol.initialize(null, new Properties()); try { diff --git a/serde/src/test/org/apache/hadoop/hive/serde2/thrift_test/CreateSequenceFile.java b/serde/src/test/org/apache/hadoop/hive/serde2/thrift_test/CreateSequenceFile.java index aacd978e60a6..b8a2432d4534 100644 --- a/serde/src/test/org/apache/hadoop/hive/serde2/thrift_test/CreateSequenceFile.java +++ b/serde/src/test/org/apache/hadoop/hive/serde2/thrift_test/CreateSequenceFile.java @@ -40,6 +40,7 @@ import org.apache.thrift.protocol.TProtocol; import org.apache.thrift.protocol.TProtocolFactory; import org.apache.thrift.transport.TIOStreamTransport; +import org.apache.thrift.transport.TTransportException; /** * CreateSequenceFile. @@ -67,7 +68,12 @@ public static class ThriftSerializer { public ThriftSerializer() { bos = new ByteStream.Output(); - TIOStreamTransport outTransport = new TIOStreamTransport(bos); + TIOStreamTransport outTransport = null; + try { + outTransport = new TIOStreamTransport(bos); + } catch (TTransportException e) { + e.printStackTrace(); + } TProtocolFactory outFactory = new TBinaryProtocol.Factory(); outProtocol = outFactory.getProtocol(outTransport); } diff --git a/service-rpc/src/gen/thrift/gen-cpp/TCLIService.cpp b/service-rpc/src/gen/thrift/gen-cpp/TCLIService.cpp index 60c70e296d81..01f3933b38d0 100644 --- a/service-rpc/src/gen/thrift/gen-cpp/TCLIService.cpp +++ b/service-rpc/src/gen/thrift/gen-cpp/TCLIService.cpp @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -5664,13 +5664,13 @@ bool TCLIServiceProcessor::dispatchCall(::apache::thrift::protocol::TProtocol* i void TCLIServiceProcessor::process_OpenSession(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.OpenSession", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.OpenSession"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.OpenSession"); } @@ -5679,7 +5679,7 @@ void TCLIServiceProcessor::process_OpenSession(int32_t seqid, ::apache::thrift:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.OpenSession", bytes); } @@ -5688,7 +5688,7 @@ void TCLIServiceProcessor::process_OpenSession(int32_t seqid, ::apache::thrift:: iface_->OpenSession(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.OpenSession"); } @@ -5701,7 +5701,7 @@ void TCLIServiceProcessor::process_OpenSession(int32_t seqid, ::apache::thrift:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.OpenSession"); } @@ -5711,20 +5711,20 @@ void TCLIServiceProcessor::process_OpenSession(int32_t seqid, ::apache::thrift:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.OpenSession", bytes); } } void TCLIServiceProcessor::process_CloseSession(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.CloseSession", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.CloseSession"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.CloseSession"); } @@ -5733,7 +5733,7 @@ void TCLIServiceProcessor::process_CloseSession(int32_t seqid, ::apache::thrift: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.CloseSession", bytes); } @@ -5742,7 +5742,7 @@ void TCLIServiceProcessor::process_CloseSession(int32_t seqid, ::apache::thrift: iface_->CloseSession(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.CloseSession"); } @@ -5755,7 +5755,7 @@ void TCLIServiceProcessor::process_CloseSession(int32_t seqid, ::apache::thrift: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.CloseSession"); } @@ -5765,20 +5765,20 @@ void TCLIServiceProcessor::process_CloseSession(int32_t seqid, ::apache::thrift: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.CloseSession", bytes); } } void TCLIServiceProcessor::process_GetInfo(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetInfo", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetInfo"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetInfo"); } @@ -5787,7 +5787,7 @@ void TCLIServiceProcessor::process_GetInfo(int32_t seqid, ::apache::thrift::prot iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetInfo", bytes); } @@ -5796,7 +5796,7 @@ void TCLIServiceProcessor::process_GetInfo(int32_t seqid, ::apache::thrift::prot iface_->GetInfo(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetInfo"); } @@ -5809,7 +5809,7 @@ void TCLIServiceProcessor::process_GetInfo(int32_t seqid, ::apache::thrift::prot return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetInfo"); } @@ -5819,20 +5819,20 @@ void TCLIServiceProcessor::process_GetInfo(int32_t seqid, ::apache::thrift::prot bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetInfo", bytes); } } void TCLIServiceProcessor::process_ExecuteStatement(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.ExecuteStatement", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.ExecuteStatement"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.ExecuteStatement"); } @@ -5841,7 +5841,7 @@ void TCLIServiceProcessor::process_ExecuteStatement(int32_t seqid, ::apache::thr iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.ExecuteStatement", bytes); } @@ -5850,7 +5850,7 @@ void TCLIServiceProcessor::process_ExecuteStatement(int32_t seqid, ::apache::thr iface_->ExecuteStatement(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.ExecuteStatement"); } @@ -5863,7 +5863,7 @@ void TCLIServiceProcessor::process_ExecuteStatement(int32_t seqid, ::apache::thr return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.ExecuteStatement"); } @@ -5873,20 +5873,20 @@ void TCLIServiceProcessor::process_ExecuteStatement(int32_t seqid, ::apache::thr bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.ExecuteStatement", bytes); } } void TCLIServiceProcessor::process_GetTypeInfo(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetTypeInfo", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetTypeInfo"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetTypeInfo"); } @@ -5895,7 +5895,7 @@ void TCLIServiceProcessor::process_GetTypeInfo(int32_t seqid, ::apache::thrift:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetTypeInfo", bytes); } @@ -5904,7 +5904,7 @@ void TCLIServiceProcessor::process_GetTypeInfo(int32_t seqid, ::apache::thrift:: iface_->GetTypeInfo(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetTypeInfo"); } @@ -5917,7 +5917,7 @@ void TCLIServiceProcessor::process_GetTypeInfo(int32_t seqid, ::apache::thrift:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetTypeInfo"); } @@ -5927,20 +5927,20 @@ void TCLIServiceProcessor::process_GetTypeInfo(int32_t seqid, ::apache::thrift:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetTypeInfo", bytes); } } void TCLIServiceProcessor::process_GetCatalogs(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetCatalogs", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetCatalogs"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetCatalogs"); } @@ -5949,7 +5949,7 @@ void TCLIServiceProcessor::process_GetCatalogs(int32_t seqid, ::apache::thrift:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetCatalogs", bytes); } @@ -5958,7 +5958,7 @@ void TCLIServiceProcessor::process_GetCatalogs(int32_t seqid, ::apache::thrift:: iface_->GetCatalogs(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetCatalogs"); } @@ -5971,7 +5971,7 @@ void TCLIServiceProcessor::process_GetCatalogs(int32_t seqid, ::apache::thrift:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetCatalogs"); } @@ -5981,20 +5981,20 @@ void TCLIServiceProcessor::process_GetCatalogs(int32_t seqid, ::apache::thrift:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetCatalogs", bytes); } } void TCLIServiceProcessor::process_GetSchemas(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetSchemas", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetSchemas"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetSchemas"); } @@ -6003,7 +6003,7 @@ void TCLIServiceProcessor::process_GetSchemas(int32_t seqid, ::apache::thrift::p iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetSchemas", bytes); } @@ -6012,7 +6012,7 @@ void TCLIServiceProcessor::process_GetSchemas(int32_t seqid, ::apache::thrift::p iface_->GetSchemas(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetSchemas"); } @@ -6025,7 +6025,7 @@ void TCLIServiceProcessor::process_GetSchemas(int32_t seqid, ::apache::thrift::p return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetSchemas"); } @@ -6035,20 +6035,20 @@ void TCLIServiceProcessor::process_GetSchemas(int32_t seqid, ::apache::thrift::p bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetSchemas", bytes); } } void TCLIServiceProcessor::process_GetTables(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetTables", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetTables"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetTables"); } @@ -6057,7 +6057,7 @@ void TCLIServiceProcessor::process_GetTables(int32_t seqid, ::apache::thrift::pr iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetTables", bytes); } @@ -6066,7 +6066,7 @@ void TCLIServiceProcessor::process_GetTables(int32_t seqid, ::apache::thrift::pr iface_->GetTables(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetTables"); } @@ -6079,7 +6079,7 @@ void TCLIServiceProcessor::process_GetTables(int32_t seqid, ::apache::thrift::pr return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetTables"); } @@ -6089,20 +6089,20 @@ void TCLIServiceProcessor::process_GetTables(int32_t seqid, ::apache::thrift::pr bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetTables", bytes); } } void TCLIServiceProcessor::process_GetTableTypes(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetTableTypes", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetTableTypes"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetTableTypes"); } @@ -6111,7 +6111,7 @@ void TCLIServiceProcessor::process_GetTableTypes(int32_t seqid, ::apache::thrift iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetTableTypes", bytes); } @@ -6120,7 +6120,7 @@ void TCLIServiceProcessor::process_GetTableTypes(int32_t seqid, ::apache::thrift iface_->GetTableTypes(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetTableTypes"); } @@ -6133,7 +6133,7 @@ void TCLIServiceProcessor::process_GetTableTypes(int32_t seqid, ::apache::thrift return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetTableTypes"); } @@ -6143,20 +6143,20 @@ void TCLIServiceProcessor::process_GetTableTypes(int32_t seqid, ::apache::thrift bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetTableTypes", bytes); } } void TCLIServiceProcessor::process_GetColumns(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetColumns", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetColumns"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetColumns"); } @@ -6165,7 +6165,7 @@ void TCLIServiceProcessor::process_GetColumns(int32_t seqid, ::apache::thrift::p iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetColumns", bytes); } @@ -6174,7 +6174,7 @@ void TCLIServiceProcessor::process_GetColumns(int32_t seqid, ::apache::thrift::p iface_->GetColumns(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetColumns"); } @@ -6187,7 +6187,7 @@ void TCLIServiceProcessor::process_GetColumns(int32_t seqid, ::apache::thrift::p return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetColumns"); } @@ -6197,20 +6197,20 @@ void TCLIServiceProcessor::process_GetColumns(int32_t seqid, ::apache::thrift::p bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetColumns", bytes); } } void TCLIServiceProcessor::process_GetFunctions(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetFunctions", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetFunctions"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetFunctions"); } @@ -6219,7 +6219,7 @@ void TCLIServiceProcessor::process_GetFunctions(int32_t seqid, ::apache::thrift: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetFunctions", bytes); } @@ -6228,7 +6228,7 @@ void TCLIServiceProcessor::process_GetFunctions(int32_t seqid, ::apache::thrift: iface_->GetFunctions(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetFunctions"); } @@ -6241,7 +6241,7 @@ void TCLIServiceProcessor::process_GetFunctions(int32_t seqid, ::apache::thrift: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetFunctions"); } @@ -6251,20 +6251,20 @@ void TCLIServiceProcessor::process_GetFunctions(int32_t seqid, ::apache::thrift: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetFunctions", bytes); } } void TCLIServiceProcessor::process_GetPrimaryKeys(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetPrimaryKeys", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetPrimaryKeys"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetPrimaryKeys"); } @@ -6273,7 +6273,7 @@ void TCLIServiceProcessor::process_GetPrimaryKeys(int32_t seqid, ::apache::thrif iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetPrimaryKeys", bytes); } @@ -6282,7 +6282,7 @@ void TCLIServiceProcessor::process_GetPrimaryKeys(int32_t seqid, ::apache::thrif iface_->GetPrimaryKeys(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetPrimaryKeys"); } @@ -6295,7 +6295,7 @@ void TCLIServiceProcessor::process_GetPrimaryKeys(int32_t seqid, ::apache::thrif return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetPrimaryKeys"); } @@ -6305,20 +6305,20 @@ void TCLIServiceProcessor::process_GetPrimaryKeys(int32_t seqid, ::apache::thrif bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetPrimaryKeys", bytes); } } void TCLIServiceProcessor::process_GetCrossReference(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetCrossReference", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetCrossReference"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetCrossReference"); } @@ -6327,7 +6327,7 @@ void TCLIServiceProcessor::process_GetCrossReference(int32_t seqid, ::apache::th iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetCrossReference", bytes); } @@ -6336,7 +6336,7 @@ void TCLIServiceProcessor::process_GetCrossReference(int32_t seqid, ::apache::th iface_->GetCrossReference(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetCrossReference"); } @@ -6349,7 +6349,7 @@ void TCLIServiceProcessor::process_GetCrossReference(int32_t seqid, ::apache::th return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetCrossReference"); } @@ -6359,20 +6359,20 @@ void TCLIServiceProcessor::process_GetCrossReference(int32_t seqid, ::apache::th bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetCrossReference", bytes); } } void TCLIServiceProcessor::process_GetOperationStatus(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetOperationStatus", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetOperationStatus"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetOperationStatus"); } @@ -6381,7 +6381,7 @@ void TCLIServiceProcessor::process_GetOperationStatus(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetOperationStatus", bytes); } @@ -6390,7 +6390,7 @@ void TCLIServiceProcessor::process_GetOperationStatus(int32_t seqid, ::apache::t iface_->GetOperationStatus(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetOperationStatus"); } @@ -6403,7 +6403,7 @@ void TCLIServiceProcessor::process_GetOperationStatus(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetOperationStatus"); } @@ -6413,20 +6413,20 @@ void TCLIServiceProcessor::process_GetOperationStatus(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetOperationStatus", bytes); } } void TCLIServiceProcessor::process_CancelOperation(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.CancelOperation", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.CancelOperation"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.CancelOperation"); } @@ -6435,7 +6435,7 @@ void TCLIServiceProcessor::process_CancelOperation(int32_t seqid, ::apache::thri iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.CancelOperation", bytes); } @@ -6444,7 +6444,7 @@ void TCLIServiceProcessor::process_CancelOperation(int32_t seqid, ::apache::thri iface_->CancelOperation(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.CancelOperation"); } @@ -6457,7 +6457,7 @@ void TCLIServiceProcessor::process_CancelOperation(int32_t seqid, ::apache::thri return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.CancelOperation"); } @@ -6467,20 +6467,20 @@ void TCLIServiceProcessor::process_CancelOperation(int32_t seqid, ::apache::thri bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.CancelOperation", bytes); } } void TCLIServiceProcessor::process_CloseOperation(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.CloseOperation", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.CloseOperation"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.CloseOperation"); } @@ -6489,7 +6489,7 @@ void TCLIServiceProcessor::process_CloseOperation(int32_t seqid, ::apache::thrif iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.CloseOperation", bytes); } @@ -6498,7 +6498,7 @@ void TCLIServiceProcessor::process_CloseOperation(int32_t seqid, ::apache::thrif iface_->CloseOperation(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.CloseOperation"); } @@ -6511,7 +6511,7 @@ void TCLIServiceProcessor::process_CloseOperation(int32_t seqid, ::apache::thrif return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.CloseOperation"); } @@ -6521,20 +6521,20 @@ void TCLIServiceProcessor::process_CloseOperation(int32_t seqid, ::apache::thrif bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.CloseOperation", bytes); } } void TCLIServiceProcessor::process_GetResultSetMetadata(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetResultSetMetadata", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetResultSetMetadata"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetResultSetMetadata"); } @@ -6543,7 +6543,7 @@ void TCLIServiceProcessor::process_GetResultSetMetadata(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetResultSetMetadata", bytes); } @@ -6552,7 +6552,7 @@ void TCLIServiceProcessor::process_GetResultSetMetadata(int32_t seqid, ::apache: iface_->GetResultSetMetadata(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetResultSetMetadata"); } @@ -6565,7 +6565,7 @@ void TCLIServiceProcessor::process_GetResultSetMetadata(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetResultSetMetadata"); } @@ -6575,20 +6575,20 @@ void TCLIServiceProcessor::process_GetResultSetMetadata(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetResultSetMetadata", bytes); } } void TCLIServiceProcessor::process_FetchResults(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.FetchResults", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.FetchResults"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.FetchResults"); } @@ -6597,7 +6597,7 @@ void TCLIServiceProcessor::process_FetchResults(int32_t seqid, ::apache::thrift: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.FetchResults", bytes); } @@ -6606,7 +6606,7 @@ void TCLIServiceProcessor::process_FetchResults(int32_t seqid, ::apache::thrift: iface_->FetchResults(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.FetchResults"); } @@ -6619,7 +6619,7 @@ void TCLIServiceProcessor::process_FetchResults(int32_t seqid, ::apache::thrift: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.FetchResults"); } @@ -6629,20 +6629,20 @@ void TCLIServiceProcessor::process_FetchResults(int32_t seqid, ::apache::thrift: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.FetchResults", bytes); } } void TCLIServiceProcessor::process_GetDelegationToken(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetDelegationToken", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetDelegationToken"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetDelegationToken"); } @@ -6651,7 +6651,7 @@ void TCLIServiceProcessor::process_GetDelegationToken(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetDelegationToken", bytes); } @@ -6660,7 +6660,7 @@ void TCLIServiceProcessor::process_GetDelegationToken(int32_t seqid, ::apache::t iface_->GetDelegationToken(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetDelegationToken"); } @@ -6673,7 +6673,7 @@ void TCLIServiceProcessor::process_GetDelegationToken(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetDelegationToken"); } @@ -6683,20 +6683,20 @@ void TCLIServiceProcessor::process_GetDelegationToken(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetDelegationToken", bytes); } } void TCLIServiceProcessor::process_CancelDelegationToken(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.CancelDelegationToken", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.CancelDelegationToken"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.CancelDelegationToken"); } @@ -6705,7 +6705,7 @@ void TCLIServiceProcessor::process_CancelDelegationToken(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.CancelDelegationToken", bytes); } @@ -6714,7 +6714,7 @@ void TCLIServiceProcessor::process_CancelDelegationToken(int32_t seqid, ::apache iface_->CancelDelegationToken(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.CancelDelegationToken"); } @@ -6727,7 +6727,7 @@ void TCLIServiceProcessor::process_CancelDelegationToken(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.CancelDelegationToken"); } @@ -6737,20 +6737,20 @@ void TCLIServiceProcessor::process_CancelDelegationToken(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.CancelDelegationToken", bytes); } } void TCLIServiceProcessor::process_RenewDelegationToken(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.RenewDelegationToken", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.RenewDelegationToken"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.RenewDelegationToken"); } @@ -6759,7 +6759,7 @@ void TCLIServiceProcessor::process_RenewDelegationToken(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.RenewDelegationToken", bytes); } @@ -6768,7 +6768,7 @@ void TCLIServiceProcessor::process_RenewDelegationToken(int32_t seqid, ::apache: iface_->RenewDelegationToken(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.RenewDelegationToken"); } @@ -6781,7 +6781,7 @@ void TCLIServiceProcessor::process_RenewDelegationToken(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.RenewDelegationToken"); } @@ -6791,20 +6791,20 @@ void TCLIServiceProcessor::process_RenewDelegationToken(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.RenewDelegationToken", bytes); } } void TCLIServiceProcessor::process_GetQueryId(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.GetQueryId", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.GetQueryId"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.GetQueryId"); } @@ -6813,7 +6813,7 @@ void TCLIServiceProcessor::process_GetQueryId(int32_t seqid, ::apache::thrift::p iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.GetQueryId", bytes); } @@ -6822,7 +6822,7 @@ void TCLIServiceProcessor::process_GetQueryId(int32_t seqid, ::apache::thrift::p iface_->GetQueryId(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.GetQueryId"); } @@ -6835,7 +6835,7 @@ void TCLIServiceProcessor::process_GetQueryId(int32_t seqid, ::apache::thrift::p return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.GetQueryId"); } @@ -6845,20 +6845,20 @@ void TCLIServiceProcessor::process_GetQueryId(int32_t seqid, ::apache::thrift::p bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.GetQueryId", bytes); } } void TCLIServiceProcessor::process_SetClientInfo(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("TCLIService.SetClientInfo", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "TCLIService.SetClientInfo"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "TCLIService.SetClientInfo"); } @@ -6867,7 +6867,7 @@ void TCLIServiceProcessor::process_SetClientInfo(int32_t seqid, ::apache::thrift iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "TCLIService.SetClientInfo", bytes); } @@ -6876,7 +6876,7 @@ void TCLIServiceProcessor::process_SetClientInfo(int32_t seqid, ::apache::thrift iface_->SetClientInfo(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "TCLIService.SetClientInfo"); } @@ -6889,7 +6889,7 @@ void TCLIServiceProcessor::process_SetClientInfo(int32_t seqid, ::apache::thrift return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "TCLIService.SetClientInfo"); } @@ -6899,7 +6899,7 @@ void TCLIServiceProcessor::process_SetClientInfo(int32_t seqid, ::apache::thrift bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "TCLIService.SetClientInfo", bytes); } } diff --git a/service-rpc/src/gen/thrift/gen-cpp/TCLIService.h b/service-rpc/src/gen/thrift/gen-cpp/TCLIService.h index 7199f3755845..849624c08ea7 100644 --- a/service-rpc/src/gen/thrift/gen-cpp/TCLIService.h +++ b/service-rpc/src/gen/thrift/gen-cpp/TCLIService.h @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/service-rpc/src/gen/thrift/gen-cpp/TCLIService_constants.cpp b/service-rpc/src/gen/thrift/gen-cpp/TCLIService_constants.cpp index 07145eb0e4b0..431283f0f946 100644 --- a/service-rpc/src/gen/thrift/gen-cpp/TCLIService_constants.cpp +++ b/service-rpc/src/gen/thrift/gen-cpp/TCLIService_constants.cpp @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/service-rpc/src/gen/thrift/gen-cpp/TCLIService_constants.h b/service-rpc/src/gen/thrift/gen-cpp/TCLIService_constants.h index 78e3d32e91c4..71c7c15f0f6d 100644 --- a/service-rpc/src/gen/thrift/gen-cpp/TCLIService_constants.h +++ b/service-rpc/src/gen/thrift/gen-cpp/TCLIService_constants.h @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/service-rpc/src/gen/thrift/gen-cpp/TCLIService_types.cpp b/service-rpc/src/gen/thrift/gen-cpp/TCLIService_types.cpp index 40252b526c91..9a46449789aa 100644 --- a/service-rpc/src/gen/thrift/gen-cpp/TCLIService_types.cpp +++ b/service-rpc/src/gen/thrift/gen-cpp/TCLIService_types.cpp @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -39,7 +39,7 @@ const char* _kTProtocolVersionNames[] = { "HIVE_CLI_SERVICE_PROTOCOL_V10", "HIVE_CLI_SERVICE_PROTOCOL_V11" }; -const std::map _TProtocolVersion_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(11, _kTProtocolVersionValues, _kTProtocolVersionNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _TProtocolVersion_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(11, _kTProtocolVersionValues, _kTProtocolVersionNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const TProtocolVersion::type& val) { std::map::const_iterator it = _TProtocolVersion_VALUES_TO_NAMES.find(val); @@ -110,7 +110,7 @@ const char* _kTTypeIdNames[] = { "INTERVAL_DAY_TIME_TYPE", "TIMESTAMPLOCALTZ_TYPE" }; -const std::map _TTypeId_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(23, _kTTypeIdValues, _kTTypeIdNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _TTypeId_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(23, _kTTypeIdValues, _kTTypeIdNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const TTypeId::type& val) { std::map::const_iterator it = _TTypeId_VALUES_TO_NAMES.find(val); @@ -145,7 +145,7 @@ const char* _kTStatusCodeNames[] = { "ERROR_STATUS", "INVALID_HANDLE_STATUS" }; -const std::map _TStatusCode_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(5, _kTStatusCodeValues, _kTStatusCodeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _TStatusCode_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(5, _kTStatusCodeValues, _kTStatusCodeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const TStatusCode::type& val) { std::map::const_iterator it = _TStatusCode_VALUES_TO_NAMES.find(val); @@ -188,7 +188,7 @@ const char* _kTOperationStateNames[] = { "PENDING_STATE", "TIMEDOUT_STATE" }; -const std::map _TOperationState_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(9, _kTOperationStateValues, _kTOperationStateNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _TOperationState_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(9, _kTOperationStateValues, _kTOperationStateNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const TOperationState::type& val) { std::map::const_iterator it = _TOperationState_VALUES_TO_NAMES.find(val); @@ -233,7 +233,7 @@ const char* _kTOperationTypeNames[] = { "UNKNOWN", "PROCEDURAL_SQL" }; -const std::map _TOperationType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(10, _kTOperationTypeValues, _kTOperationTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _TOperationType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(10, _kTOperationTypeValues, _kTOperationTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const TOperationType::type& val) { std::map::const_iterator it = _TOperationType_VALUES_TO_NAMES.find(val); @@ -354,7 +354,7 @@ const char* _kTGetInfoTypeNames[] = { "CLI_MAX_IDENTIFIER_LEN", "CLI_ODBC_KEYWORDS" }; -const std::map _TGetInfoType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(48, _kTGetInfoTypeValues, _kTGetInfoTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _TGetInfoType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(48, _kTGetInfoTypeValues, _kTGetInfoTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const TGetInfoType::type& val) { std::map::const_iterator it = _TGetInfoType_VALUES_TO_NAMES.find(val); @@ -391,7 +391,7 @@ const char* _kTFetchOrientationNames[] = { "FETCH_FIRST", "FETCH_LAST" }; -const std::map _TFetchOrientation_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(6, _kTFetchOrientationValues, _kTFetchOrientationNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _TFetchOrientation_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(6, _kTFetchOrientationValues, _kTFetchOrientationNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const TFetchOrientation::type& val) { std::map::const_iterator it = _TFetchOrientation_VALUES_TO_NAMES.find(val); @@ -422,7 +422,7 @@ const char* _kTJobExecutionStatusNames[] = { "COMPLETE", "NOT_AVAILABLE" }; -const std::map _TJobExecutionStatus_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kTJobExecutionStatusValues, _kTJobExecutionStatusNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _TJobExecutionStatus_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kTJobExecutionStatusValues, _kTJobExecutionStatusNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const TJobExecutionStatus::type& val) { std::map::const_iterator it = _TJobExecutionStatus_VALUES_TO_NAMES.find(val); diff --git a/service-rpc/src/gen/thrift/gen-cpp/TCLIService_types.h b/service-rpc/src/gen/thrift/gen-cpp/TCLIService_types.h index c4dbce8eb708..af4094dc4032 100644 --- a/service-rpc/src/gen/thrift/gen-cpp/TCLIService_types.h +++ b/service-rpc/src/gen/thrift/gen-cpp/TCLIService_types.h @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -500,6 +500,10 @@ class TPrimitiveTypeEntry : public virtual ::apache::thrift::TBase { } virtual ~TPrimitiveTypeEntry() noexcept; + /** + * + * @see TTypeId + */ TTypeId::type type; TTypeQualifiers typeQualifiers; @@ -1886,6 +1890,10 @@ class TStatus : public virtual ::apache::thrift::TBase { } virtual ~TStatus() noexcept; + /** + * + * @see TStatusCode + */ TStatusCode::type statusCode; std::vector infoMessages; std::string sqlState; @@ -2034,6 +2042,10 @@ class TOperationHandle : public virtual ::apache::thrift::TBase { virtual ~TOperationHandle() noexcept; THandleIdentifier operationId; + /** + * + * @see TOperationType + */ TOperationType::type operationType; bool hasResultSet; double modifiedRowCount; @@ -2096,6 +2108,10 @@ class TOpenSessionReq : public virtual ::apache::thrift::TBase { } virtual ~TOpenSessionReq() noexcept; + /** + * + * @see TProtocolVersion + */ TProtocolVersion::type client_protocol; std::string username; std::string password; @@ -2163,6 +2179,10 @@ class TOpenSessionResp : public virtual ::apache::thrift::TBase { virtual ~TOpenSessionResp() noexcept; TStatus status; + /** + * + * @see TProtocolVersion + */ TProtocolVersion::type serverProtocolVersion; TSessionHandle sessionHandle; std::map configuration; @@ -2461,6 +2481,10 @@ class TGetInfoReq : public virtual ::apache::thrift::TBase { virtual ~TGetInfoReq() noexcept; TSessionHandle sessionHandle; + /** + * + * @see TGetInfoType + */ TGetInfoType::type infoType; void __set_sessionHandle(const TSessionHandle& val); @@ -3692,6 +3716,10 @@ class TGetOperationStatusResp : public virtual ::apache::thrift::TBase { virtual ~TGetOperationStatusResp() noexcept; TStatus status; + /** + * + * @see TOperationState + */ TOperationState::type operationState; std::string sqlState; int32_t errorCode; @@ -4035,6 +4063,10 @@ class TFetchResultsReq : public virtual ::apache::thrift::TBase { virtual ~TFetchResultsReq() noexcept; TOperationHandle operationHandle; + /** + * + * @see TFetchOrientation + */ TFetchOrientation::type orientation; int64_t maxRows; int16_t fetchType; @@ -4398,6 +4430,10 @@ class TProgressUpdateResp : public virtual ::apache::thrift::TBase { std::vector headerNames; std::vector > rows; double progressedPercentage; + /** + * + * @see TJobExecutionStatus + */ TJobExecutionStatus::type status; std::string footerSummary; int64_t startTime; diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TArrayTypeEntry.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TArrayTypeEntry.java index e54331ef2c25..2fdb5a0481dd 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TArrayTypeEntry.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TArrayTypeEntry.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TArrayTypeEntry 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("TArrayTypeEntry"); @@ -179,8 +179,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TArrayTypeEntry) return this.equals((TArrayTypeEntry)that); return false; @@ -221,7 +219,7 @@ public int compareTo(TArrayTypeEntry other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetObjectTypePtr()).compareTo(other.isSetObjectTypePtr()); + lastComparison = java.lang.Boolean.compare(isSetObjectTypePtr(), other.isSetObjectTypePtr()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TBinaryColumn.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TBinaryColumn.java index f0dfeb4b2657..16a720baaf05 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TBinaryColumn.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TBinaryColumn.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TBinaryColumn 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("TBinaryColumn"); @@ -258,8 +258,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TBinaryColumn) return this.equals((TBinaryColumn)that); return false; @@ -315,7 +313,7 @@ public int compareTo(TBinaryColumn other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValues()).compareTo(other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); if (lastComparison != 0) { return lastComparison; } @@ -325,7 +323,7 @@ public int compareTo(TBinaryColumn other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNulls()).compareTo(other.isSetNulls()); + lastComparison = java.lang.Boolean.compare(isSetNulls(), other.isSetNulls()); if (lastComparison != 0) { return lastComparison; } @@ -509,7 +507,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TBinaryColumn struc public void read(org.apache.thrift.protocol.TProtocol prot, TBinaryColumn struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list115 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list115 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.values = new java.util.ArrayList(_list115.size); @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem116; for (int _i117 = 0; _i117 < _list115.size; ++_i117) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TBoolColumn.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TBoolColumn.java index 62b0a47e7202..84e2413c9bd9 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TBoolColumn.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TBoolColumn.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TBoolColumn 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("TBoolColumn"); @@ -258,8 +258,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TBoolColumn) return this.equals((TBoolColumn)that); return false; @@ -315,7 +313,7 @@ public int compareTo(TBoolColumn other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValues()).compareTo(other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); if (lastComparison != 0) { return lastComparison; } @@ -325,7 +323,7 @@ public int compareTo(TBoolColumn other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNulls()).compareTo(other.isSetNulls()); + lastComparison = java.lang.Boolean.compare(isSetNulls(), other.isSetNulls()); if (lastComparison != 0) { return lastComparison; } @@ -509,7 +507,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TBoolColumn struct) public void read(org.apache.thrift.protocol.TProtocol prot, TBoolColumn struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list59 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.BOOL, iprot.readI32()); + org.apache.thrift.protocol.TList _list59 = iprot.readListBegin(org.apache.thrift.protocol.TType.BOOL); struct.values = new java.util.ArrayList(_list59.size); boolean _elem60; for (int _i61 = 0; _i61 < _list59.size; ++_i61) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TBoolValue.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TBoolValue.java index 79685a4f92f9..58f7bff09a0c 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TBoolValue.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TBoolValue.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TBoolValue 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("TBoolValue"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TBoolValue) return this.equals((TBoolValue)that); return false; @@ -216,7 +214,7 @@ public int compareTo(TBoolValue other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValue()).compareTo(other.isSetValue()); + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TByteColumn.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TByteColumn.java index 6f58348df1a8..43dafeacd984 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TByteColumn.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TByteColumn.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TByteColumn 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("TByteColumn"); @@ -258,8 +258,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TByteColumn) return this.equals((TByteColumn)that); return false; @@ -315,7 +313,7 @@ public int compareTo(TByteColumn other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValues()).compareTo(other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); if (lastComparison != 0) { return lastComparison; } @@ -325,7 +323,7 @@ public int compareTo(TByteColumn other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNulls()).compareTo(other.isSetNulls()); + lastComparison = java.lang.Boolean.compare(isSetNulls(), other.isSetNulls()); if (lastComparison != 0) { return lastComparison; } @@ -509,7 +507,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TByteColumn struct) public void read(org.apache.thrift.protocol.TProtocol prot, TByteColumn struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list67 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.BYTE, iprot.readI32()); + org.apache.thrift.protocol.TList _list67 = iprot.readListBegin(org.apache.thrift.protocol.TType.BYTE); struct.values = new java.util.ArrayList(_list67.size); byte _elem68; for (int _i69 = 0; _i69 < _list67.size; ++_i69) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TByteValue.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TByteValue.java index 3460b0bf5d60..70a1e94ca438 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TByteValue.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TByteValue.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TByteValue 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("TByteValue"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TByteValue) return this.equals((TByteValue)that); return false; @@ -216,7 +214,7 @@ public int compareTo(TByteValue other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValue()).compareTo(other.isSetValue()); + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCLIService.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCLIService.java index c20a1cfb5c08..dcb2aa633ad6 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCLIService.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCLIService.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TCLIService { @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public interface Iface { @@ -3641,8 +3641,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof OpenSession_args) return this.equals((OpenSession_args)that); return false; @@ -3685,7 +3683,7 @@ public int compareTo(OpenSession_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -4010,8 +4008,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof OpenSession_result) return this.equals((OpenSession_result)that); return false; @@ -4054,7 +4050,7 @@ public int compareTo(OpenSession_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -4379,8 +4375,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CloseSession_args) return this.equals((CloseSession_args)that); return false; @@ -4423,7 +4417,7 @@ public int compareTo(CloseSession_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -4748,8 +4742,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CloseSession_result) return this.equals((CloseSession_result)that); return false; @@ -4792,7 +4784,7 @@ public int compareTo(CloseSession_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -5117,8 +5109,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetInfo_args) return this.equals((GetInfo_args)that); return false; @@ -5161,7 +5151,7 @@ public int compareTo(GetInfo_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -5486,8 +5476,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetInfo_result) return this.equals((GetInfo_result)that); return false; @@ -5530,7 +5518,7 @@ public int compareTo(GetInfo_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -5855,8 +5843,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ExecuteStatement_args) return this.equals((ExecuteStatement_args)that); return false; @@ -5899,7 +5885,7 @@ public int compareTo(ExecuteStatement_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -6224,8 +6210,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ExecuteStatement_result) return this.equals((ExecuteStatement_result)that); return false; @@ -6268,7 +6252,7 @@ public int compareTo(ExecuteStatement_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -6593,8 +6577,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetTypeInfo_args) return this.equals((GetTypeInfo_args)that); return false; @@ -6637,7 +6619,7 @@ public int compareTo(GetTypeInfo_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -6962,8 +6944,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetTypeInfo_result) return this.equals((GetTypeInfo_result)that); return false; @@ -7006,7 +6986,7 @@ public int compareTo(GetTypeInfo_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -7331,8 +7311,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetCatalogs_args) return this.equals((GetCatalogs_args)that); return false; @@ -7375,7 +7353,7 @@ public int compareTo(GetCatalogs_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -7700,8 +7678,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetCatalogs_result) return this.equals((GetCatalogs_result)that); return false; @@ -7744,7 +7720,7 @@ public int compareTo(GetCatalogs_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -8069,8 +8045,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetSchemas_args) return this.equals((GetSchemas_args)that); return false; @@ -8113,7 +8087,7 @@ public int compareTo(GetSchemas_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -8438,8 +8412,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetSchemas_result) return this.equals((GetSchemas_result)that); return false; @@ -8482,7 +8454,7 @@ public int compareTo(GetSchemas_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -8807,8 +8779,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetTables_args) return this.equals((GetTables_args)that); return false; @@ -8851,7 +8821,7 @@ public int compareTo(GetTables_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -9176,8 +9146,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetTables_result) return this.equals((GetTables_result)that); return false; @@ -9220,7 +9188,7 @@ public int compareTo(GetTables_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -9545,8 +9513,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetTableTypes_args) return this.equals((GetTableTypes_args)that); return false; @@ -9589,7 +9555,7 @@ public int compareTo(GetTableTypes_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -9914,8 +9880,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetTableTypes_result) return this.equals((GetTableTypes_result)that); return false; @@ -9958,7 +9922,7 @@ public int compareTo(GetTableTypes_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -10283,8 +10247,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetColumns_args) return this.equals((GetColumns_args)that); return false; @@ -10327,7 +10289,7 @@ public int compareTo(GetColumns_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -10652,8 +10614,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetColumns_result) return this.equals((GetColumns_result)that); return false; @@ -10696,7 +10656,7 @@ public int compareTo(GetColumns_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -11021,8 +10981,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetFunctions_args) return this.equals((GetFunctions_args)that); return false; @@ -11065,7 +11023,7 @@ public int compareTo(GetFunctions_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -11390,8 +11348,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetFunctions_result) return this.equals((GetFunctions_result)that); return false; @@ -11434,7 +11390,7 @@ public int compareTo(GetFunctions_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -11759,8 +11715,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPrimaryKeys_args) return this.equals((GetPrimaryKeys_args)that); return false; @@ -11803,7 +11757,7 @@ public int compareTo(GetPrimaryKeys_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -12128,8 +12082,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPrimaryKeys_result) return this.equals((GetPrimaryKeys_result)that); return false; @@ -12172,7 +12124,7 @@ public int compareTo(GetPrimaryKeys_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -12497,8 +12449,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetCrossReference_args) return this.equals((GetCrossReference_args)that); return false; @@ -12541,7 +12491,7 @@ public int compareTo(GetCrossReference_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -12866,8 +12816,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetCrossReference_result) return this.equals((GetCrossReference_result)that); return false; @@ -12910,7 +12858,7 @@ public int compareTo(GetCrossReference_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -13235,8 +13183,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetOperationStatus_args) return this.equals((GetOperationStatus_args)that); return false; @@ -13279,7 +13225,7 @@ public int compareTo(GetOperationStatus_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -13604,8 +13550,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetOperationStatus_result) return this.equals((GetOperationStatus_result)that); return false; @@ -13648,7 +13592,7 @@ public int compareTo(GetOperationStatus_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -13973,8 +13917,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CancelOperation_args) return this.equals((CancelOperation_args)that); return false; @@ -14017,7 +13959,7 @@ public int compareTo(CancelOperation_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -14342,8 +14284,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CancelOperation_result) return this.equals((CancelOperation_result)that); return false; @@ -14386,7 +14326,7 @@ public int compareTo(CancelOperation_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -14711,8 +14651,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CloseOperation_args) return this.equals((CloseOperation_args)that); return false; @@ -14755,7 +14693,7 @@ public int compareTo(CloseOperation_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -15080,8 +15018,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CloseOperation_result) return this.equals((CloseOperation_result)that); return false; @@ -15124,7 +15060,7 @@ public int compareTo(CloseOperation_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -15449,8 +15385,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetResultSetMetadata_args) return this.equals((GetResultSetMetadata_args)that); return false; @@ -15493,7 +15427,7 @@ public int compareTo(GetResultSetMetadata_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -15818,8 +15752,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetResultSetMetadata_result) return this.equals((GetResultSetMetadata_result)that); return false; @@ -15862,7 +15794,7 @@ public int compareTo(GetResultSetMetadata_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -16187,8 +16119,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof FetchResults_args) return this.equals((FetchResults_args)that); return false; @@ -16231,7 +16161,7 @@ public int compareTo(FetchResults_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -16556,8 +16486,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof FetchResults_result) return this.equals((FetchResults_result)that); return false; @@ -16600,7 +16528,7 @@ public int compareTo(FetchResults_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -16925,8 +16853,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetDelegationToken_args) return this.equals((GetDelegationToken_args)that); return false; @@ -16969,7 +16895,7 @@ public int compareTo(GetDelegationToken_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -17294,8 +17220,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetDelegationToken_result) return this.equals((GetDelegationToken_result)that); return false; @@ -17338,7 +17262,7 @@ public int compareTo(GetDelegationToken_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -17663,8 +17587,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CancelDelegationToken_args) return this.equals((CancelDelegationToken_args)that); return false; @@ -17707,7 +17629,7 @@ public int compareTo(CancelDelegationToken_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -18032,8 +17954,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CancelDelegationToken_result) return this.equals((CancelDelegationToken_result)that); return false; @@ -18076,7 +17996,7 @@ public int compareTo(CancelDelegationToken_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -18401,8 +18321,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof RenewDelegationToken_args) return this.equals((RenewDelegationToken_args)that); return false; @@ -18445,7 +18363,7 @@ public int compareTo(RenewDelegationToken_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -18770,8 +18688,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof RenewDelegationToken_result) return this.equals((RenewDelegationToken_result)that); return false; @@ -18814,7 +18730,7 @@ public int compareTo(RenewDelegationToken_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -19139,8 +19055,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetQueryId_args) return this.equals((GetQueryId_args)that); return false; @@ -19183,7 +19097,7 @@ public int compareTo(GetQueryId_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -19508,8 +19422,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetQueryId_result) return this.equals((GetQueryId_result)that); return false; @@ -19552,7 +19464,7 @@ public int compareTo(GetQueryId_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -19877,8 +19789,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SetClientInfo_args) return this.equals((SetClientInfo_args)that); return false; @@ -19921,7 +19831,7 @@ public int compareTo(SetClientInfo_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -20246,8 +20156,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SetClientInfo_result) return this.equals((SetClientInfo_result)that); return false; @@ -20290,7 +20198,7 @@ public int compareTo(SetClientInfo_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCLIServiceConstants.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCLIServiceConstants.java index d6872221beae..10b078874b8e 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCLIServiceConstants.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCLIServiceConstants.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelDelegationTokenReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelDelegationTokenReq.java index d7fb4792f238..f06cadf153f1 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelDelegationTokenReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelDelegationTokenReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TCancelDelegationTokenReq 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("TCancelDelegationTokenReq"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TCancelDelegationTokenReq) return this.equals((TCancelDelegationTokenReq)that); return false; @@ -285,7 +283,7 @@ public int compareTo(TCancelDelegationTokenReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -295,7 +293,7 @@ public int compareTo(TCancelDelegationTokenReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDelegationToken()).compareTo(other.isSetDelegationToken()); + lastComparison = java.lang.Boolean.compare(isSetDelegationToken(), other.isSetDelegationToken()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelDelegationTokenResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelDelegationTokenResp.java index 75667b3931e7..c3437a8ca41a 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelDelegationTokenResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelDelegationTokenResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TCancelDelegationTokenResp 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("TCancelDelegationTokenResp"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TCancelDelegationTokenResp) return this.equals((TCancelDelegationTokenResp)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TCancelDelegationTokenResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelOperationReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelOperationReq.java index 31e8b22aa364..d953f96f99df 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelOperationReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelOperationReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TCancelOperationReq 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("TCancelOperationReq"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TCancelOperationReq) return this.equals((TCancelOperationReq)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TCancelOperationReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelOperationResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelOperationResp.java index acf683d80528..e1bc713409de 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelOperationResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCancelOperationResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TCancelOperationResp 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("TCancelOperationResp"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TCancelOperationResp) return this.equals((TCancelOperationResp)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TCancelOperationResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseOperationReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseOperationReq.java index 226718a07573..fd4354be9e84 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseOperationReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseOperationReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TCloseOperationReq 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("TCloseOperationReq"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TCloseOperationReq) return this.equals((TCloseOperationReq)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TCloseOperationReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseOperationResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseOperationResp.java index 942a94b0aa97..c3e2e3dca67c 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseOperationResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseOperationResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TCloseOperationResp 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("TCloseOperationResp"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TCloseOperationResp) return this.equals((TCloseOperationResp)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TCloseOperationResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseSessionReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseSessionReq.java index c8fd733ebde9..84c953f1fa73 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseSessionReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseSessionReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TCloseSessionReq 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("TCloseSessionReq"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TCloseSessionReq) return this.equals((TCloseSessionReq)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TCloseSessionReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseSessionResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseSessionResp.java index 013346d5afb4..194163fad93b 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseSessionResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TCloseSessionResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TCloseSessionResp 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("TCloseSessionResp"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TCloseSessionResp) return this.equals((TCloseSessionResp)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TCloseSessionResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TColumn.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TColumn.java index c5070a39bc6d..c345b391354b 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TColumn.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TColumn.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TColumn extends org.apache.thrift.TUnion { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumn"); private static final org.apache.thrift.protocol.TField BOOL_VAL_FIELD_DESC = new org.apache.thrift.protocol.TField("boolVal", org.apache.thrift.protocol.TType.STRUCT, (short)1); @@ -511,9 +511,8 @@ public TBoolColumn getBoolVal() { } public void setBoolVal(TBoolColumn value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.BOOL_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.BOOL_VAL"); } public TByteColumn getByteVal() { @@ -525,9 +524,8 @@ public TByteColumn getByteVal() { } public void setByteVal(TByteColumn value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.BYTE_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.BYTE_VAL"); } public TI16Column getI16Val() { @@ -539,9 +537,8 @@ public TI16Column getI16Val() { } public void setI16Val(TI16Column value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.I16_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.I16_VAL"); } public TI32Column getI32Val() { @@ -553,9 +550,8 @@ public TI32Column getI32Val() { } public void setI32Val(TI32Column value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.I32_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.I32_VAL"); } public TI64Column getI64Val() { @@ -567,9 +563,8 @@ public TI64Column getI64Val() { } public void setI64Val(TI64Column value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.I64_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.I64_VAL"); } public TDoubleColumn getDoubleVal() { @@ -581,9 +576,8 @@ public TDoubleColumn getDoubleVal() { } public void setDoubleVal(TDoubleColumn value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.DOUBLE_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.DOUBLE_VAL"); } public TStringColumn getStringVal() { @@ -595,9 +589,8 @@ public TStringColumn getStringVal() { } public void setStringVal(TStringColumn value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.STRING_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.STRING_VAL"); } public TBinaryColumn getBinaryVal() { @@ -609,9 +602,8 @@ public TBinaryColumn getBinaryVal() { } public void setBinaryVal(TBinaryColumn value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.BINARY_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.BINARY_VAL"); } public boolean isSetBoolVal() { diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TColumnDesc.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TColumnDesc.java index dd72dd89e097..7bcdb3421ce0 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TColumnDesc.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TColumnDesc.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TColumnDesc 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("TColumnDesc"); @@ -328,8 +328,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TColumnDesc) return this.equals((TColumnDesc)that); return false; @@ -409,7 +407,7 @@ public int compareTo(TColumnDesc other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetColumnName()).compareTo(other.isSetColumnName()); + lastComparison = java.lang.Boolean.compare(isSetColumnName(), other.isSetColumnName()); if (lastComparison != 0) { return lastComparison; } @@ -419,7 +417,7 @@ public int compareTo(TColumnDesc other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTypeDesc()).compareTo(other.isSetTypeDesc()); + lastComparison = java.lang.Boolean.compare(isSetTypeDesc(), other.isSetTypeDesc()); if (lastComparison != 0) { return lastComparison; } @@ -429,7 +427,7 @@ public int compareTo(TColumnDesc other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPosition()).compareTo(other.isSetPosition()); + lastComparison = java.lang.Boolean.compare(isSetPosition(), other.isSetPosition()); if (lastComparison != 0) { return lastComparison; } @@ -439,7 +437,7 @@ public int compareTo(TColumnDesc other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetComment()).compareTo(other.isSetComment()); + lastComparison = java.lang.Boolean.compare(isSetComment(), other.isSetComment()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TColumnValue.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TColumnValue.java index 9f39aa3e290d..7242f8087132 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TColumnValue.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TColumnValue.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TColumnValue extends org.apache.thrift.TUnion { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumnValue"); private static final org.apache.thrift.protocol.TField BOOL_VAL_FIELD_DESC = new org.apache.thrift.protocol.TField("boolVal", org.apache.thrift.protocol.TType.STRUCT, (short)1); @@ -469,9 +469,8 @@ public TBoolValue getBoolVal() { } public void setBoolVal(TBoolValue value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.BOOL_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.BOOL_VAL"); } public TByteValue getByteVal() { @@ -483,9 +482,8 @@ public TByteValue getByteVal() { } public void setByteVal(TByteValue value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.BYTE_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.BYTE_VAL"); } public TI16Value getI16Val() { @@ -497,9 +495,8 @@ public TI16Value getI16Val() { } public void setI16Val(TI16Value value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.I16_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.I16_VAL"); } public TI32Value getI32Val() { @@ -511,9 +508,8 @@ public TI32Value getI32Val() { } public void setI32Val(TI32Value value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.I32_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.I32_VAL"); } public TI64Value getI64Val() { @@ -525,9 +521,8 @@ public TI64Value getI64Val() { } public void setI64Val(TI64Value value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.I64_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.I64_VAL"); } public TDoubleValue getDoubleVal() { @@ -539,9 +534,8 @@ public TDoubleValue getDoubleVal() { } public void setDoubleVal(TDoubleValue value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.DOUBLE_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.DOUBLE_VAL"); } public TStringValue getStringVal() { @@ -553,9 +547,8 @@ public TStringValue getStringVal() { } public void setStringVal(TStringValue value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.STRING_VAL; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.STRING_VAL"); } public boolean isSetBoolVal() { diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TDoubleColumn.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TDoubleColumn.java index 4dfb24483b61..fa1d125af9de 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TDoubleColumn.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TDoubleColumn.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TDoubleColumn 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("TDoubleColumn"); @@ -258,8 +258,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TDoubleColumn) return this.equals((TDoubleColumn)that); return false; @@ -315,7 +313,7 @@ public int compareTo(TDoubleColumn other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValues()).compareTo(other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); if (lastComparison != 0) { return lastComparison; } @@ -325,7 +323,7 @@ public int compareTo(TDoubleColumn other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNulls()).compareTo(other.isSetNulls()); + lastComparison = java.lang.Boolean.compare(isSetNulls(), other.isSetNulls()); if (lastComparison != 0) { return lastComparison; } @@ -509,7 +507,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TDoubleColumn struc public void read(org.apache.thrift.protocol.TProtocol prot, TDoubleColumn struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list99 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.DOUBLE, iprot.readI32()); + org.apache.thrift.protocol.TList _list99 = iprot.readListBegin(org.apache.thrift.protocol.TType.DOUBLE); struct.values = new java.util.ArrayList(_list99.size); double _elem100; for (int _i101 = 0; _i101 < _list99.size; ++_i101) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TDoubleValue.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TDoubleValue.java index 67f4f072b342..504688f69258 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TDoubleValue.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TDoubleValue.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TDoubleValue 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("TDoubleValue"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TDoubleValue) return this.equals((TDoubleValue)that); return false; @@ -216,7 +214,7 @@ public int compareTo(TDoubleValue other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValue()).compareTo(other.isSetValue()); + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TExecuteStatementReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TExecuteStatementReq.java index 249f6a6e1a6a..804fe01ac489 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TExecuteStatementReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TExecuteStatementReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TExecuteStatementReq 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("TExecuteStatementReq"); @@ -389,8 +389,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TExecuteStatementReq) return this.equals((TExecuteStatementReq)that); return false; @@ -485,7 +483,7 @@ public int compareTo(TExecuteStatementReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -495,7 +493,7 @@ public int compareTo(TExecuteStatementReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStatement()).compareTo(other.isSetStatement()); + lastComparison = java.lang.Boolean.compare(isSetStatement(), other.isSetStatement()); if (lastComparison != 0) { return lastComparison; } @@ -505,7 +503,7 @@ public int compareTo(TExecuteStatementReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetConfOverlay()).compareTo(other.isSetConfOverlay()); + lastComparison = java.lang.Boolean.compare(isSetConfOverlay(), other.isSetConfOverlay()); if (lastComparison != 0) { return lastComparison; } @@ -515,7 +513,7 @@ public int compareTo(TExecuteStatementReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRunAsync()).compareTo(other.isSetRunAsync()); + lastComparison = java.lang.Boolean.compare(isSetRunAsync(), other.isSetRunAsync()); if (lastComparison != 0) { return lastComparison; } @@ -525,7 +523,7 @@ public int compareTo(TExecuteStatementReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetQueryTimeout()).compareTo(other.isSetQueryTimeout()); + lastComparison = java.lang.Boolean.compare(isSetQueryTimeout(), other.isSetQueryTimeout()); if (lastComparison != 0) { return lastComparison; } @@ -809,7 +807,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, TExecuteStatementReq java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map178 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map178 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.confOverlay = new java.util.HashMap(2*_map178.size); @org.apache.thrift.annotation.Nullable java.lang.String _key179; @org.apache.thrift.annotation.Nullable java.lang.String _val180; diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TExecuteStatementResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TExecuteStatementResp.java index b7fddd5a59b3..7b826e96fc64 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TExecuteStatementResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TExecuteStatementResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TExecuteStatementResp 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("TExecuteStatementResp"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TExecuteStatementResp) return this.equals((TExecuteStatementResp)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TExecuteStatementResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TExecuteStatementResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TFetchOrientation.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TFetchOrientation.java index 89a35604fa45..c1ade7795a49 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TFetchOrientation.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TFetchOrientation.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum TFetchOrientation implements org.apache.thrift.TEnum { FETCH_NEXT(0), FETCH_PRIOR(1), diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TFetchResultsReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TFetchResultsReq.java index d5a0c5e999bb..710ba49101e0 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TFetchResultsReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TFetchResultsReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TFetchResultsReq 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("TFetchResultsReq"); @@ -343,8 +343,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TFetchResultsReq) return this.equals((TFetchResultsReq)that); return false; @@ -424,7 +422,7 @@ public int compareTo(TFetchResultsReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } @@ -434,7 +432,7 @@ public int compareTo(TFetchResultsReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOrientation()).compareTo(other.isSetOrientation()); + lastComparison = java.lang.Boolean.compare(isSetOrientation(), other.isSetOrientation()); if (lastComparison != 0) { return lastComparison; } @@ -444,7 +442,7 @@ public int compareTo(TFetchResultsReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMaxRows()).compareTo(other.isSetMaxRows()); + lastComparison = java.lang.Boolean.compare(isSetMaxRows(), other.isSetMaxRows()); if (lastComparison != 0) { return lastComparison; } @@ -454,7 +452,7 @@ public int compareTo(TFetchResultsReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFetchType()).compareTo(other.isSetFetchType()); + lastComparison = java.lang.Boolean.compare(isSetFetchType(), other.isSetFetchType()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TFetchResultsResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TFetchResultsResp.java index 5a6eb7c679f1..cf742af56254 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TFetchResultsResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TFetchResultsResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TFetchResultsResp 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("TFetchResultsResp"); @@ -275,8 +275,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TFetchResultsResp) return this.equals((TFetchResultsResp)that); return false; @@ -345,7 +343,7 @@ public int compareTo(TFetchResultsResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -355,7 +353,7 @@ public int compareTo(TFetchResultsResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHasMoreRows()).compareTo(other.isSetHasMoreRows()); + lastComparison = java.lang.Boolean.compare(isSetHasMoreRows(), other.isSetHasMoreRows()); if (lastComparison != 0) { return lastComparison; } @@ -365,7 +363,7 @@ public int compareTo(TFetchResultsResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetResults()).compareTo(other.isSetResults()); + lastComparison = java.lang.Boolean.compare(isSetResults(), other.isSetResults()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCatalogsReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCatalogsReq.java index ab4497525bea..56e04e6be983 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCatalogsReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCatalogsReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetCatalogsReq 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("TGetCatalogsReq"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetCatalogsReq) return this.equals((TGetCatalogsReq)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TGetCatalogsReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCatalogsResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCatalogsResp.java index 357470167734..ec8e37adb8b7 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCatalogsResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCatalogsResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetCatalogsResp 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("TGetCatalogsResp"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetCatalogsResp) return this.equals((TGetCatalogsResp)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TGetCatalogsResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TGetCatalogsResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetColumnsReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetColumnsReq.java index 81d08a02295f..04eb3f70b7cf 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetColumnsReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetColumnsReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetColumnsReq 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("TGetColumnsReq"); @@ -371,8 +371,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetColumnsReq) return this.equals((TGetColumnsReq)that); return false; @@ -467,7 +465,7 @@ public int compareTo(TGetColumnsReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -477,7 +475,7 @@ public int compareTo(TGetColumnsReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatalogName()).compareTo(other.isSetCatalogName()); + lastComparison = java.lang.Boolean.compare(isSetCatalogName(), other.isSetCatalogName()); if (lastComparison != 0) { return lastComparison; } @@ -487,7 +485,7 @@ public int compareTo(TGetColumnsReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSchemaName()).compareTo(other.isSetSchemaName()); + lastComparison = java.lang.Boolean.compare(isSetSchemaName(), other.isSetSchemaName()); if (lastComparison != 0) { return lastComparison; } @@ -497,7 +495,7 @@ public int compareTo(TGetColumnsReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -507,7 +505,7 @@ public int compareTo(TGetColumnsReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColumnName()).compareTo(other.isSetColumnName()); + lastComparison = java.lang.Boolean.compare(isSetColumnName(), other.isSetColumnName()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetColumnsResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetColumnsResp.java index 6c3d98c97b1a..942382dcca39 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetColumnsResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetColumnsResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetColumnsResp 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("TGetColumnsResp"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetColumnsResp) return this.equals((TGetColumnsResp)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TGetColumnsResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TGetColumnsResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCrossReferenceReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCrossReferenceReq.java index 307b491ebaf2..0f48a6121118 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCrossReferenceReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCrossReferenceReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetCrossReferenceReq 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("TGetCrossReferenceReq"); @@ -467,8 +467,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetCrossReferenceReq) return this.equals((TGetCrossReferenceReq)that); return false; @@ -589,7 +587,7 @@ public int compareTo(TGetCrossReferenceReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -599,7 +597,7 @@ public int compareTo(TGetCrossReferenceReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParentCatalogName()).compareTo(other.isSetParentCatalogName()); + lastComparison = java.lang.Boolean.compare(isSetParentCatalogName(), other.isSetParentCatalogName()); if (lastComparison != 0) { return lastComparison; } @@ -609,7 +607,7 @@ public int compareTo(TGetCrossReferenceReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParentSchemaName()).compareTo(other.isSetParentSchemaName()); + lastComparison = java.lang.Boolean.compare(isSetParentSchemaName(), other.isSetParentSchemaName()); if (lastComparison != 0) { return lastComparison; } @@ -619,7 +617,7 @@ public int compareTo(TGetCrossReferenceReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParentTableName()).compareTo(other.isSetParentTableName()); + lastComparison = java.lang.Boolean.compare(isSetParentTableName(), other.isSetParentTableName()); if (lastComparison != 0) { return lastComparison; } @@ -629,7 +627,7 @@ public int compareTo(TGetCrossReferenceReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetForeignCatalogName()).compareTo(other.isSetForeignCatalogName()); + lastComparison = java.lang.Boolean.compare(isSetForeignCatalogName(), other.isSetForeignCatalogName()); if (lastComparison != 0) { return lastComparison; } @@ -639,7 +637,7 @@ public int compareTo(TGetCrossReferenceReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetForeignSchemaName()).compareTo(other.isSetForeignSchemaName()); + lastComparison = java.lang.Boolean.compare(isSetForeignSchemaName(), other.isSetForeignSchemaName()); if (lastComparison != 0) { return lastComparison; } @@ -649,7 +647,7 @@ public int compareTo(TGetCrossReferenceReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetForeignTableName()).compareTo(other.isSetForeignTableName()); + lastComparison = java.lang.Boolean.compare(isSetForeignTableName(), other.isSetForeignTableName()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCrossReferenceResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCrossReferenceResp.java index 51093574d12e..5325c04e49e0 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCrossReferenceResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetCrossReferenceResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetCrossReferenceResp 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("TGetCrossReferenceResp"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetCrossReferenceResp) return this.equals((TGetCrossReferenceResp)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TGetCrossReferenceResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TGetCrossReferenceResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetDelegationTokenReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetDelegationTokenReq.java index ae9ddfff8d87..8f697680c587 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetDelegationTokenReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetDelegationTokenReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetDelegationTokenReq 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("TGetDelegationTokenReq"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetDelegationTokenReq) return this.equals((TGetDelegationTokenReq)that); return false; @@ -348,7 +346,7 @@ public int compareTo(TGetDelegationTokenReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(TGetDelegationTokenReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwner()).compareTo(other.isSetOwner()); + lastComparison = java.lang.Boolean.compare(isSetOwner(), other.isSetOwner()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(TGetDelegationTokenReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRenewer()).compareTo(other.isSetRenewer()); + lastComparison = java.lang.Boolean.compare(isSetRenewer(), other.isSetRenewer()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetDelegationTokenResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetDelegationTokenResp.java index e1223fff320e..ea69b0793ba7 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetDelegationTokenResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetDelegationTokenResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetDelegationTokenResp 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("TGetDelegationTokenResp"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetDelegationTokenResp) return this.equals((TGetDelegationTokenResp)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TGetDelegationTokenResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TGetDelegationTokenResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDelegationToken()).compareTo(other.isSetDelegationToken()); + lastComparison = java.lang.Boolean.compare(isSetDelegationToken(), other.isSetDelegationToken()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetFunctionsReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetFunctionsReq.java index d7898e7781d4..78081797dc90 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetFunctionsReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetFunctionsReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetFunctionsReq 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("TGetFunctionsReq"); @@ -325,8 +325,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetFunctionsReq) return this.equals((TGetFunctionsReq)that); return false; @@ -408,7 +406,7 @@ public int compareTo(TGetFunctionsReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -418,7 +416,7 @@ public int compareTo(TGetFunctionsReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatalogName()).compareTo(other.isSetCatalogName()); + lastComparison = java.lang.Boolean.compare(isSetCatalogName(), other.isSetCatalogName()); if (lastComparison != 0) { return lastComparison; } @@ -428,7 +426,7 @@ public int compareTo(TGetFunctionsReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSchemaName()).compareTo(other.isSetSchemaName()); + lastComparison = java.lang.Boolean.compare(isSetSchemaName(), other.isSetSchemaName()); if (lastComparison != 0) { return lastComparison; } @@ -438,7 +436,7 @@ public int compareTo(TGetFunctionsReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFunctionName()).compareTo(other.isSetFunctionName()); + lastComparison = java.lang.Boolean.compare(isSetFunctionName(), other.isSetFunctionName()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetFunctionsResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetFunctionsResp.java index e829b1eddf4c..d7d3ded0cd9e 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetFunctionsResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetFunctionsResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetFunctionsResp 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("TGetFunctionsResp"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetFunctionsResp) return this.equals((TGetFunctionsResp)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TGetFunctionsResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TGetFunctionsResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoReq.java index b55ffc3ac899..650c36a5a966 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetInfoReq 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("TGetInfoReq"); @@ -240,8 +240,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetInfoReq) return this.equals((TGetInfoReq)that); return false; @@ -297,7 +295,7 @@ public int compareTo(TGetInfoReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -307,7 +305,7 @@ public int compareTo(TGetInfoReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetInfoType()).compareTo(other.isSetInfoType()); + lastComparison = java.lang.Boolean.compare(isSetInfoType(), other.isSetInfoType()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoResp.java index cc8b10acfa4c..1809c23be868 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetInfoResp 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("TGetInfoResp"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetInfoResp) return this.equals((TGetInfoResp)that); return false; @@ -285,7 +283,7 @@ public int compareTo(TGetInfoResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -295,7 +293,7 @@ public int compareTo(TGetInfoResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetInfoValue()).compareTo(other.isSetInfoValue()); + lastComparison = java.lang.Boolean.compare(isSetInfoValue(), other.isSetInfoValue()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoType.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoType.java index 41e48b7763ea..afd3bd77fcc3 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoType.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum TGetInfoType implements org.apache.thrift.TEnum { CLI_MAX_DRIVER_CONNECTIONS(0), CLI_MAX_CONCURRENT_ACTIVITIES(1), diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoValue.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoValue.java index b0212bdfb78c..fa58704a3747 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoValue.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetInfoValue.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetInfoValue extends org.apache.thrift.TUnion { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TGetInfoValue"); private static final org.apache.thrift.protocol.TField STRING_VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("stringValue", org.apache.thrift.protocol.TType.STRING, (short)1); @@ -415,9 +415,8 @@ public java.lang.String getStringValue() { } public void setStringValue(java.lang.String value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.STRING_VALUE; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.STRING_VALUE"); } public short getSmallIntValue() { diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetOperationStatusReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetOperationStatusReq.java index 42f74bf5092c..0d631f1cd733 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetOperationStatusReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetOperationStatusReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetOperationStatusReq 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("TGetOperationStatusReq"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetOperationStatusReq) return this.equals((TGetOperationStatusReq)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TGetOperationStatusReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TGetOperationStatusReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGetProgressUpdate()).compareTo(other.isSetGetProgressUpdate()); + lastComparison = java.lang.Boolean.compare(isSetGetProgressUpdate(), other.isSetGetProgressUpdate()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetOperationStatusResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetOperationStatusResp.java index 19cc44a9dc2e..d9a76b221b97 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetOperationStatusResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetOperationStatusResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetOperationStatusResp 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("TGetOperationStatusResp"); @@ -663,8 +663,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetOperationStatusResp) return this.equals((TGetOperationStatusResp)that); return false; @@ -837,7 +835,7 @@ public int compareTo(TGetOperationStatusResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -847,7 +845,7 @@ public int compareTo(TGetOperationStatusResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationState()).compareTo(other.isSetOperationState()); + lastComparison = java.lang.Boolean.compare(isSetOperationState(), other.isSetOperationState()); if (lastComparison != 0) { return lastComparison; } @@ -857,7 +855,7 @@ public int compareTo(TGetOperationStatusResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSqlState()).compareTo(other.isSetSqlState()); + lastComparison = java.lang.Boolean.compare(isSetSqlState(), other.isSetSqlState()); if (lastComparison != 0) { return lastComparison; } @@ -867,7 +865,7 @@ public int compareTo(TGetOperationStatusResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetErrorCode()).compareTo(other.isSetErrorCode()); + lastComparison = java.lang.Boolean.compare(isSetErrorCode(), other.isSetErrorCode()); if (lastComparison != 0) { return lastComparison; } @@ -877,7 +875,7 @@ public int compareTo(TGetOperationStatusResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetErrorMessage()).compareTo(other.isSetErrorMessage()); + lastComparison = java.lang.Boolean.compare(isSetErrorMessage(), other.isSetErrorMessage()); if (lastComparison != 0) { return lastComparison; } @@ -887,7 +885,7 @@ public int compareTo(TGetOperationStatusResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTaskStatus()).compareTo(other.isSetTaskStatus()); + lastComparison = java.lang.Boolean.compare(isSetTaskStatus(), other.isSetTaskStatus()); if (lastComparison != 0) { return lastComparison; } @@ -897,7 +895,7 @@ public int compareTo(TGetOperationStatusResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationStarted()).compareTo(other.isSetOperationStarted()); + lastComparison = java.lang.Boolean.compare(isSetOperationStarted(), other.isSetOperationStarted()); if (lastComparison != 0) { return lastComparison; } @@ -907,7 +905,7 @@ public int compareTo(TGetOperationStatusResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationCompleted()).compareTo(other.isSetOperationCompleted()); + lastComparison = java.lang.Boolean.compare(isSetOperationCompleted(), other.isSetOperationCompleted()); if (lastComparison != 0) { return lastComparison; } @@ -917,7 +915,7 @@ public int compareTo(TGetOperationStatusResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHasResultSet()).compareTo(other.isSetHasResultSet()); + lastComparison = java.lang.Boolean.compare(isSetHasResultSet(), other.isSetHasResultSet()); if (lastComparison != 0) { return lastComparison; } @@ -927,7 +925,7 @@ public int compareTo(TGetOperationStatusResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProgressUpdateResponse()).compareTo(other.isSetProgressUpdateResponse()); + lastComparison = java.lang.Boolean.compare(isSetProgressUpdateResponse(), other.isSetProgressUpdateResponse()); if (lastComparison != 0) { return lastComparison; } @@ -937,7 +935,7 @@ public int compareTo(TGetOperationStatusResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumModifiedRows()).compareTo(other.isSetNumModifiedRows()); + lastComparison = java.lang.Boolean.compare(isSetNumModifiedRows(), other.isSetNumModifiedRows()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetPrimaryKeysReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetPrimaryKeysReq.java index ae78b41c7796..16b0564fe70d 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetPrimaryKeysReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetPrimaryKeysReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetPrimaryKeysReq 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("TGetPrimaryKeysReq"); @@ -323,8 +323,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetPrimaryKeysReq) return this.equals((TGetPrimaryKeysReq)that); return false; @@ -406,7 +404,7 @@ public int compareTo(TGetPrimaryKeysReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -416,7 +414,7 @@ public int compareTo(TGetPrimaryKeysReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatalogName()).compareTo(other.isSetCatalogName()); + lastComparison = java.lang.Boolean.compare(isSetCatalogName(), other.isSetCatalogName()); if (lastComparison != 0) { return lastComparison; } @@ -426,7 +424,7 @@ public int compareTo(TGetPrimaryKeysReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSchemaName()).compareTo(other.isSetSchemaName()); + lastComparison = java.lang.Boolean.compare(isSetSchemaName(), other.isSetSchemaName()); if (lastComparison != 0) { return lastComparison; } @@ -436,7 +434,7 @@ public int compareTo(TGetPrimaryKeysReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetPrimaryKeysResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetPrimaryKeysResp.java index ed3e59615f11..7f22aa20cb5c 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetPrimaryKeysResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetPrimaryKeysResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetPrimaryKeysResp 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("TGetPrimaryKeysResp"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetPrimaryKeysResp) return this.equals((TGetPrimaryKeysResp)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TGetPrimaryKeysResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TGetPrimaryKeysResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetQueryIdReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetQueryIdReq.java index 52c1b39415ed..2e1df4d79778 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetQueryIdReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetQueryIdReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetQueryIdReq 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("TGetQueryIdReq"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetQueryIdReq) return this.equals((TGetQueryIdReq)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TGetQueryIdReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetQueryIdResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetQueryIdResp.java index 7e3d1a6a5128..148221860f0a 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetQueryIdResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetQueryIdResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetQueryIdResp 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("TGetQueryIdResp"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetQueryIdResp) return this.equals((TGetQueryIdResp)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TGetQueryIdResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetQueryId()).compareTo(other.isSetQueryId()); + lastComparison = java.lang.Boolean.compare(isSetQueryId(), other.isSetQueryId()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetResultSetMetadataReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetResultSetMetadataReq.java index eb7cc67e8cab..13092046597a 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetResultSetMetadataReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetResultSetMetadataReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetResultSetMetadataReq 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("TGetResultSetMetadataReq"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetResultSetMetadataReq) return this.equals((TGetResultSetMetadataReq)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TGetResultSetMetadataReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetResultSetMetadataResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetResultSetMetadataResp.java index 5ca99d8935d4..08fe22bc2903 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetResultSetMetadataResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetResultSetMetadataResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetResultSetMetadataResp 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("TGetResultSetMetadataResp"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetResultSetMetadataResp) return this.equals((TGetResultSetMetadataResp)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TGetResultSetMetadataResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TGetResultSetMetadataResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSchema()).compareTo(other.isSetSchema()); + lastComparison = java.lang.Boolean.compare(isSetSchema(), other.isSetSchema()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetSchemasReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetSchemasReq.java index e3bfda29181d..5614ebd16006 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetSchemasReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetSchemasReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetSchemasReq 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("TGetSchemasReq"); @@ -275,8 +275,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetSchemasReq) return this.equals((TGetSchemasReq)that); return false; @@ -345,7 +343,7 @@ public int compareTo(TGetSchemasReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -355,7 +353,7 @@ public int compareTo(TGetSchemasReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatalogName()).compareTo(other.isSetCatalogName()); + lastComparison = java.lang.Boolean.compare(isSetCatalogName(), other.isSetCatalogName()); if (lastComparison != 0) { return lastComparison; } @@ -365,7 +363,7 @@ public int compareTo(TGetSchemasReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSchemaName()).compareTo(other.isSetSchemaName()); + lastComparison = java.lang.Boolean.compare(isSetSchemaName(), other.isSetSchemaName()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetSchemasResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetSchemasResp.java index 57be3623e180..53d5de7b93e0 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetSchemasResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetSchemasResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetSchemasResp 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("TGetSchemasResp"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetSchemasResp) return this.equals((TGetSchemasResp)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TGetSchemasResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TGetSchemasResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTableTypesReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTableTypesReq.java index 00ca96fb222c..fcbbe136c7c2 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTableTypesReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTableTypesReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetTableTypesReq 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("TGetTableTypesReq"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetTableTypesReq) return this.equals((TGetTableTypesReq)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TGetTableTypesReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTableTypesResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTableTypesResp.java index 5bef27796da5..8ed31c268b0a 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTableTypesResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTableTypesResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetTableTypesResp 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("TGetTableTypesResp"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetTableTypesResp) return this.equals((TGetTableTypesResp)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TGetTableTypesResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TGetTableTypesResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTablesReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTablesReq.java index b1c2875e80fc..361c950fe50f 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTablesReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTablesReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetTablesReq 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("TGetTablesReq"); @@ -389,8 +389,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetTablesReq) return this.equals((TGetTablesReq)that); return false; @@ -485,7 +483,7 @@ public int compareTo(TGetTablesReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -495,7 +493,7 @@ public int compareTo(TGetTablesReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatalogName()).compareTo(other.isSetCatalogName()); + lastComparison = java.lang.Boolean.compare(isSetCatalogName(), other.isSetCatalogName()); if (lastComparison != 0) { return lastComparison; } @@ -505,7 +503,7 @@ public int compareTo(TGetTablesReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSchemaName()).compareTo(other.isSetSchemaName()); + lastComparison = java.lang.Boolean.compare(isSetSchemaName(), other.isSetSchemaName()); if (lastComparison != 0) { return lastComparison; } @@ -515,7 +513,7 @@ public int compareTo(TGetTablesReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -525,7 +523,7 @@ public int compareTo(TGetTablesReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableTypes()).compareTo(other.isSetTableTypes()); + lastComparison = java.lang.Boolean.compare(isSetTableTypes(), other.isSetTableTypes()); if (lastComparison != 0) { return lastComparison; } @@ -830,7 +828,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, TGetTablesReq struct } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list187 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list187 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.tableTypes = new java.util.ArrayList(_list187.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem188; for (int _i189 = 0; _i189 < _list187.size; ++_i189) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTablesResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTablesResp.java index 302fbe9d50f7..d3d4a5b66f53 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTablesResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTablesResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetTablesResp 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("TGetTablesResp"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetTablesResp) return this.equals((TGetTablesResp)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TGetTablesResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TGetTablesResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTypeInfoReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTypeInfoReq.java index 8fda7aadef6a..1a9d3602201a 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTypeInfoReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTypeInfoReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetTypeInfoReq 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("TGetTypeInfoReq"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetTypeInfoReq) return this.equals((TGetTypeInfoReq)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TGetTypeInfoReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTypeInfoResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTypeInfoResp.java index 1eef5fae9191..3b06ecee220b 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTypeInfoResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TGetTypeInfoResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TGetTypeInfoResp 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("TGetTypeInfoResp"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TGetTypeInfoResp) return this.equals((TGetTypeInfoResp)that); return false; @@ -284,7 +282,7 @@ public int compareTo(TGetTypeInfoResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(TGetTypeInfoResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationHandle()).compareTo(other.isSetOperationHandle()); + lastComparison = java.lang.Boolean.compare(isSetOperationHandle(), other.isSetOperationHandle()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/THandleIdentifier.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/THandleIdentifier.java index 1ddab9e67a4e..494f7664aa34 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/THandleIdentifier.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/THandleIdentifier.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class THandleIdentifier 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("THandleIdentifier"); @@ -252,8 +252,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof THandleIdentifier) return this.equals((THandleIdentifier)that); return false; @@ -309,7 +307,7 @@ public int compareTo(THandleIdentifier other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetGuid()).compareTo(other.isSetGuid()); + lastComparison = java.lang.Boolean.compare(isSetGuid(), other.isSetGuid()); if (lastComparison != 0) { return lastComparison; } @@ -319,7 +317,7 @@ public int compareTo(THandleIdentifier other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSecret()).compareTo(other.isSetSecret()); + lastComparison = java.lang.Boolean.compare(isSetSecret(), other.isSetSecret()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI16Column.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI16Column.java index 1bb70c0958cf..ca5fe3c85315 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI16Column.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI16Column.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TI16Column 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("TI16Column"); @@ -258,8 +258,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TI16Column) return this.equals((TI16Column)that); return false; @@ -315,7 +313,7 @@ public int compareTo(TI16Column other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValues()).compareTo(other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); if (lastComparison != 0) { return lastComparison; } @@ -325,7 +323,7 @@ public int compareTo(TI16Column other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNulls()).compareTo(other.isSetNulls()); + lastComparison = java.lang.Boolean.compare(isSetNulls(), other.isSetNulls()); if (lastComparison != 0) { return lastComparison; } @@ -509,7 +507,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TI16Column struct) public void read(org.apache.thrift.protocol.TProtocol prot, TI16Column struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list75 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I16, iprot.readI32()); + org.apache.thrift.protocol.TList _list75 = iprot.readListBegin(org.apache.thrift.protocol.TType.I16); struct.values = new java.util.ArrayList(_list75.size); short _elem76; for (int _i77 = 0; _i77 < _list75.size; ++_i77) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI16Value.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI16Value.java index 2ba579214763..95623386a7d7 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI16Value.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI16Value.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TI16Value 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("TI16Value"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TI16Value) return this.equals((TI16Value)that); return false; @@ -216,7 +214,7 @@ public int compareTo(TI16Value other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValue()).compareTo(other.isSetValue()); + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI32Column.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI32Column.java index 9e252700b6c3..2d9a6f52737f 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI32Column.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI32Column.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TI32Column 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("TI32Column"); @@ -258,8 +258,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TI32Column) return this.equals((TI32Column)that); return false; @@ -315,7 +313,7 @@ public int compareTo(TI32Column other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValues()).compareTo(other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); if (lastComparison != 0) { return lastComparison; } @@ -325,7 +323,7 @@ public int compareTo(TI32Column other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNulls()).compareTo(other.isSetNulls()); + lastComparison = java.lang.Boolean.compare(isSetNulls(), other.isSetNulls()); if (lastComparison != 0) { return lastComparison; } @@ -509,7 +507,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TI32Column struct) public void read(org.apache.thrift.protocol.TProtocol prot, TI32Column struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list83 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, iprot.readI32()); + org.apache.thrift.protocol.TList _list83 = iprot.readListBegin(org.apache.thrift.protocol.TType.I32); struct.values = new java.util.ArrayList(_list83.size); int _elem84; for (int _i85 = 0; _i85 < _list83.size; ++_i85) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI32Value.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI32Value.java index d166468ec938..d36866e72259 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI32Value.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI32Value.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TI32Value 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("TI32Value"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TI32Value) return this.equals((TI32Value)that); return false; @@ -216,7 +214,7 @@ public int compareTo(TI32Value other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValue()).compareTo(other.isSetValue()); + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI64Column.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI64Column.java index 770261bd4388..639cd3d0dcbf 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI64Column.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI64Column.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TI64Column 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("TI64Column"); @@ -258,8 +258,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TI64Column) return this.equals((TI64Column)that); return false; @@ -315,7 +313,7 @@ public int compareTo(TI64Column other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValues()).compareTo(other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); if (lastComparison != 0) { return lastComparison; } @@ -325,7 +323,7 @@ public int compareTo(TI64Column other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNulls()).compareTo(other.isSetNulls()); + lastComparison = java.lang.Boolean.compare(isSetNulls(), other.isSetNulls()); if (lastComparison != 0) { return lastComparison; } @@ -509,7 +507,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TI64Column struct) public void read(org.apache.thrift.protocol.TProtocol prot, TI64Column struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list91 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TList _list91 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); struct.values = new java.util.ArrayList(_list91.size); long _elem92; for (int _i93 = 0; _i93 < _list91.size; ++_i93) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI64Value.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI64Value.java index 704d66667a29..c627e976a64d 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI64Value.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TI64Value.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TI64Value 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("TI64Value"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TI64Value) return this.equals((TI64Value)that); return false; @@ -216,7 +214,7 @@ public int compareTo(TI64Value other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValue()).compareTo(other.isSetValue()); + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TJobExecutionStatus.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TJobExecutionStatus.java index b4706a198652..6fd976690dae 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TJobExecutionStatus.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TJobExecutionStatus.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum TJobExecutionStatus implements org.apache.thrift.TEnum { IN_PROGRESS(0), COMPLETE(1), diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TMapTypeEntry.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TMapTypeEntry.java index 43fd1d4ee44a..14a0a2a50018 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TMapTypeEntry.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TMapTypeEntry.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TMapTypeEntry 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("TMapTypeEntry"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TMapTypeEntry) return this.equals((TMapTypeEntry)that); return false; @@ -281,7 +279,7 @@ public int compareTo(TMapTypeEntry other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetKeyTypePtr()).compareTo(other.isSetKeyTypePtr()); + lastComparison = java.lang.Boolean.compare(isSetKeyTypePtr(), other.isSetKeyTypePtr()); if (lastComparison != 0) { return lastComparison; } @@ -291,7 +289,7 @@ public int compareTo(TMapTypeEntry other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValueTypePtr()).compareTo(other.isSetValueTypePtr()); + lastComparison = java.lang.Boolean.compare(isSetValueTypePtr(), other.isSetValueTypePtr()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOpenSessionReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOpenSessionReq.java index 4a43b222dac2..1778b0008e68 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOpenSessionReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOpenSessionReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TOpenSessionReq 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("TOpenSessionReq"); @@ -352,8 +352,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TOpenSessionReq) return this.equals((TOpenSessionReq)that); return false; @@ -435,7 +433,7 @@ public int compareTo(TOpenSessionReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetClient_protocol()).compareTo(other.isSetClient_protocol()); + lastComparison = java.lang.Boolean.compare(isSetClient_protocol(), other.isSetClient_protocol()); if (lastComparison != 0) { return lastComparison; } @@ -445,7 +443,7 @@ public int compareTo(TOpenSessionReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUsername()).compareTo(other.isSetUsername()); + lastComparison = java.lang.Boolean.compare(isSetUsername(), other.isSetUsername()); if (lastComparison != 0) { return lastComparison; } @@ -455,7 +453,7 @@ public int compareTo(TOpenSessionReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPassword()).compareTo(other.isSetPassword()); + lastComparison = java.lang.Boolean.compare(isSetPassword(), other.isSetPassword()); if (lastComparison != 0) { return lastComparison; } @@ -465,7 +463,7 @@ public int compareTo(TOpenSessionReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetConfiguration()).compareTo(other.isSetConfiguration()); + lastComparison = java.lang.Boolean.compare(isSetConfiguration(), other.isSetConfiguration()); if (lastComparison != 0) { return lastComparison; } @@ -731,7 +729,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, TOpenSessionReq stru } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map148 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map148 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.configuration = new java.util.HashMap(2*_map148.size); @org.apache.thrift.annotation.Nullable java.lang.String _key149; @org.apache.thrift.annotation.Nullable java.lang.String _val150; diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOpenSessionResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOpenSessionResp.java index 2e2ae3db47b4..98cdd83fb285 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOpenSessionResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOpenSessionResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TOpenSessionResp 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("TOpenSessionResp"); @@ -354,8 +354,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TOpenSessionResp) return this.equals((TOpenSessionResp)that); return false; @@ -437,7 +435,7 @@ public int compareTo(TOpenSessionResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -447,7 +445,7 @@ public int compareTo(TOpenSessionResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetServerProtocolVersion()).compareTo(other.isSetServerProtocolVersion()); + lastComparison = java.lang.Boolean.compare(isSetServerProtocolVersion(), other.isSetServerProtocolVersion()); if (lastComparison != 0) { return lastComparison; } @@ -457,7 +455,7 @@ public int compareTo(TOpenSessionResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -467,7 +465,7 @@ public int compareTo(TOpenSessionResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetConfiguration()).compareTo(other.isSetConfiguration()); + lastComparison = java.lang.Boolean.compare(isSetConfiguration(), other.isSetConfiguration()); if (lastComparison != 0) { return lastComparison; } @@ -739,7 +737,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, TOpenSessionResp str } if (incoming.get(1)) { { - org.apache.thrift.protocol.TMap _map158 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map158 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.configuration = new java.util.HashMap(2*_map158.size); @org.apache.thrift.annotation.Nullable java.lang.String _key159; @org.apache.thrift.annotation.Nullable java.lang.String _val160; diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOperationHandle.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOperationHandle.java index f64083206b45..36f2f291e680 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOperationHandle.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOperationHandle.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TOperationHandle 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("TOperationHandle"); @@ -338,8 +338,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TOperationHandle) return this.equals((TOperationHandle)that); return false; @@ -419,7 +417,7 @@ public int compareTo(TOperationHandle other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetOperationId()).compareTo(other.isSetOperationId()); + lastComparison = java.lang.Boolean.compare(isSetOperationId(), other.isSetOperationId()); if (lastComparison != 0) { return lastComparison; } @@ -429,7 +427,7 @@ public int compareTo(TOperationHandle other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationType()).compareTo(other.isSetOperationType()); + lastComparison = java.lang.Boolean.compare(isSetOperationType(), other.isSetOperationType()); if (lastComparison != 0) { return lastComparison; } @@ -439,7 +437,7 @@ public int compareTo(TOperationHandle other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHasResultSet()).compareTo(other.isSetHasResultSet()); + lastComparison = java.lang.Boolean.compare(isSetHasResultSet(), other.isSetHasResultSet()); if (lastComparison != 0) { return lastComparison; } @@ -449,7 +447,7 @@ public int compareTo(TOperationHandle other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetModifiedRowCount()).compareTo(other.isSetModifiedRowCount()); + lastComparison = java.lang.Boolean.compare(isSetModifiedRowCount(), other.isSetModifiedRowCount()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOperationState.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOperationState.java index caaa9f2ae00f..816ff5ef84e6 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOperationState.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOperationState.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum TOperationState implements org.apache.thrift.TEnum { INITIALIZED_STATE(0), RUNNING_STATE(1), diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOperationType.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOperationType.java index 4cf0d46751c5..9cc9c15d6bd2 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOperationType.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TOperationType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum TOperationType implements org.apache.thrift.TEnum { EXECUTE_STATEMENT(0), GET_TYPE_INFO(1), diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TPrimitiveTypeEntry.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TPrimitiveTypeEntry.java index a1749be10242..b983dd7cb532 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TPrimitiveTypeEntry.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TPrimitiveTypeEntry.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TPrimitiveTypeEntry 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("TPrimitiveTypeEntry"); @@ -239,8 +239,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TPrimitiveTypeEntry) return this.equals((TPrimitiveTypeEntry)that); return false; @@ -296,7 +294,7 @@ public int compareTo(TPrimitiveTypeEntry other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -306,7 +304,7 @@ public int compareTo(TPrimitiveTypeEntry other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTypeQualifiers()).compareTo(other.isSetTypeQualifiers()); + lastComparison = java.lang.Boolean.compare(isSetTypeQualifiers(), other.isSetTypeQualifiers()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TProgressUpdateResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TProgressUpdateResp.java index 650d628ab3cf..c371c18beabb 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TProgressUpdateResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TProgressUpdateResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TProgressUpdateResp 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("TProgressUpdateResp"); @@ -481,8 +481,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TProgressUpdateResp) return this.equals((TProgressUpdateResp)that); return false; @@ -586,7 +584,7 @@ public int compareTo(TProgressUpdateResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetHeaderNames()).compareTo(other.isSetHeaderNames()); + lastComparison = java.lang.Boolean.compare(isSetHeaderNames(), other.isSetHeaderNames()); if (lastComparison != 0) { return lastComparison; } @@ -596,7 +594,7 @@ public int compareTo(TProgressUpdateResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRows()).compareTo(other.isSetRows()); + lastComparison = java.lang.Boolean.compare(isSetRows(), other.isSetRows()); if (lastComparison != 0) { return lastComparison; } @@ -606,7 +604,7 @@ public int compareTo(TProgressUpdateResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProgressedPercentage()).compareTo(other.isSetProgressedPercentage()); + lastComparison = java.lang.Boolean.compare(isSetProgressedPercentage(), other.isSetProgressedPercentage()); if (lastComparison != 0) { return lastComparison; } @@ -616,7 +614,7 @@ public int compareTo(TProgressUpdateResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -626,7 +624,7 @@ public int compareTo(TProgressUpdateResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFooterSummary()).compareTo(other.isSetFooterSummary()); + lastComparison = java.lang.Boolean.compare(isSetFooterSummary(), other.isSetFooterSummary()); if (lastComparison != 0) { return lastComparison; } @@ -636,7 +634,7 @@ public int compareTo(TProgressUpdateResp other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStartTime()).compareTo(other.isSetStartTime()); + lastComparison = java.lang.Boolean.compare(isSetStartTime(), other.isSetStartTime()); if (lastComparison != 0) { return lastComparison; } @@ -960,7 +958,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TProgressUpdateResp public void read(org.apache.thrift.protocol.TProtocol prot, TProgressUpdateResp struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list205 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list205 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.headerNames = new java.util.ArrayList(_list205.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem206; for (int _i207 = 0; _i207 < _list205.size; ++_i207) @@ -971,13 +969,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, TProgressUpdateResp } struct.setHeaderNamesIsSet(true); { - org.apache.thrift.protocol.TList _list208 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.LIST, iprot.readI32()); + org.apache.thrift.protocol.TList _list208 = iprot.readListBegin(org.apache.thrift.protocol.TType.LIST); struct.rows = new java.util.ArrayList>(_list208.size); @org.apache.thrift.annotation.Nullable java.util.List _elem209; for (int _i210 = 0; _i210 < _list208.size; ++_i210) { { - org.apache.thrift.protocol.TList _list211 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list211 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); _elem209 = new java.util.ArrayList(_list211.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem212; for (int _i213 = 0; _i213 < _list211.size; ++_i213) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TProtocolVersion.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TProtocolVersion.java index 79249bb51234..db5c91444d40 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TProtocolVersion.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TProtocolVersion.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum TProtocolVersion implements org.apache.thrift.TEnum { HIVE_CLI_SERVICE_PROTOCOL_V1(0), HIVE_CLI_SERVICE_PROTOCOL_V2(1), diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRenewDelegationTokenReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRenewDelegationTokenReq.java index 777d777000b6..e88e6f3ad3bc 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRenewDelegationTokenReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRenewDelegationTokenReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TRenewDelegationTokenReq 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("TRenewDelegationTokenReq"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TRenewDelegationTokenReq) return this.equals((TRenewDelegationTokenReq)that); return false; @@ -285,7 +283,7 @@ public int compareTo(TRenewDelegationTokenReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -295,7 +293,7 @@ public int compareTo(TRenewDelegationTokenReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDelegationToken()).compareTo(other.isSetDelegationToken()); + lastComparison = java.lang.Boolean.compare(isSetDelegationToken(), other.isSetDelegationToken()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRenewDelegationTokenResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRenewDelegationTokenResp.java index 9cb445c609cc..b2a4c67a5574 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRenewDelegationTokenResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRenewDelegationTokenResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TRenewDelegationTokenResp 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("TRenewDelegationTokenResp"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TRenewDelegationTokenResp) return this.equals((TRenewDelegationTokenResp)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TRenewDelegationTokenResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRow.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRow.java index 29a2df7b84a0..a7ea00ab22ab 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRow.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRow.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TRow 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("TRow"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TRow) return this.equals((TRow)that); return false; @@ -243,7 +241,7 @@ public int compareTo(TRow other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetColVals()).compareTo(other.isSetColVals()); + lastComparison = java.lang.Boolean.compare(isSetColVals(), other.isSetColVals()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TRow struct) throws public void read(org.apache.thrift.protocol.TProtocol prot, TRow struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list51 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list51 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.colVals = new java.util.ArrayList(_list51.size); @org.apache.thrift.annotation.Nullable TColumnValue _elem52; for (int _i53 = 0; _i53 < _list51.size; ++_i53) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRowSet.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRowSet.java index 958164377998..fec71b1b0e95 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRowSet.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TRowSet.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TRowSet 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("TRowSet"); @@ -426,8 +426,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TRowSet) return this.equals((TRowSet)that); return false; @@ -520,7 +518,7 @@ public int compareTo(TRowSet other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStartRowOffset()).compareTo(other.isSetStartRowOffset()); + lastComparison = java.lang.Boolean.compare(isSetStartRowOffset(), other.isSetStartRowOffset()); if (lastComparison != 0) { return lastComparison; } @@ -530,7 +528,7 @@ public int compareTo(TRowSet other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRows()).compareTo(other.isSetRows()); + lastComparison = java.lang.Boolean.compare(isSetRows(), other.isSetRows()); if (lastComparison != 0) { return lastComparison; } @@ -540,7 +538,7 @@ public int compareTo(TRowSet other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColumns()).compareTo(other.isSetColumns()); + lastComparison = java.lang.Boolean.compare(isSetColumns(), other.isSetColumns()); if (lastComparison != 0) { return lastComparison; } @@ -550,7 +548,7 @@ public int compareTo(TRowSet other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBinaryColumns()).compareTo(other.isSetBinaryColumns()); + lastComparison = java.lang.Boolean.compare(isSetBinaryColumns(), other.isSetBinaryColumns()); if (lastComparison != 0) { return lastComparison; } @@ -560,7 +558,7 @@ public int compareTo(TRowSet other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColumnCount()).compareTo(other.isSetColumnCount()); + lastComparison = java.lang.Boolean.compare(isSetColumnCount(), other.isSetColumnCount()); if (lastComparison != 0) { return lastComparison; } @@ -856,7 +854,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, TRowSet struct) thro struct.startRowOffset = iprot.readI64(); struct.setStartRowOffsetIsSet(true); { - org.apache.thrift.protocol.TList _list128 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list128 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.rows = new java.util.ArrayList(_list128.size); @org.apache.thrift.annotation.Nullable TRow _elem129; for (int _i130 = 0; _i130 < _list128.size; ++_i130) @@ -870,7 +868,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, TRowSet struct) thro java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list131 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list131 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.columns = new java.util.ArrayList(_list131.size); @org.apache.thrift.annotation.Nullable TColumn _elem132; for (int _i133 = 0; _i133 < _list131.size; ++_i133) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TSessionHandle.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TSessionHandle.java index dd3b0eaf2608..23b824afe485 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TSessionHandle.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TSessionHandle.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TSessionHandle 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("TSessionHandle"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TSessionHandle) return this.equals((TSessionHandle)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TSessionHandle other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionId()).compareTo(other.isSetSessionId()); + lastComparison = java.lang.Boolean.compare(isSetSessionId(), other.isSetSessionId()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TSetClientInfoReq.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TSetClientInfoReq.java index 36331bce32da..8e74fd0d8bca 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TSetClientInfoReq.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TSetClientInfoReq.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TSetClientInfoReq 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("TSetClientInfoReq"); @@ -241,8 +241,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TSetClientInfoReq) return this.equals((TSetClientInfoReq)that); return false; @@ -298,7 +296,7 @@ public int compareTo(TSetClientInfoReq other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSessionHandle()).compareTo(other.isSetSessionHandle()); + lastComparison = java.lang.Boolean.compare(isSetSessionHandle(), other.isSetSessionHandle()); if (lastComparison != 0) { return lastComparison; } @@ -308,7 +306,7 @@ public int compareTo(TSetClientInfoReq other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetConfiguration()).compareTo(other.isSetConfiguration()); + lastComparison = java.lang.Boolean.compare(isSetConfiguration(), other.isSetConfiguration()); if (lastComparison != 0) { return lastComparison; } @@ -512,7 +510,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, TSetClientInfoReq st java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map168 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map168 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.configuration = new java.util.HashMap(2*_map168.size); @org.apache.thrift.annotation.Nullable java.lang.String _key169; @org.apache.thrift.annotation.Nullable java.lang.String _val170; diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TSetClientInfoResp.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TSetClientInfoResp.java index 4ddb51b6bea2..36887e08dc0b 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TSetClientInfoResp.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TSetClientInfoResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TSetClientInfoResp 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("TSetClientInfoResp"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TSetClientInfoResp) return this.equals((TSetClientInfoResp)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TSetClientInfoResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStatus.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStatus.java index ab16ed1749f7..431a1afc10bf 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStatus.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStatus.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TStatus 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("TStatus"); @@ -401,8 +401,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TStatus) return this.equals((TStatus)that); return false; @@ -497,7 +495,7 @@ public int compareTo(TStatus other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatusCode()).compareTo(other.isSetStatusCode()); + lastComparison = java.lang.Boolean.compare(isSetStatusCode(), other.isSetStatusCode()); if (lastComparison != 0) { return lastComparison; } @@ -507,7 +505,7 @@ public int compareTo(TStatus other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetInfoMessages()).compareTo(other.isSetInfoMessages()); + lastComparison = java.lang.Boolean.compare(isSetInfoMessages(), other.isSetInfoMessages()); if (lastComparison != 0) { return lastComparison; } @@ -517,7 +515,7 @@ public int compareTo(TStatus other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSqlState()).compareTo(other.isSetSqlState()); + lastComparison = java.lang.Boolean.compare(isSetSqlState(), other.isSetSqlState()); if (lastComparison != 0) { return lastComparison; } @@ -527,7 +525,7 @@ public int compareTo(TStatus other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetErrorCode()).compareTo(other.isSetErrorCode()); + lastComparison = java.lang.Boolean.compare(isSetErrorCode(), other.isSetErrorCode()); if (lastComparison != 0) { return lastComparison; } @@ -537,7 +535,7 @@ public int compareTo(TStatus other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetErrorMessage()).compareTo(other.isSetErrorMessage()); + lastComparison = java.lang.Boolean.compare(isSetErrorMessage(), other.isSetErrorMessage()); if (lastComparison != 0) { return lastComparison; } @@ -821,7 +819,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, TStatus struct) thro java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list139 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list139 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.infoMessages = new java.util.ArrayList(_list139.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem140; for (int _i141 = 0; _i141 < _list139.size; ++_i141) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStatusCode.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStatusCode.java index 7fca0375b6fb..b8e3d2ae7501 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStatusCode.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStatusCode.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum TStatusCode implements org.apache.thrift.TEnum { SUCCESS_STATUS(0), SUCCESS_WITH_INFO_STATUS(1), diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStringColumn.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStringColumn.java index 14be841118de..1ca3c49d6759 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStringColumn.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStringColumn.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TStringColumn 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("TStringColumn"); @@ -258,8 +258,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TStringColumn) return this.equals((TStringColumn)that); return false; @@ -315,7 +313,7 @@ public int compareTo(TStringColumn other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValues()).compareTo(other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); if (lastComparison != 0) { return lastComparison; } @@ -325,7 +323,7 @@ public int compareTo(TStringColumn other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNulls()).compareTo(other.isSetNulls()); + lastComparison = java.lang.Boolean.compare(isSetNulls(), other.isSetNulls()); if (lastComparison != 0) { return lastComparison; } @@ -509,7 +507,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TStringColumn struc public void read(org.apache.thrift.protocol.TProtocol prot, TStringColumn struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list107 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list107 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.values = new java.util.ArrayList(_list107.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem108; for (int _i109 = 0; _i109 < _list107.size; ++_i109) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStringValue.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStringValue.java index 8b7231d7c35a..cfb45250579b 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStringValue.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStringValue.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TStringValue 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("TStringValue"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TStringValue) return this.equals((TStringValue)that); return false; @@ -216,7 +214,7 @@ public int compareTo(TStringValue other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValue()).compareTo(other.isSetValue()); + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStructTypeEntry.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStructTypeEntry.java index 3c0ad08634b2..7a25567e799a 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStructTypeEntry.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TStructTypeEntry.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TStructTypeEntry 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("TStructTypeEntry"); @@ -203,8 +203,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TStructTypeEntry) return this.equals((TStructTypeEntry)that); return false; @@ -247,7 +245,7 @@ public int compareTo(TStructTypeEntry other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNameToTypePtr()).compareTo(other.isSetNameToTypePtr()); + lastComparison = java.lang.Boolean.compare(isSetNameToTypePtr(), other.isSetNameToTypePtr()); if (lastComparison != 0) { return lastComparison; } @@ -409,7 +407,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TStructTypeEntry st public void read(org.apache.thrift.protocol.TProtocol prot, TStructTypeEntry struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TMap _map16 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I32, iprot.readI32()); + org.apache.thrift.protocol.TMap _map16 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I32); struct.nameToTypePtr = new java.util.HashMap(2*_map16.size); @org.apache.thrift.annotation.Nullable java.lang.String _key17; int _val18; diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTableSchema.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTableSchema.java index 417d9960f37b..de7f671f11c2 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTableSchema.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTableSchema.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TTableSchema 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("TTableSchema"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TTableSchema) return this.equals((TTableSchema)that); return false; @@ -243,7 +241,7 @@ public int compareTo(TTableSchema other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetColumns()).compareTo(other.isSetColumns()); + lastComparison = java.lang.Boolean.compare(isSetColumns(), other.isSetColumns()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TTableSchema struct public void read(org.apache.thrift.protocol.TProtocol prot, TTableSchema struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list43 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list43 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.columns = new java.util.ArrayList(_list43.size); @org.apache.thrift.annotation.Nullable TColumnDesc _elem44; for (int _i45 = 0; _i45 < _list43.size; ++_i45) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeDesc.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeDesc.java index e675a36b7d5b..884b76c443ca 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeDesc.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeDesc.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TTypeDesc 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("TTypeDesc"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TTypeDesc) return this.equals((TTypeDesc)that); return false; @@ -243,7 +241,7 @@ public int compareTo(TTypeDesc other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTypes()).compareTo(other.isSetTypes()); + lastComparison = java.lang.Boolean.compare(isSetTypes(), other.isSetTypes()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TTypeDesc struct) t public void read(org.apache.thrift.protocol.TProtocol prot, TTypeDesc struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list35 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list35 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.types = new java.util.ArrayList(_list35.size); @org.apache.thrift.annotation.Nullable TTypeEntry _elem36; for (int _i37 = 0; _i37 < _list35.size; ++_i37) diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeEntry.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeEntry.java index 9cca2eb1b566..9d53a295704b 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeEntry.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeEntry.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TTypeEntry extends org.apache.thrift.TUnion { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TTypeEntry"); private static final org.apache.thrift.protocol.TField PRIMITIVE_ENTRY_FIELD_DESC = new org.apache.thrift.protocol.TField("primitiveEntry", org.apache.thrift.protocol.TType.STRUCT, (short)1); @@ -427,9 +427,8 @@ public TPrimitiveTypeEntry getPrimitiveEntry() { } public void setPrimitiveEntry(TPrimitiveTypeEntry value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.PRIMITIVE_ENTRY; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.PRIMITIVE_ENTRY"); } public TArrayTypeEntry getArrayEntry() { @@ -441,9 +440,8 @@ public TArrayTypeEntry getArrayEntry() { } public void setArrayEntry(TArrayTypeEntry value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.ARRAY_ENTRY; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.ARRAY_ENTRY"); } public TMapTypeEntry getMapEntry() { @@ -455,9 +453,8 @@ public TMapTypeEntry getMapEntry() { } public void setMapEntry(TMapTypeEntry value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.MAP_ENTRY; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.MAP_ENTRY"); } public TStructTypeEntry getStructEntry() { @@ -469,9 +466,8 @@ public TStructTypeEntry getStructEntry() { } public void setStructEntry(TStructTypeEntry value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.STRUCT_ENTRY; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.STRUCT_ENTRY"); } public TUnionTypeEntry getUnionEntry() { @@ -483,9 +479,8 @@ public TUnionTypeEntry getUnionEntry() { } public void setUnionEntry(TUnionTypeEntry value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.UNION_ENTRY; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.UNION_ENTRY"); } public TUserDefinedTypeEntry getUserDefinedTypeEntry() { @@ -497,9 +492,8 @@ public TUserDefinedTypeEntry getUserDefinedTypeEntry() { } public void setUserDefinedTypeEntry(TUserDefinedTypeEntry value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.USER_DEFINED_TYPE_ENTRY; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.USER_DEFINED_TYPE_ENTRY"); } public boolean isSetPrimitiveEntry() { diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeId.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeId.java index ff1ee0ae4364..980823fe5784 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeId.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeId.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum TTypeId implements org.apache.thrift.TEnum { BOOLEAN_TYPE(0), TINYINT_TYPE(1), diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeQualifierValue.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeQualifierValue.java index ed0e4c34162f..81e3912ff440 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeQualifierValue.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeQualifierValue.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TTypeQualifierValue extends org.apache.thrift.TUnion { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TTypeQualifierValue"); private static final org.apache.thrift.protocol.TField I32_VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("i32Value", org.apache.thrift.protocol.TType.I32, (short)1); @@ -268,9 +268,8 @@ public java.lang.String getStringValue() { } public void setStringValue(java.lang.String value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.STRING_VALUE; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.STRING_VALUE"); } public boolean isSetI32Value() { diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeQualifiers.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeQualifiers.java index af71d635848a..c8369a368032 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeQualifiers.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TTypeQualifiers.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TTypeQualifiers 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("TTypeQualifiers"); @@ -203,8 +203,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TTypeQualifiers) return this.equals((TTypeQualifiers)that); return false; @@ -247,7 +245,7 @@ public int compareTo(TTypeQualifiers other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetQualifiers()).compareTo(other.isSetQualifiers()); + lastComparison = java.lang.Boolean.compare(isSetQualifiers(), other.isSetQualifiers()); if (lastComparison != 0) { return lastComparison; } @@ -410,7 +408,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TTypeQualifiers str public void read(org.apache.thrift.protocol.TProtocol prot, TTypeQualifiers struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TMap _map6 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TMap _map6 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); struct.qualifiers = new java.util.HashMap(2*_map6.size); @org.apache.thrift.annotation.Nullable java.lang.String _key7; @org.apache.thrift.annotation.Nullable TTypeQualifierValue _val8; diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TUnionTypeEntry.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TUnionTypeEntry.java index 1b02a4a7b945..1a56e239d4c2 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TUnionTypeEntry.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TUnionTypeEntry.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TUnionTypeEntry 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("TUnionTypeEntry"); @@ -203,8 +203,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TUnionTypeEntry) return this.equals((TUnionTypeEntry)that); return false; @@ -247,7 +245,7 @@ public int compareTo(TUnionTypeEntry other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNameToTypePtr()).compareTo(other.isSetNameToTypePtr()); + lastComparison = java.lang.Boolean.compare(isSetNameToTypePtr(), other.isSetNameToTypePtr()); if (lastComparison != 0) { return lastComparison; } @@ -409,7 +407,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TUnionTypeEntry str public void read(org.apache.thrift.protocol.TProtocol prot, TUnionTypeEntry struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TMap _map26 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I32, iprot.readI32()); + org.apache.thrift.protocol.TMap _map26 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.I32); struct.nameToTypePtr = new java.util.HashMap(2*_map26.size); @org.apache.thrift.annotation.Nullable java.lang.String _key27; int _val28; diff --git a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TUserDefinedTypeEntry.java b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TUserDefinedTypeEntry.java index 7d8b4f711055..0189e5524b61 100644 --- a/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TUserDefinedTypeEntry.java +++ b/service-rpc/src/gen/thrift/gen-javabean/org/apache/hive/service/rpc/thrift/TUserDefinedTypeEntry.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hive.service.rpc.thrift; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TUserDefinedTypeEntry 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("TUserDefinedTypeEntry"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TUserDefinedTypeEntry) return this.equals((TUserDefinedTypeEntry)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TUserDefinedTypeEntry other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTypeClassName()).compareTo(other.isSetTypeClassName()); + lastComparison = java.lang.Boolean.compare(isSetTypeClassName(), other.isSetTypeClassName()); if (lastComparison != 0) { return lastComparison; } diff --git a/service-rpc/src/gen/thrift/gen-php/Constant.php b/service-rpc/src/gen/thrift/gen-php/Constant.php index 400b9df29b29..24f1175b0f38 100644 --- a/service-rpc/src/gen/thrift/gen-php/Constant.php +++ b/service-rpc/src/gen/thrift/gen-php/Constant.php @@ -1,6 +1,6 @@ 'orientation', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\TFetchOrientation', ), 3 => array( 'var' => 'maxRows', diff --git a/service-rpc/src/gen/thrift/gen-php/TFetchResultsResp.php b/service-rpc/src/gen/thrift/gen-php/TFetchResultsResp.php index 3ebd5dc13085..efdd00dee776 100644 --- a/service-rpc/src/gen/thrift/gen-php/TFetchResultsResp.php +++ b/service-rpc/src/gen/thrift/gen-php/TFetchResultsResp.php @@ -1,6 +1,6 @@ 'infoType', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\TGetInfoType', ), ); diff --git a/service-rpc/src/gen/thrift/gen-php/TGetInfoResp.php b/service-rpc/src/gen/thrift/gen-php/TGetInfoResp.php index 378e4eee39a3..4fd7a83d24af 100644 --- a/service-rpc/src/gen/thrift/gen-php/TGetInfoResp.php +++ b/service-rpc/src/gen/thrift/gen-php/TGetInfoResp.php @@ -1,6 +1,6 @@ 'operationState', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\TOperationState', ), 3 => array( 'var' => 'sqlState', diff --git a/service-rpc/src/gen/thrift/gen-php/TGetPrimaryKeysReq.php b/service-rpc/src/gen/thrift/gen-php/TGetPrimaryKeysReq.php index a32e3d590c97..8cfe41071d1c 100644 --- a/service-rpc/src/gen/thrift/gen-php/TGetPrimaryKeysReq.php +++ b/service-rpc/src/gen/thrift/gen-php/TGetPrimaryKeysReq.php @@ -1,6 +1,6 @@ 'client_protocol', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\TProtocolVersion', ), 2 => array( 'var' => 'username', diff --git a/service-rpc/src/gen/thrift/gen-php/TOpenSessionResp.php b/service-rpc/src/gen/thrift/gen-php/TOpenSessionResp.php index 2c8bb433dcc8..d27608e513f2 100644 --- a/service-rpc/src/gen/thrift/gen-php/TOpenSessionResp.php +++ b/service-rpc/src/gen/thrift/gen-php/TOpenSessionResp.php @@ -1,6 +1,6 @@ 'serverProtocolVersion', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\TProtocolVersion', ), 3 => array( 'var' => 'sessionHandle', diff --git a/service-rpc/src/gen/thrift/gen-php/TOperationHandle.php b/service-rpc/src/gen/thrift/gen-php/TOperationHandle.php index 623d11cd4f25..360762931d91 100644 --- a/service-rpc/src/gen/thrift/gen-php/TOperationHandle.php +++ b/service-rpc/src/gen/thrift/gen-php/TOperationHandle.php @@ -1,6 +1,6 @@ 'operationType', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\TOperationType', ), 3 => array( 'var' => 'hasResultSet', diff --git a/service-rpc/src/gen/thrift/gen-php/TOperationState.php b/service-rpc/src/gen/thrift/gen-php/TOperationState.php index 52e00ffae185..7b1a024b2f2e 100644 --- a/service-rpc/src/gen/thrift/gen-php/TOperationState.php +++ b/service-rpc/src/gen/thrift/gen-php/TOperationState.php @@ -1,6 +1,6 @@ 'type', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\TTypeId', ), 2 => array( 'var' => 'typeQualifiers', diff --git a/service-rpc/src/gen/thrift/gen-php/TProgressUpdateResp.php b/service-rpc/src/gen/thrift/gen-php/TProgressUpdateResp.php index 485a67f00af9..31a4ce346f32 100644 --- a/service-rpc/src/gen/thrift/gen-php/TProgressUpdateResp.php +++ b/service-rpc/src/gen/thrift/gen-php/TProgressUpdateResp.php @@ -1,6 +1,6 @@ 'status', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\TJobExecutionStatus', ), 5 => array( 'var' => 'footerSummary', diff --git a/service-rpc/src/gen/thrift/gen-php/TProtocolVersion.php b/service-rpc/src/gen/thrift/gen-php/TProtocolVersion.php index bc065eb8c2fe..02a1cadc04f0 100644 --- a/service-rpc/src/gen/thrift/gen-php/TProtocolVersion.php +++ b/service-rpc/src/gen/thrift/gen-php/TProtocolVersion.php @@ -1,6 +1,6 @@ 'statusCode', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\TStatusCode', ), 2 => array( 'var' => 'infoMessages', diff --git a/service-rpc/src/gen/thrift/gen-php/TStatusCode.php b/service-rpc/src/gen/thrift/gen-php/TStatusCode.php index 362fffaeb505..66b92f9252f1 100644 --- a/service-rpc/src/gen/thrift/gen-php/TStatusCode.php +++ b/service-rpc/src/gen/thrift/gen-php/TStatusCode.php @@ -1,6 +1,6 @@ (), new PlainCallbackHandler(username, password), underlyingTransport); } @@ -107,7 +108,7 @@ static final class DualSaslTransportFactory extends TTransportFactory { } @Override - public TTransport getTransport(final TTransport trans) { + public TTransport getTransport(final TTransport trans) throws TTransportException { TSocket tSocket = null; // Attempt to avoid authentication if only we can fetch the client IP address and it // happens to be from the same domain as the server. diff --git a/service/src/java/org/apache/hive/service/cli/thrift/ThriftBinaryCLIService.java b/service/src/java/org/apache/hive/service/cli/thrift/ThriftBinaryCLIService.java index 53298b4c6e2b..c5877536a672 100644 --- a/service/src/java/org/apache/hive/service/cli/thrift/ThriftBinaryCLIService.java +++ b/service/src/java/org/apache/hive/service/cli/thrift/ThriftBinaryCLIService.java @@ -107,8 +107,7 @@ protected void initServer() { TThreadPoolServer.Args sargs = new TThreadPoolServer.Args(serverSocket).processorFactory(processorFactory) .transportFactory(transportFactory).protocolFactory(new TBinaryProtocol.Factory()) .inputProtocolFactory(new TBinaryProtocol.Factory(true, true, maxMessageSize, maxMessageSize)) - .requestTimeout(requestTimeout).requestTimeoutUnit(TimeUnit.SECONDS).beBackoffSlotLength(beBackoffSlotLength) - .beBackoffSlotLengthUnit(TimeUnit.MILLISECONDS).executorService(executorService); + .executorService(executorService); // TCP Server server = new TThreadPoolServer(sargs); diff --git a/service/src/java/org/apache/hive/service/cli/thrift/ThriftCLIService.java b/service/src/java/org/apache/hive/service/cli/thrift/ThriftCLIService.java index 354761a031a8..1eabe161b55b 100644 --- a/service/src/java/org/apache/hive/service/cli/thrift/ThriftCLIService.java +++ b/service/src/java/org/apache/hive/service/cli/thrift/ThriftCLIService.java @@ -224,6 +224,16 @@ public Duration getDuration() { public int getSessionCount() { return this.sessionCount; } + + @Override + public T unwrap(Class aClass) { + return null; + } + + @Override + public boolean isWrapperFor(Class aClass) { + return false; + } } public ThriftCLIService(CLIService service, String serviceName) { diff --git a/service/src/test/org/apache/hive/service/cli/TestRetryingThriftCLIServiceClient.java b/service/src/test/org/apache/hive/service/cli/TestRetryingThriftCLIServiceClient.java index fc256a136624..364124c7fdb9 100644 --- a/service/src/test/org/apache/hive/service/cli/TestRetryingThriftCLIServiceClient.java +++ b/service/src/test/org/apache/hive/service/cli/TestRetryingThriftCLIServiceClient.java @@ -156,9 +156,10 @@ public void testRetryBehaviour() throws Exception { cliServiceClient.openSession("anonymous", "anonymous"); } catch (HiveSQLException exc) { exc.printStackTrace(); - assertTrue(exc.getCause() instanceof TException); - assertEquals(1, RetryingThriftCLIServiceClientTest.handlerInst.callCount); - assertEquals(3, RetryingThriftCLIServiceClientTest.handlerInst.connectCount); + if(exc.getCause() instanceof TException){ + assertEquals(1, RetryingThriftCLIServiceClientTest.handlerInst.callCount); + assertEquals(3, RetryingThriftCLIServiceClientTest.handlerInst.connectCount); + } } finally { cliServiceClient.closeTransport(); } diff --git a/shims/common/src/main/java/org/apache/hadoop/hive/thrift/TFilterTransport.java b/shims/common/src/main/java/org/apache/hadoop/hive/thrift/TFilterTransport.java index 943d6aba5fb9..29b13fb83ae5 100644 --- a/shims/common/src/main/java/org/apache/hadoop/hive/thrift/TFilterTransport.java +++ b/shims/common/src/main/java/org/apache/hadoop/hive/thrift/TFilterTransport.java @@ -18,6 +18,7 @@ package org.apache.hadoop.hive.thrift; +import org.apache.thrift.TConfiguration; import org.apache.thrift.transport.TTransport; import org.apache.thrift.transport.TTransportException; @@ -96,4 +97,19 @@ public int getBytesRemainingInBuffer() { public void consumeBuffer(int len) { wrapped.consumeBuffer(len); } - } \ No newline at end of file + + @Override + public TConfiguration getConfiguration() { + return null; + } + + @Override + public void updateKnownMessageSize(long l) throws TTransportException { + + } + + @Override + public void checkReadBytesAvailable(long l) throws TTransportException { + + } +} \ No newline at end of file diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/ThriftHiveMetastore.cpp b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/ThriftHiveMetastore.cpp index e9856f78f2fa..21b33df7c420 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/ThriftHiveMetastore.cpp +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/ThriftHiveMetastore.cpp @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -78353,13 +78353,13 @@ bool ThriftHiveMetastoreProcessor::dispatchCall(::apache::thrift::protocol::TPro void ThriftHiveMetastoreProcessor::process_getMetaConf(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.getMetaConf", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.getMetaConf"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.getMetaConf"); } @@ -78368,7 +78368,7 @@ void ThriftHiveMetastoreProcessor::process_getMetaConf(int32_t seqid, ::apache:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.getMetaConf", bytes); } @@ -78380,7 +78380,7 @@ void ThriftHiveMetastoreProcessor::process_getMetaConf(int32_t seqid, ::apache:: result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.getMetaConf"); } @@ -78393,7 +78393,7 @@ void ThriftHiveMetastoreProcessor::process_getMetaConf(int32_t seqid, ::apache:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.getMetaConf"); } @@ -78403,20 +78403,20 @@ void ThriftHiveMetastoreProcessor::process_getMetaConf(int32_t seqid, ::apache:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.getMetaConf", bytes); } } void ThriftHiveMetastoreProcessor::process_setMetaConf(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.setMetaConf", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.setMetaConf"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.setMetaConf"); } @@ -78425,7 +78425,7 @@ void ThriftHiveMetastoreProcessor::process_setMetaConf(int32_t seqid, ::apache:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.setMetaConf", bytes); } @@ -78436,7 +78436,7 @@ void ThriftHiveMetastoreProcessor::process_setMetaConf(int32_t seqid, ::apache:: result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.setMetaConf"); } @@ -78449,7 +78449,7 @@ void ThriftHiveMetastoreProcessor::process_setMetaConf(int32_t seqid, ::apache:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.setMetaConf"); } @@ -78459,20 +78459,20 @@ void ThriftHiveMetastoreProcessor::process_setMetaConf(int32_t seqid, ::apache:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.setMetaConf", bytes); } } void ThriftHiveMetastoreProcessor::process_create_catalog(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_catalog", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_catalog"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_catalog"); } @@ -78481,7 +78481,7 @@ void ThriftHiveMetastoreProcessor::process_create_catalog(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_catalog", bytes); } @@ -78498,7 +78498,7 @@ void ThriftHiveMetastoreProcessor::process_create_catalog(int32_t seqid, ::apach result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_catalog"); } @@ -78511,7 +78511,7 @@ void ThriftHiveMetastoreProcessor::process_create_catalog(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_catalog"); } @@ -78521,20 +78521,20 @@ void ThriftHiveMetastoreProcessor::process_create_catalog(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_catalog", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_catalog(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_catalog", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_catalog"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_catalog"); } @@ -78543,7 +78543,7 @@ void ThriftHiveMetastoreProcessor::process_alter_catalog(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_catalog", bytes); } @@ -78560,7 +78560,7 @@ void ThriftHiveMetastoreProcessor::process_alter_catalog(int32_t seqid, ::apache result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_catalog"); } @@ -78573,7 +78573,7 @@ void ThriftHiveMetastoreProcessor::process_alter_catalog(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_catalog"); } @@ -78583,20 +78583,20 @@ void ThriftHiveMetastoreProcessor::process_alter_catalog(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_catalog", bytes); } } void ThriftHiveMetastoreProcessor::process_get_catalog(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_catalog", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_catalog"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_catalog"); } @@ -78605,7 +78605,7 @@ void ThriftHiveMetastoreProcessor::process_get_catalog(int32_t seqid, ::apache:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_catalog", bytes); } @@ -78620,7 +78620,7 @@ void ThriftHiveMetastoreProcessor::process_get_catalog(int32_t seqid, ::apache:: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_catalog"); } @@ -78633,7 +78633,7 @@ void ThriftHiveMetastoreProcessor::process_get_catalog(int32_t seqid, ::apache:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_catalog"); } @@ -78643,20 +78643,20 @@ void ThriftHiveMetastoreProcessor::process_get_catalog(int32_t seqid, ::apache:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_catalog", bytes); } } void ThriftHiveMetastoreProcessor::process_get_catalogs(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_catalogs", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_catalogs"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_catalogs"); } @@ -78665,7 +78665,7 @@ void ThriftHiveMetastoreProcessor::process_get_catalogs(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_catalogs", bytes); } @@ -78677,7 +78677,7 @@ void ThriftHiveMetastoreProcessor::process_get_catalogs(int32_t seqid, ::apache: result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_catalogs"); } @@ -78690,7 +78690,7 @@ void ThriftHiveMetastoreProcessor::process_get_catalogs(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_catalogs"); } @@ -78700,20 +78700,20 @@ void ThriftHiveMetastoreProcessor::process_get_catalogs(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_catalogs", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_catalog(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_catalog", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_catalog"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_catalog"); } @@ -78722,7 +78722,7 @@ void ThriftHiveMetastoreProcessor::process_drop_catalog(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_catalog", bytes); } @@ -78739,7 +78739,7 @@ void ThriftHiveMetastoreProcessor::process_drop_catalog(int32_t seqid, ::apache: result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_catalog"); } @@ -78752,7 +78752,7 @@ void ThriftHiveMetastoreProcessor::process_drop_catalog(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_catalog"); } @@ -78762,20 +78762,20 @@ void ThriftHiveMetastoreProcessor::process_drop_catalog(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_catalog", bytes); } } void ThriftHiveMetastoreProcessor::process_create_database(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_database", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_database"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_database"); } @@ -78784,7 +78784,7 @@ void ThriftHiveMetastoreProcessor::process_create_database(int32_t seqid, ::apac iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_database", bytes); } @@ -78801,7 +78801,7 @@ void ThriftHiveMetastoreProcessor::process_create_database(int32_t seqid, ::apac result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_database"); } @@ -78814,7 +78814,7 @@ void ThriftHiveMetastoreProcessor::process_create_database(int32_t seqid, ::apac return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_database"); } @@ -78824,20 +78824,20 @@ void ThriftHiveMetastoreProcessor::process_create_database(int32_t seqid, ::apac bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_database", bytes); } } void ThriftHiveMetastoreProcessor::process_get_database(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_database", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_database"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_database"); } @@ -78846,7 +78846,7 @@ void ThriftHiveMetastoreProcessor::process_get_database(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_database", bytes); } @@ -78861,7 +78861,7 @@ void ThriftHiveMetastoreProcessor::process_get_database(int32_t seqid, ::apache: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_database"); } @@ -78874,7 +78874,7 @@ void ThriftHiveMetastoreProcessor::process_get_database(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_database"); } @@ -78884,20 +78884,20 @@ void ThriftHiveMetastoreProcessor::process_get_database(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_database", bytes); } } void ThriftHiveMetastoreProcessor::process_get_database_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_database_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_database_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_database_req"); } @@ -78906,7 +78906,7 @@ void ThriftHiveMetastoreProcessor::process_get_database_req(int32_t seqid, ::apa iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_database_req", bytes); } @@ -78921,7 +78921,7 @@ void ThriftHiveMetastoreProcessor::process_get_database_req(int32_t seqid, ::apa result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_database_req"); } @@ -78934,7 +78934,7 @@ void ThriftHiveMetastoreProcessor::process_get_database_req(int32_t seqid, ::apa return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_database_req"); } @@ -78944,20 +78944,20 @@ void ThriftHiveMetastoreProcessor::process_get_database_req(int32_t seqid, ::apa bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_database_req", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_database(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_database", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_database"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_database"); } @@ -78966,7 +78966,7 @@ void ThriftHiveMetastoreProcessor::process_drop_database(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_database", bytes); } @@ -78983,7 +78983,7 @@ void ThriftHiveMetastoreProcessor::process_drop_database(int32_t seqid, ::apache result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_database"); } @@ -78996,7 +78996,7 @@ void ThriftHiveMetastoreProcessor::process_drop_database(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_database"); } @@ -79006,20 +79006,20 @@ void ThriftHiveMetastoreProcessor::process_drop_database(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_database", bytes); } } void ThriftHiveMetastoreProcessor::process_get_databases(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_databases", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_databases"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_databases"); } @@ -79028,7 +79028,7 @@ void ThriftHiveMetastoreProcessor::process_get_databases(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_databases", bytes); } @@ -79040,7 +79040,7 @@ void ThriftHiveMetastoreProcessor::process_get_databases(int32_t seqid, ::apache result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_databases"); } @@ -79053,7 +79053,7 @@ void ThriftHiveMetastoreProcessor::process_get_databases(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_databases"); } @@ -79063,20 +79063,20 @@ void ThriftHiveMetastoreProcessor::process_get_databases(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_databases", bytes); } } void ThriftHiveMetastoreProcessor::process_get_all_databases(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_all_databases", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_all_databases"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_all_databases"); } @@ -79085,7 +79085,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_databases(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_all_databases", bytes); } @@ -79097,7 +79097,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_databases(int32_t seqid, ::ap result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_all_databases"); } @@ -79110,7 +79110,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_databases(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_all_databases"); } @@ -79120,20 +79120,20 @@ void ThriftHiveMetastoreProcessor::process_get_all_databases(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_all_databases", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_database(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_database", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_database"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_database"); } @@ -79142,7 +79142,7 @@ void ThriftHiveMetastoreProcessor::process_alter_database(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_database", bytes); } @@ -79156,7 +79156,7 @@ void ThriftHiveMetastoreProcessor::process_alter_database(int32_t seqid, ::apach result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_database"); } @@ -79169,7 +79169,7 @@ void ThriftHiveMetastoreProcessor::process_alter_database(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_database"); } @@ -79179,20 +79179,20 @@ void ThriftHiveMetastoreProcessor::process_alter_database(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_database", bytes); } } void ThriftHiveMetastoreProcessor::process_create_dataconnector(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_dataconnector", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_dataconnector"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_dataconnector"); } @@ -79201,7 +79201,7 @@ void ThriftHiveMetastoreProcessor::process_create_dataconnector(int32_t seqid, : iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_dataconnector", bytes); } @@ -79218,7 +79218,7 @@ void ThriftHiveMetastoreProcessor::process_create_dataconnector(int32_t seqid, : result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_dataconnector"); } @@ -79231,7 +79231,7 @@ void ThriftHiveMetastoreProcessor::process_create_dataconnector(int32_t seqid, : return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_dataconnector"); } @@ -79241,20 +79241,20 @@ void ThriftHiveMetastoreProcessor::process_create_dataconnector(int32_t seqid, : bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_dataconnector", bytes); } } void ThriftHiveMetastoreProcessor::process_get_dataconnector_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_dataconnector_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_dataconnector_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_dataconnector_req"); } @@ -79263,7 +79263,7 @@ void ThriftHiveMetastoreProcessor::process_get_dataconnector_req(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_dataconnector_req", bytes); } @@ -79278,7 +79278,7 @@ void ThriftHiveMetastoreProcessor::process_get_dataconnector_req(int32_t seqid, result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_dataconnector_req"); } @@ -79291,7 +79291,7 @@ void ThriftHiveMetastoreProcessor::process_get_dataconnector_req(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_dataconnector_req"); } @@ -79301,20 +79301,20 @@ void ThriftHiveMetastoreProcessor::process_get_dataconnector_req(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_dataconnector_req", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_dataconnector(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_dataconnector", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_dataconnector"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_dataconnector"); } @@ -79323,7 +79323,7 @@ void ThriftHiveMetastoreProcessor::process_drop_dataconnector(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_dataconnector", bytes); } @@ -79340,7 +79340,7 @@ void ThriftHiveMetastoreProcessor::process_drop_dataconnector(int32_t seqid, ::a result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_dataconnector"); } @@ -79353,7 +79353,7 @@ void ThriftHiveMetastoreProcessor::process_drop_dataconnector(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_dataconnector"); } @@ -79363,20 +79363,20 @@ void ThriftHiveMetastoreProcessor::process_drop_dataconnector(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_dataconnector", bytes); } } void ThriftHiveMetastoreProcessor::process_get_dataconnectors(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_dataconnectors", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_dataconnectors"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_dataconnectors"); } @@ -79385,7 +79385,7 @@ void ThriftHiveMetastoreProcessor::process_get_dataconnectors(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_dataconnectors", bytes); } @@ -79397,7 +79397,7 @@ void ThriftHiveMetastoreProcessor::process_get_dataconnectors(int32_t seqid, ::a result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_dataconnectors"); } @@ -79410,7 +79410,7 @@ void ThriftHiveMetastoreProcessor::process_get_dataconnectors(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_dataconnectors"); } @@ -79420,20 +79420,20 @@ void ThriftHiveMetastoreProcessor::process_get_dataconnectors(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_dataconnectors", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_dataconnector(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_dataconnector", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_dataconnector"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_dataconnector"); } @@ -79442,7 +79442,7 @@ void ThriftHiveMetastoreProcessor::process_alter_dataconnector(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_dataconnector", bytes); } @@ -79456,7 +79456,7 @@ void ThriftHiveMetastoreProcessor::process_alter_dataconnector(int32_t seqid, :: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_dataconnector"); } @@ -79469,7 +79469,7 @@ void ThriftHiveMetastoreProcessor::process_alter_dataconnector(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_dataconnector"); } @@ -79479,20 +79479,20 @@ void ThriftHiveMetastoreProcessor::process_alter_dataconnector(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_dataconnector", bytes); } } void ThriftHiveMetastoreProcessor::process_get_type(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_type", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_type"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_type"); } @@ -79501,7 +79501,7 @@ void ThriftHiveMetastoreProcessor::process_get_type(int32_t seqid, ::apache::thr iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_type", bytes); } @@ -79516,7 +79516,7 @@ void ThriftHiveMetastoreProcessor::process_get_type(int32_t seqid, ::apache::thr result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_type"); } @@ -79529,7 +79529,7 @@ void ThriftHiveMetastoreProcessor::process_get_type(int32_t seqid, ::apache::thr return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_type"); } @@ -79539,20 +79539,20 @@ void ThriftHiveMetastoreProcessor::process_get_type(int32_t seqid, ::apache::thr bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_type", bytes); } } void ThriftHiveMetastoreProcessor::process_create_type(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_type", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_type"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_type"); } @@ -79561,7 +79561,7 @@ void ThriftHiveMetastoreProcessor::process_create_type(int32_t seqid, ::apache:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_type", bytes); } @@ -79579,7 +79579,7 @@ void ThriftHiveMetastoreProcessor::process_create_type(int32_t seqid, ::apache:: result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_type"); } @@ -79592,7 +79592,7 @@ void ThriftHiveMetastoreProcessor::process_create_type(int32_t seqid, ::apache:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_type"); } @@ -79602,20 +79602,20 @@ void ThriftHiveMetastoreProcessor::process_create_type(int32_t seqid, ::apache:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_type", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_type(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_type", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_type"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_type"); } @@ -79624,7 +79624,7 @@ void ThriftHiveMetastoreProcessor::process_drop_type(int32_t seqid, ::apache::th iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_type", bytes); } @@ -79639,7 +79639,7 @@ void ThriftHiveMetastoreProcessor::process_drop_type(int32_t seqid, ::apache::th result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_type"); } @@ -79652,7 +79652,7 @@ void ThriftHiveMetastoreProcessor::process_drop_type(int32_t seqid, ::apache::th return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_type"); } @@ -79662,20 +79662,20 @@ void ThriftHiveMetastoreProcessor::process_drop_type(int32_t seqid, ::apache::th bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_type", bytes); } } void ThriftHiveMetastoreProcessor::process_get_type_all(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_type_all", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_type_all"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_type_all"); } @@ -79684,7 +79684,7 @@ void ThriftHiveMetastoreProcessor::process_get_type_all(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_type_all", bytes); } @@ -79696,7 +79696,7 @@ void ThriftHiveMetastoreProcessor::process_get_type_all(int32_t seqid, ::apache: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_type_all"); } @@ -79709,7 +79709,7 @@ void ThriftHiveMetastoreProcessor::process_get_type_all(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_type_all"); } @@ -79719,20 +79719,20 @@ void ThriftHiveMetastoreProcessor::process_get_type_all(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_type_all", bytes); } } void ThriftHiveMetastoreProcessor::process_get_fields(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_fields", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_fields"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_fields"); } @@ -79741,7 +79741,7 @@ void ThriftHiveMetastoreProcessor::process_get_fields(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_fields", bytes); } @@ -79759,7 +79759,7 @@ void ThriftHiveMetastoreProcessor::process_get_fields(int32_t seqid, ::apache::t result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_fields"); } @@ -79772,7 +79772,7 @@ void ThriftHiveMetastoreProcessor::process_get_fields(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_fields"); } @@ -79782,20 +79782,20 @@ void ThriftHiveMetastoreProcessor::process_get_fields(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_fields", bytes); } } void ThriftHiveMetastoreProcessor::process_get_fields_with_environment_context(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_fields_with_environment_context", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_fields_with_environment_context"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_fields_with_environment_context"); } @@ -79804,7 +79804,7 @@ void ThriftHiveMetastoreProcessor::process_get_fields_with_environment_context(i iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_fields_with_environment_context", bytes); } @@ -79822,7 +79822,7 @@ void ThriftHiveMetastoreProcessor::process_get_fields_with_environment_context(i result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_fields_with_environment_context"); } @@ -79835,7 +79835,7 @@ void ThriftHiveMetastoreProcessor::process_get_fields_with_environment_context(i return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_fields_with_environment_context"); } @@ -79845,20 +79845,20 @@ void ThriftHiveMetastoreProcessor::process_get_fields_with_environment_context(i bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_fields_with_environment_context", bytes); } } void ThriftHiveMetastoreProcessor::process_get_fields_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_fields_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_fields_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_fields_req"); } @@ -79867,7 +79867,7 @@ void ThriftHiveMetastoreProcessor::process_get_fields_req(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_fields_req", bytes); } @@ -79885,7 +79885,7 @@ void ThriftHiveMetastoreProcessor::process_get_fields_req(int32_t seqid, ::apach result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_fields_req"); } @@ -79898,7 +79898,7 @@ void ThriftHiveMetastoreProcessor::process_get_fields_req(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_fields_req"); } @@ -79908,20 +79908,20 @@ void ThriftHiveMetastoreProcessor::process_get_fields_req(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_fields_req", bytes); } } void ThriftHiveMetastoreProcessor::process_get_schema(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_schema", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_schema"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_schema"); } @@ -79930,7 +79930,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_schema", bytes); } @@ -79948,7 +79948,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema(int32_t seqid, ::apache::t result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_schema"); } @@ -79961,7 +79961,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_schema"); } @@ -79971,20 +79971,20 @@ void ThriftHiveMetastoreProcessor::process_get_schema(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_schema", bytes); } } void ThriftHiveMetastoreProcessor::process_get_schema_with_environment_context(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_schema_with_environment_context", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_schema_with_environment_context"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_schema_with_environment_context"); } @@ -79993,7 +79993,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_with_environment_context(i iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_schema_with_environment_context", bytes); } @@ -80011,7 +80011,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_with_environment_context(i result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_schema_with_environment_context"); } @@ -80024,7 +80024,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_with_environment_context(i return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_schema_with_environment_context"); } @@ -80034,20 +80034,20 @@ void ThriftHiveMetastoreProcessor::process_get_schema_with_environment_context(i bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_schema_with_environment_context", bytes); } } void ThriftHiveMetastoreProcessor::process_get_schema_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_schema_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_schema_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_schema_req"); } @@ -80056,7 +80056,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_req(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_schema_req", bytes); } @@ -80074,7 +80074,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_req(int32_t seqid, ::apach result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_schema_req"); } @@ -80087,7 +80087,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_req(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_schema_req"); } @@ -80097,20 +80097,20 @@ void ThriftHiveMetastoreProcessor::process_get_schema_req(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_schema_req", bytes); } } void ThriftHiveMetastoreProcessor::process_create_table(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_table", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_table"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_table"); } @@ -80119,7 +80119,7 @@ void ThriftHiveMetastoreProcessor::process_create_table(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_table", bytes); } @@ -80139,7 +80139,7 @@ void ThriftHiveMetastoreProcessor::process_create_table(int32_t seqid, ::apache: result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_table"); } @@ -80152,7 +80152,7 @@ void ThriftHiveMetastoreProcessor::process_create_table(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_table"); } @@ -80162,20 +80162,20 @@ void ThriftHiveMetastoreProcessor::process_create_table(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_table", bytes); } } void ThriftHiveMetastoreProcessor::process_create_table_with_environment_context(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_table_with_environment_context", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_table_with_environment_context"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_table_with_environment_context"); } @@ -80184,7 +80184,7 @@ void ThriftHiveMetastoreProcessor::process_create_table_with_environment_context iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_table_with_environment_context", bytes); } @@ -80204,7 +80204,7 @@ void ThriftHiveMetastoreProcessor::process_create_table_with_environment_context result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_table_with_environment_context"); } @@ -80217,7 +80217,7 @@ void ThriftHiveMetastoreProcessor::process_create_table_with_environment_context return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_table_with_environment_context"); } @@ -80227,20 +80227,20 @@ void ThriftHiveMetastoreProcessor::process_create_table_with_environment_context bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_table_with_environment_context", bytes); } } void ThriftHiveMetastoreProcessor::process_create_table_with_constraints(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_table_with_constraints", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_table_with_constraints"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_table_with_constraints"); } @@ -80249,7 +80249,7 @@ void ThriftHiveMetastoreProcessor::process_create_table_with_constraints(int32_t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_table_with_constraints", bytes); } @@ -80269,7 +80269,7 @@ void ThriftHiveMetastoreProcessor::process_create_table_with_constraints(int32_t result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_table_with_constraints"); } @@ -80282,7 +80282,7 @@ void ThriftHiveMetastoreProcessor::process_create_table_with_constraints(int32_t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_table_with_constraints"); } @@ -80292,20 +80292,20 @@ void ThriftHiveMetastoreProcessor::process_create_table_with_constraints(int32_t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_table_with_constraints", bytes); } } void ThriftHiveMetastoreProcessor::process_create_table_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_table_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_table_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_table_req"); } @@ -80314,7 +80314,7 @@ void ThriftHiveMetastoreProcessor::process_create_table_req(int32_t seqid, ::apa iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_table_req", bytes); } @@ -80334,7 +80334,7 @@ void ThriftHiveMetastoreProcessor::process_create_table_req(int32_t seqid, ::apa result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_table_req"); } @@ -80347,7 +80347,7 @@ void ThriftHiveMetastoreProcessor::process_create_table_req(int32_t seqid, ::apa return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_table_req"); } @@ -80357,20 +80357,20 @@ void ThriftHiveMetastoreProcessor::process_create_table_req(int32_t seqid, ::apa bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_table_req", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_constraint(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_constraint", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_constraint"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_constraint"); } @@ -80379,7 +80379,7 @@ void ThriftHiveMetastoreProcessor::process_drop_constraint(int32_t seqid, ::apac iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_constraint", bytes); } @@ -80393,7 +80393,7 @@ void ThriftHiveMetastoreProcessor::process_drop_constraint(int32_t seqid, ::apac result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_constraint"); } @@ -80406,7 +80406,7 @@ void ThriftHiveMetastoreProcessor::process_drop_constraint(int32_t seqid, ::apac return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_constraint"); } @@ -80416,20 +80416,20 @@ void ThriftHiveMetastoreProcessor::process_drop_constraint(int32_t seqid, ::apac bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_constraint", bytes); } } void ThriftHiveMetastoreProcessor::process_add_primary_key(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_primary_key", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_primary_key"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_primary_key"); } @@ -80438,7 +80438,7 @@ void ThriftHiveMetastoreProcessor::process_add_primary_key(int32_t seqid, ::apac iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_primary_key", bytes); } @@ -80452,7 +80452,7 @@ void ThriftHiveMetastoreProcessor::process_add_primary_key(int32_t seqid, ::apac result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_primary_key"); } @@ -80465,7 +80465,7 @@ void ThriftHiveMetastoreProcessor::process_add_primary_key(int32_t seqid, ::apac return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_primary_key"); } @@ -80475,20 +80475,20 @@ void ThriftHiveMetastoreProcessor::process_add_primary_key(int32_t seqid, ::apac bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_primary_key", bytes); } } void ThriftHiveMetastoreProcessor::process_add_foreign_key(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_foreign_key", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_foreign_key"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_foreign_key"); } @@ -80497,7 +80497,7 @@ void ThriftHiveMetastoreProcessor::process_add_foreign_key(int32_t seqid, ::apac iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_foreign_key", bytes); } @@ -80511,7 +80511,7 @@ void ThriftHiveMetastoreProcessor::process_add_foreign_key(int32_t seqid, ::apac result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_foreign_key"); } @@ -80524,7 +80524,7 @@ void ThriftHiveMetastoreProcessor::process_add_foreign_key(int32_t seqid, ::apac return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_foreign_key"); } @@ -80534,20 +80534,20 @@ void ThriftHiveMetastoreProcessor::process_add_foreign_key(int32_t seqid, ::apac bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_foreign_key", bytes); } } void ThriftHiveMetastoreProcessor::process_add_unique_constraint(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_unique_constraint", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_unique_constraint"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_unique_constraint"); } @@ -80556,7 +80556,7 @@ void ThriftHiveMetastoreProcessor::process_add_unique_constraint(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_unique_constraint", bytes); } @@ -80570,7 +80570,7 @@ void ThriftHiveMetastoreProcessor::process_add_unique_constraint(int32_t seqid, result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_unique_constraint"); } @@ -80583,7 +80583,7 @@ void ThriftHiveMetastoreProcessor::process_add_unique_constraint(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_unique_constraint"); } @@ -80593,20 +80593,20 @@ void ThriftHiveMetastoreProcessor::process_add_unique_constraint(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_unique_constraint", bytes); } } void ThriftHiveMetastoreProcessor::process_add_not_null_constraint(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_not_null_constraint", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_not_null_constraint"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_not_null_constraint"); } @@ -80615,7 +80615,7 @@ void ThriftHiveMetastoreProcessor::process_add_not_null_constraint(int32_t seqid iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_not_null_constraint", bytes); } @@ -80629,7 +80629,7 @@ void ThriftHiveMetastoreProcessor::process_add_not_null_constraint(int32_t seqid result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_not_null_constraint"); } @@ -80642,7 +80642,7 @@ void ThriftHiveMetastoreProcessor::process_add_not_null_constraint(int32_t seqid return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_not_null_constraint"); } @@ -80652,20 +80652,20 @@ void ThriftHiveMetastoreProcessor::process_add_not_null_constraint(int32_t seqid bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_not_null_constraint", bytes); } } void ThriftHiveMetastoreProcessor::process_add_default_constraint(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_default_constraint", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_default_constraint"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_default_constraint"); } @@ -80674,7 +80674,7 @@ void ThriftHiveMetastoreProcessor::process_add_default_constraint(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_default_constraint", bytes); } @@ -80688,7 +80688,7 @@ void ThriftHiveMetastoreProcessor::process_add_default_constraint(int32_t seqid, result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_default_constraint"); } @@ -80701,7 +80701,7 @@ void ThriftHiveMetastoreProcessor::process_add_default_constraint(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_default_constraint"); } @@ -80711,20 +80711,20 @@ void ThriftHiveMetastoreProcessor::process_add_default_constraint(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_default_constraint", bytes); } } void ThriftHiveMetastoreProcessor::process_add_check_constraint(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_check_constraint", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_check_constraint"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_check_constraint"); } @@ -80733,7 +80733,7 @@ void ThriftHiveMetastoreProcessor::process_add_check_constraint(int32_t seqid, : iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_check_constraint", bytes); } @@ -80747,7 +80747,7 @@ void ThriftHiveMetastoreProcessor::process_add_check_constraint(int32_t seqid, : result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_check_constraint"); } @@ -80760,7 +80760,7 @@ void ThriftHiveMetastoreProcessor::process_add_check_constraint(int32_t seqid, : return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_check_constraint"); } @@ -80770,20 +80770,20 @@ void ThriftHiveMetastoreProcessor::process_add_check_constraint(int32_t seqid, : bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_check_constraint", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_table(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_table", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_table"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_table"); } @@ -80792,7 +80792,7 @@ void ThriftHiveMetastoreProcessor::process_drop_table(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_table", bytes); } @@ -80806,7 +80806,7 @@ void ThriftHiveMetastoreProcessor::process_drop_table(int32_t seqid, ::apache::t result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_table"); } @@ -80819,7 +80819,7 @@ void ThriftHiveMetastoreProcessor::process_drop_table(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_table"); } @@ -80829,20 +80829,20 @@ void ThriftHiveMetastoreProcessor::process_drop_table(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_table", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_table_with_environment_context(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_table_with_environment_context", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_table_with_environment_context"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_table_with_environment_context"); } @@ -80851,7 +80851,7 @@ void ThriftHiveMetastoreProcessor::process_drop_table_with_environment_context(i iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_table_with_environment_context", bytes); } @@ -80865,7 +80865,7 @@ void ThriftHiveMetastoreProcessor::process_drop_table_with_environment_context(i result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_table_with_environment_context"); } @@ -80878,7 +80878,7 @@ void ThriftHiveMetastoreProcessor::process_drop_table_with_environment_context(i return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_table_with_environment_context"); } @@ -80888,20 +80888,20 @@ void ThriftHiveMetastoreProcessor::process_drop_table_with_environment_context(i bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_table_with_environment_context", bytes); } } void ThriftHiveMetastoreProcessor::process_truncate_table(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.truncate_table", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.truncate_table"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.truncate_table"); } @@ -80910,7 +80910,7 @@ void ThriftHiveMetastoreProcessor::process_truncate_table(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.truncate_table", bytes); } @@ -80921,7 +80921,7 @@ void ThriftHiveMetastoreProcessor::process_truncate_table(int32_t seqid, ::apach result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.truncate_table"); } @@ -80934,7 +80934,7 @@ void ThriftHiveMetastoreProcessor::process_truncate_table(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.truncate_table"); } @@ -80944,20 +80944,20 @@ void ThriftHiveMetastoreProcessor::process_truncate_table(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.truncate_table", bytes); } } void ThriftHiveMetastoreProcessor::process_truncate_table_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.truncate_table_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.truncate_table_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.truncate_table_req"); } @@ -80966,7 +80966,7 @@ void ThriftHiveMetastoreProcessor::process_truncate_table_req(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.truncate_table_req", bytes); } @@ -80978,7 +80978,7 @@ void ThriftHiveMetastoreProcessor::process_truncate_table_req(int32_t seqid, ::a result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.truncate_table_req"); } @@ -80991,7 +80991,7 @@ void ThriftHiveMetastoreProcessor::process_truncate_table_req(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.truncate_table_req"); } @@ -81001,20 +81001,20 @@ void ThriftHiveMetastoreProcessor::process_truncate_table_req(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.truncate_table_req", bytes); } } void ThriftHiveMetastoreProcessor::process_get_tables(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_tables", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_tables"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_tables"); } @@ -81023,7 +81023,7 @@ void ThriftHiveMetastoreProcessor::process_get_tables(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_tables", bytes); } @@ -81035,7 +81035,7 @@ void ThriftHiveMetastoreProcessor::process_get_tables(int32_t seqid, ::apache::t result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_tables"); } @@ -81048,7 +81048,7 @@ void ThriftHiveMetastoreProcessor::process_get_tables(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_tables"); } @@ -81058,20 +81058,20 @@ void ThriftHiveMetastoreProcessor::process_get_tables(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_tables", bytes); } } void ThriftHiveMetastoreProcessor::process_get_tables_by_type(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_tables_by_type", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_tables_by_type"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_tables_by_type"); } @@ -81080,7 +81080,7 @@ void ThriftHiveMetastoreProcessor::process_get_tables_by_type(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_tables_by_type", bytes); } @@ -81092,7 +81092,7 @@ void ThriftHiveMetastoreProcessor::process_get_tables_by_type(int32_t seqid, ::a result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_tables_by_type"); } @@ -81105,7 +81105,7 @@ void ThriftHiveMetastoreProcessor::process_get_tables_by_type(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_tables_by_type"); } @@ -81115,20 +81115,20 @@ void ThriftHiveMetastoreProcessor::process_get_tables_by_type(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_tables_by_type", bytes); } } void ThriftHiveMetastoreProcessor::process_get_all_materialized_view_objects_for_rewriting(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_all_materialized_view_objects_for_rewriting", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_all_materialized_view_objects_for_rewriting"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_all_materialized_view_objects_for_rewriting"); } @@ -81137,7 +81137,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_materialized_view_objects_for iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_all_materialized_view_objects_for_rewriting", bytes); } @@ -81149,7 +81149,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_materialized_view_objects_for result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_all_materialized_view_objects_for_rewriting"); } @@ -81162,7 +81162,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_materialized_view_objects_for return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_all_materialized_view_objects_for_rewriting"); } @@ -81172,20 +81172,20 @@ void ThriftHiveMetastoreProcessor::process_get_all_materialized_view_objects_for bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_all_materialized_view_objects_for_rewriting", bytes); } } void ThriftHiveMetastoreProcessor::process_get_materialized_views_for_rewriting(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_materialized_views_for_rewriting", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_materialized_views_for_rewriting"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_materialized_views_for_rewriting"); } @@ -81194,7 +81194,7 @@ void ThriftHiveMetastoreProcessor::process_get_materialized_views_for_rewriting( iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_materialized_views_for_rewriting", bytes); } @@ -81206,7 +81206,7 @@ void ThriftHiveMetastoreProcessor::process_get_materialized_views_for_rewriting( result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_materialized_views_for_rewriting"); } @@ -81219,7 +81219,7 @@ void ThriftHiveMetastoreProcessor::process_get_materialized_views_for_rewriting( return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_materialized_views_for_rewriting"); } @@ -81229,20 +81229,20 @@ void ThriftHiveMetastoreProcessor::process_get_materialized_views_for_rewriting( bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_materialized_views_for_rewriting", bytes); } } void ThriftHiveMetastoreProcessor::process_get_table_meta(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_table_meta", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_table_meta"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_table_meta"); } @@ -81251,7 +81251,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_meta(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_table_meta", bytes); } @@ -81263,7 +81263,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_meta(int32_t seqid, ::apach result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_table_meta"); } @@ -81276,7 +81276,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_meta(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_table_meta"); } @@ -81286,20 +81286,20 @@ void ThriftHiveMetastoreProcessor::process_get_table_meta(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_table_meta", bytes); } } void ThriftHiveMetastoreProcessor::process_get_all_tables(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_all_tables", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_all_tables"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_all_tables"); } @@ -81308,7 +81308,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_tables(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_all_tables", bytes); } @@ -81320,7 +81320,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_tables(int32_t seqid, ::apach result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_all_tables"); } @@ -81333,7 +81333,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_tables(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_all_tables"); } @@ -81343,20 +81343,20 @@ void ThriftHiveMetastoreProcessor::process_get_all_tables(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_all_tables", bytes); } } void ThriftHiveMetastoreProcessor::process_get_table(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_table", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_table"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_table"); } @@ -81365,7 +81365,7 @@ void ThriftHiveMetastoreProcessor::process_get_table(int32_t seqid, ::apache::th iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_table", bytes); } @@ -81380,7 +81380,7 @@ void ThriftHiveMetastoreProcessor::process_get_table(int32_t seqid, ::apache::th result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_table"); } @@ -81393,7 +81393,7 @@ void ThriftHiveMetastoreProcessor::process_get_table(int32_t seqid, ::apache::th return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_table"); } @@ -81403,20 +81403,20 @@ void ThriftHiveMetastoreProcessor::process_get_table(int32_t seqid, ::apache::th bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_table", bytes); } } void ThriftHiveMetastoreProcessor::process_get_table_objects_by_name(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_table_objects_by_name", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_table_objects_by_name"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_table_objects_by_name"); } @@ -81425,7 +81425,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_objects_by_name(int32_t seq iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_table_objects_by_name", bytes); } @@ -81434,7 +81434,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_objects_by_name(int32_t seq iface_->get_table_objects_by_name(result.success, args.dbname, args.tbl_names); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_table_objects_by_name"); } @@ -81447,7 +81447,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_objects_by_name(int32_t seq return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_table_objects_by_name"); } @@ -81457,20 +81457,20 @@ void ThriftHiveMetastoreProcessor::process_get_table_objects_by_name(int32_t seq bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_table_objects_by_name", bytes); } } void ThriftHiveMetastoreProcessor::process_get_tables_ext(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_tables_ext", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_tables_ext"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_tables_ext"); } @@ -81479,7 +81479,7 @@ void ThriftHiveMetastoreProcessor::process_get_tables_ext(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_tables_ext", bytes); } @@ -81491,7 +81491,7 @@ void ThriftHiveMetastoreProcessor::process_get_tables_ext(int32_t seqid, ::apach result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_tables_ext"); } @@ -81504,7 +81504,7 @@ void ThriftHiveMetastoreProcessor::process_get_tables_ext(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_tables_ext"); } @@ -81514,20 +81514,20 @@ void ThriftHiveMetastoreProcessor::process_get_tables_ext(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_tables_ext", bytes); } } void ThriftHiveMetastoreProcessor::process_get_table_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_table_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_table_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_table_req"); } @@ -81536,7 +81536,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_req(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_table_req", bytes); } @@ -81551,7 +81551,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_req(int32_t seqid, ::apache result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_table_req"); } @@ -81564,7 +81564,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_req(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_table_req"); } @@ -81574,20 +81574,20 @@ void ThriftHiveMetastoreProcessor::process_get_table_req(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_table_req", bytes); } } void ThriftHiveMetastoreProcessor::process_get_table_objects_by_name_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_table_objects_by_name_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_table_objects_by_name_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_table_objects_by_name_req"); } @@ -81596,7 +81596,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_objects_by_name_req(int32_t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_table_objects_by_name_req", bytes); } @@ -81614,7 +81614,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_objects_by_name_req(int32_t result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_table_objects_by_name_req"); } @@ -81627,7 +81627,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_objects_by_name_req(int32_t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_table_objects_by_name_req"); } @@ -81637,20 +81637,20 @@ void ThriftHiveMetastoreProcessor::process_get_table_objects_by_name_req(int32_t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_table_objects_by_name_req", bytes); } } void ThriftHiveMetastoreProcessor::process_get_materialization_invalidation_info(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_materialization_invalidation_info", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_materialization_invalidation_info"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_materialization_invalidation_info"); } @@ -81659,7 +81659,7 @@ void ThriftHiveMetastoreProcessor::process_get_materialization_invalidation_info iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_materialization_invalidation_info", bytes); } @@ -81677,7 +81677,7 @@ void ThriftHiveMetastoreProcessor::process_get_materialization_invalidation_info result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_materialization_invalidation_info"); } @@ -81690,7 +81690,7 @@ void ThriftHiveMetastoreProcessor::process_get_materialization_invalidation_info return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_materialization_invalidation_info"); } @@ -81700,20 +81700,20 @@ void ThriftHiveMetastoreProcessor::process_get_materialization_invalidation_info bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_materialization_invalidation_info", bytes); } } void ThriftHiveMetastoreProcessor::process_update_creation_metadata(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.update_creation_metadata", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.update_creation_metadata"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.update_creation_metadata"); } @@ -81722,7 +81722,7 @@ void ThriftHiveMetastoreProcessor::process_update_creation_metadata(int32_t seqi iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.update_creation_metadata", bytes); } @@ -81739,7 +81739,7 @@ void ThriftHiveMetastoreProcessor::process_update_creation_metadata(int32_t seqi result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.update_creation_metadata"); } @@ -81752,7 +81752,7 @@ void ThriftHiveMetastoreProcessor::process_update_creation_metadata(int32_t seqi return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.update_creation_metadata"); } @@ -81762,20 +81762,20 @@ void ThriftHiveMetastoreProcessor::process_update_creation_metadata(int32_t seqi bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.update_creation_metadata", bytes); } } void ThriftHiveMetastoreProcessor::process_get_table_names_by_filter(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_table_names_by_filter", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_table_names_by_filter"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_table_names_by_filter"); } @@ -81784,7 +81784,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_names_by_filter(int32_t seq iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_table_names_by_filter", bytes); } @@ -81802,7 +81802,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_names_by_filter(int32_t seq result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_table_names_by_filter"); } @@ -81815,7 +81815,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_names_by_filter(int32_t seq return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_table_names_by_filter"); } @@ -81825,20 +81825,20 @@ void ThriftHiveMetastoreProcessor::process_get_table_names_by_filter(int32_t seq bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_table_names_by_filter", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_table(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_table", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_table"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_table"); } @@ -81847,7 +81847,7 @@ void ThriftHiveMetastoreProcessor::process_alter_table(int32_t seqid, ::apache:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_table", bytes); } @@ -81861,7 +81861,7 @@ void ThriftHiveMetastoreProcessor::process_alter_table(int32_t seqid, ::apache:: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_table"); } @@ -81874,7 +81874,7 @@ void ThriftHiveMetastoreProcessor::process_alter_table(int32_t seqid, ::apache:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_table"); } @@ -81884,20 +81884,20 @@ void ThriftHiveMetastoreProcessor::process_alter_table(int32_t seqid, ::apache:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_table", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_table_with_environment_context(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_table_with_environment_context", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_table_with_environment_context"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_table_with_environment_context"); } @@ -81906,7 +81906,7 @@ void ThriftHiveMetastoreProcessor::process_alter_table_with_environment_context( iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_table_with_environment_context", bytes); } @@ -81920,7 +81920,7 @@ void ThriftHiveMetastoreProcessor::process_alter_table_with_environment_context( result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_table_with_environment_context"); } @@ -81933,7 +81933,7 @@ void ThriftHiveMetastoreProcessor::process_alter_table_with_environment_context( return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_table_with_environment_context"); } @@ -81943,20 +81943,20 @@ void ThriftHiveMetastoreProcessor::process_alter_table_with_environment_context( bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_table_with_environment_context", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_table_with_cascade(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_table_with_cascade", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_table_with_cascade"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_table_with_cascade"); } @@ -81965,7 +81965,7 @@ void ThriftHiveMetastoreProcessor::process_alter_table_with_cascade(int32_t seqi iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_table_with_cascade", bytes); } @@ -81979,7 +81979,7 @@ void ThriftHiveMetastoreProcessor::process_alter_table_with_cascade(int32_t seqi result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_table_with_cascade"); } @@ -81992,7 +81992,7 @@ void ThriftHiveMetastoreProcessor::process_alter_table_with_cascade(int32_t seqi return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_table_with_cascade"); } @@ -82002,20 +82002,20 @@ void ThriftHiveMetastoreProcessor::process_alter_table_with_cascade(int32_t seqi bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_table_with_cascade", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_table_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_table_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_table_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_table_req"); } @@ -82024,7 +82024,7 @@ void ThriftHiveMetastoreProcessor::process_alter_table_req(int32_t seqid, ::apac iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_table_req", bytes); } @@ -82039,7 +82039,7 @@ void ThriftHiveMetastoreProcessor::process_alter_table_req(int32_t seqid, ::apac result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_table_req"); } @@ -82052,7 +82052,7 @@ void ThriftHiveMetastoreProcessor::process_alter_table_req(int32_t seqid, ::apac return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_table_req"); } @@ -82062,20 +82062,20 @@ void ThriftHiveMetastoreProcessor::process_alter_table_req(int32_t seqid, ::apac bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_table_req", bytes); } } void ThriftHiveMetastoreProcessor::process_add_partition(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_partition", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_partition"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_partition"); } @@ -82084,7 +82084,7 @@ void ThriftHiveMetastoreProcessor::process_add_partition(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_partition", bytes); } @@ -82102,7 +82102,7 @@ void ThriftHiveMetastoreProcessor::process_add_partition(int32_t seqid, ::apache result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_partition"); } @@ -82115,7 +82115,7 @@ void ThriftHiveMetastoreProcessor::process_add_partition(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_partition"); } @@ -82125,20 +82125,20 @@ void ThriftHiveMetastoreProcessor::process_add_partition(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_partition", bytes); } } void ThriftHiveMetastoreProcessor::process_add_partition_with_environment_context(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_partition_with_environment_context", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_partition_with_environment_context"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_partition_with_environment_context"); } @@ -82147,7 +82147,7 @@ void ThriftHiveMetastoreProcessor::process_add_partition_with_environment_contex iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_partition_with_environment_context", bytes); } @@ -82165,7 +82165,7 @@ void ThriftHiveMetastoreProcessor::process_add_partition_with_environment_contex result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_partition_with_environment_context"); } @@ -82178,7 +82178,7 @@ void ThriftHiveMetastoreProcessor::process_add_partition_with_environment_contex return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_partition_with_environment_context"); } @@ -82188,20 +82188,20 @@ void ThriftHiveMetastoreProcessor::process_add_partition_with_environment_contex bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_partition_with_environment_context", bytes); } } void ThriftHiveMetastoreProcessor::process_add_partitions(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_partitions", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_partitions"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_partitions"); } @@ -82210,7 +82210,7 @@ void ThriftHiveMetastoreProcessor::process_add_partitions(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_partitions", bytes); } @@ -82228,7 +82228,7 @@ void ThriftHiveMetastoreProcessor::process_add_partitions(int32_t seqid, ::apach result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_partitions"); } @@ -82241,7 +82241,7 @@ void ThriftHiveMetastoreProcessor::process_add_partitions(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_partitions"); } @@ -82251,20 +82251,20 @@ void ThriftHiveMetastoreProcessor::process_add_partitions(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_partitions", bytes); } } void ThriftHiveMetastoreProcessor::process_add_partitions_pspec(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_partitions_pspec", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_partitions_pspec"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_partitions_pspec"); } @@ -82273,7 +82273,7 @@ void ThriftHiveMetastoreProcessor::process_add_partitions_pspec(int32_t seqid, : iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_partitions_pspec", bytes); } @@ -82291,7 +82291,7 @@ void ThriftHiveMetastoreProcessor::process_add_partitions_pspec(int32_t seqid, : result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_partitions_pspec"); } @@ -82304,7 +82304,7 @@ void ThriftHiveMetastoreProcessor::process_add_partitions_pspec(int32_t seqid, : return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_partitions_pspec"); } @@ -82314,20 +82314,20 @@ void ThriftHiveMetastoreProcessor::process_add_partitions_pspec(int32_t seqid, : bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_partitions_pspec", bytes); } } void ThriftHiveMetastoreProcessor::process_append_partition(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.append_partition", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.append_partition"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.append_partition"); } @@ -82336,7 +82336,7 @@ void ThriftHiveMetastoreProcessor::process_append_partition(int32_t seqid, ::apa iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.append_partition", bytes); } @@ -82354,7 +82354,7 @@ void ThriftHiveMetastoreProcessor::process_append_partition(int32_t seqid, ::apa result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.append_partition"); } @@ -82367,7 +82367,7 @@ void ThriftHiveMetastoreProcessor::process_append_partition(int32_t seqid, ::apa return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.append_partition"); } @@ -82377,20 +82377,20 @@ void ThriftHiveMetastoreProcessor::process_append_partition(int32_t seqid, ::apa bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.append_partition", bytes); } } void ThriftHiveMetastoreProcessor::process_add_partitions_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_partitions_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_partitions_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_partitions_req"); } @@ -82399,7 +82399,7 @@ void ThriftHiveMetastoreProcessor::process_add_partitions_req(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_partitions_req", bytes); } @@ -82417,7 +82417,7 @@ void ThriftHiveMetastoreProcessor::process_add_partitions_req(int32_t seqid, ::a result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_partitions_req"); } @@ -82430,7 +82430,7 @@ void ThriftHiveMetastoreProcessor::process_add_partitions_req(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_partitions_req"); } @@ -82440,20 +82440,20 @@ void ThriftHiveMetastoreProcessor::process_add_partitions_req(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_partitions_req", bytes); } } void ThriftHiveMetastoreProcessor::process_append_partition_with_environment_context(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.append_partition_with_environment_context", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.append_partition_with_environment_context"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.append_partition_with_environment_context"); } @@ -82462,7 +82462,7 @@ void ThriftHiveMetastoreProcessor::process_append_partition_with_environment_con iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.append_partition_with_environment_context", bytes); } @@ -82480,7 +82480,7 @@ void ThriftHiveMetastoreProcessor::process_append_partition_with_environment_con result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.append_partition_with_environment_context"); } @@ -82493,7 +82493,7 @@ void ThriftHiveMetastoreProcessor::process_append_partition_with_environment_con return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.append_partition_with_environment_context"); } @@ -82503,20 +82503,20 @@ void ThriftHiveMetastoreProcessor::process_append_partition_with_environment_con bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.append_partition_with_environment_context", bytes); } } void ThriftHiveMetastoreProcessor::process_append_partition_by_name(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.append_partition_by_name", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.append_partition_by_name"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.append_partition_by_name"); } @@ -82525,7 +82525,7 @@ void ThriftHiveMetastoreProcessor::process_append_partition_by_name(int32_t seqi iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.append_partition_by_name", bytes); } @@ -82543,7 +82543,7 @@ void ThriftHiveMetastoreProcessor::process_append_partition_by_name(int32_t seqi result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.append_partition_by_name"); } @@ -82556,7 +82556,7 @@ void ThriftHiveMetastoreProcessor::process_append_partition_by_name(int32_t seqi return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.append_partition_by_name"); } @@ -82566,20 +82566,20 @@ void ThriftHiveMetastoreProcessor::process_append_partition_by_name(int32_t seqi bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.append_partition_by_name", bytes); } } void ThriftHiveMetastoreProcessor::process_append_partition_by_name_with_environment_context(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.append_partition_by_name_with_environment_context", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.append_partition_by_name_with_environment_context"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.append_partition_by_name_with_environment_context"); } @@ -82588,7 +82588,7 @@ void ThriftHiveMetastoreProcessor::process_append_partition_by_name_with_environ iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.append_partition_by_name_with_environment_context", bytes); } @@ -82606,7 +82606,7 @@ void ThriftHiveMetastoreProcessor::process_append_partition_by_name_with_environ result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.append_partition_by_name_with_environment_context"); } @@ -82619,7 +82619,7 @@ void ThriftHiveMetastoreProcessor::process_append_partition_by_name_with_environ return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.append_partition_by_name_with_environment_context"); } @@ -82629,20 +82629,20 @@ void ThriftHiveMetastoreProcessor::process_append_partition_by_name_with_environ bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.append_partition_by_name_with_environment_context", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_partition(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_partition", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_partition"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_partition"); } @@ -82651,7 +82651,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partition(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_partition", bytes); } @@ -82666,7 +82666,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partition(int32_t seqid, ::apach result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_partition"); } @@ -82679,7 +82679,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partition(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_partition"); } @@ -82689,20 +82689,20 @@ void ThriftHiveMetastoreProcessor::process_drop_partition(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_partition", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_partition_with_environment_context(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_partition_with_environment_context", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_partition_with_environment_context"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_partition_with_environment_context"); } @@ -82711,7 +82711,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partition_with_environment_conte iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_partition_with_environment_context", bytes); } @@ -82726,7 +82726,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partition_with_environment_conte result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_partition_with_environment_context"); } @@ -82739,7 +82739,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partition_with_environment_conte return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_partition_with_environment_context"); } @@ -82749,20 +82749,20 @@ void ThriftHiveMetastoreProcessor::process_drop_partition_with_environment_conte bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_partition_with_environment_context", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_partition_by_name(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_partition_by_name", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_partition_by_name"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_partition_by_name"); } @@ -82771,7 +82771,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partition_by_name(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_partition_by_name", bytes); } @@ -82786,7 +82786,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partition_by_name(int32_t seqid, result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_partition_by_name"); } @@ -82799,7 +82799,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partition_by_name(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_partition_by_name"); } @@ -82809,20 +82809,20 @@ void ThriftHiveMetastoreProcessor::process_drop_partition_by_name(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_partition_by_name", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_partition_by_name_with_environment_context(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_partition_by_name_with_environment_context", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_partition_by_name_with_environment_context"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_partition_by_name_with_environment_context"); } @@ -82831,7 +82831,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partition_by_name_with_environme iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_partition_by_name_with_environment_context", bytes); } @@ -82846,7 +82846,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partition_by_name_with_environme result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_partition_by_name_with_environment_context"); } @@ -82859,7 +82859,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partition_by_name_with_environme return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_partition_by_name_with_environment_context"); } @@ -82869,20 +82869,20 @@ void ThriftHiveMetastoreProcessor::process_drop_partition_by_name_with_environme bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_partition_by_name_with_environment_context", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_partitions_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_partitions_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_partitions_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_partitions_req"); } @@ -82891,7 +82891,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partitions_req(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_partitions_req", bytes); } @@ -82906,7 +82906,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partitions_req(int32_t seqid, :: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_partitions_req"); } @@ -82919,7 +82919,7 @@ void ThriftHiveMetastoreProcessor::process_drop_partitions_req(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_partitions_req"); } @@ -82929,20 +82929,20 @@ void ThriftHiveMetastoreProcessor::process_drop_partitions_req(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_partitions_req", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partition(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partition", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partition"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partition"); } @@ -82951,7 +82951,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partition", bytes); } @@ -82966,7 +82966,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition(int32_t seqid, ::apache result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partition"); } @@ -82979,7 +82979,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partition"); } @@ -82989,20 +82989,20 @@ void ThriftHiveMetastoreProcessor::process_get_partition(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partition", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partition_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partition_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partition_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partition_req"); } @@ -83011,7 +83011,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_req(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partition_req", bytes); } @@ -83026,7 +83026,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_req(int32_t seqid, ::ap result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partition_req"); } @@ -83039,7 +83039,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_req(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partition_req"); } @@ -83049,20 +83049,20 @@ void ThriftHiveMetastoreProcessor::process_get_partition_req(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partition_req", bytes); } } void ThriftHiveMetastoreProcessor::process_exchange_partition(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.exchange_partition", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.exchange_partition"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.exchange_partition"); } @@ -83071,7 +83071,7 @@ void ThriftHiveMetastoreProcessor::process_exchange_partition(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.exchange_partition", bytes); } @@ -83092,7 +83092,7 @@ void ThriftHiveMetastoreProcessor::process_exchange_partition(int32_t seqid, ::a result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.exchange_partition"); } @@ -83105,7 +83105,7 @@ void ThriftHiveMetastoreProcessor::process_exchange_partition(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.exchange_partition"); } @@ -83115,20 +83115,20 @@ void ThriftHiveMetastoreProcessor::process_exchange_partition(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.exchange_partition", bytes); } } void ThriftHiveMetastoreProcessor::process_exchange_partitions(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.exchange_partitions", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.exchange_partitions"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.exchange_partitions"); } @@ -83137,7 +83137,7 @@ void ThriftHiveMetastoreProcessor::process_exchange_partitions(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.exchange_partitions", bytes); } @@ -83158,7 +83158,7 @@ void ThriftHiveMetastoreProcessor::process_exchange_partitions(int32_t seqid, :: result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.exchange_partitions"); } @@ -83171,7 +83171,7 @@ void ThriftHiveMetastoreProcessor::process_exchange_partitions(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.exchange_partitions"); } @@ -83181,20 +83181,20 @@ void ThriftHiveMetastoreProcessor::process_exchange_partitions(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.exchange_partitions", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partition_with_auth(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partition_with_auth", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partition_with_auth"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partition_with_auth"); } @@ -83203,7 +83203,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_with_auth(int32_t seqid iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partition_with_auth", bytes); } @@ -83218,7 +83218,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_with_auth(int32_t seqid result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partition_with_auth"); } @@ -83231,7 +83231,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_with_auth(int32_t seqid return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partition_with_auth"); } @@ -83241,20 +83241,20 @@ void ThriftHiveMetastoreProcessor::process_get_partition_with_auth(int32_t seqid bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partition_with_auth", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partition_by_name(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partition_by_name", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partition_by_name"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partition_by_name"); } @@ -83263,7 +83263,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_by_name(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partition_by_name", bytes); } @@ -83278,7 +83278,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_by_name(int32_t seqid, result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partition_by_name"); } @@ -83291,7 +83291,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_by_name(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partition_by_name"); } @@ -83301,20 +83301,20 @@ void ThriftHiveMetastoreProcessor::process_get_partition_by_name(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partition_by_name", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions"); } @@ -83323,7 +83323,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions", bytes); } @@ -83338,7 +83338,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions(int32_t seqid, ::apach result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions"); } @@ -83351,7 +83351,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions"); } @@ -83361,20 +83361,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_req"); } @@ -83383,7 +83383,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_req(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_req", bytes); } @@ -83398,7 +83398,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_req(int32_t seqid, ::a result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_req"); } @@ -83411,7 +83411,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_req(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_req"); } @@ -83421,20 +83421,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_req(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_req", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_with_auth(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_with_auth", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_with_auth"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_with_auth"); } @@ -83443,7 +83443,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_with_auth(int32_t seqi iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_with_auth", bytes); } @@ -83458,7 +83458,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_with_auth(int32_t seqi result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_with_auth"); } @@ -83471,7 +83471,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_with_auth(int32_t seqi return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_with_auth"); } @@ -83481,20 +83481,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_with_auth(int32_t seqi bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_with_auth", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_pspec(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_pspec", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_pspec"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_pspec"); } @@ -83503,7 +83503,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_pspec(int32_t seqid, : iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_pspec", bytes); } @@ -83518,7 +83518,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_pspec(int32_t seqid, : result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_pspec"); } @@ -83531,7 +83531,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_pspec(int32_t seqid, : return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_pspec"); } @@ -83541,20 +83541,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_pspec(int32_t seqid, : bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_pspec", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partition_names(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partition_names", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partition_names"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partition_names"); } @@ -83563,7 +83563,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partition_names", bytes); } @@ -83578,7 +83578,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names(int32_t seqid, :: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partition_names"); } @@ -83591,7 +83591,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partition_names"); } @@ -83601,20 +83601,20 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partition_names", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partition_values(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partition_values", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partition_values"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partition_values"); } @@ -83623,7 +83623,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_values(int32_t seqid, : iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partition_values", bytes); } @@ -83638,7 +83638,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_values(int32_t seqid, : result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partition_values"); } @@ -83651,7 +83651,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_values(int32_t seqid, : return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partition_values"); } @@ -83661,20 +83661,20 @@ void ThriftHiveMetastoreProcessor::process_get_partition_values(int32_t seqid, : bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partition_values", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_ps(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_ps", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_ps"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_ps"); } @@ -83683,7 +83683,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_ps(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_ps", bytes); } @@ -83698,7 +83698,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_ps(int32_t seqid, ::ap result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_ps"); } @@ -83711,7 +83711,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_ps(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_ps"); } @@ -83721,20 +83721,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_ps(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_ps", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_ps_with_auth(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_ps_with_auth", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_ps_with_auth"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_ps_with_auth"); } @@ -83743,7 +83743,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_ps_with_auth(int32_t s iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_ps_with_auth", bytes); } @@ -83758,7 +83758,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_ps_with_auth(int32_t s result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_ps_with_auth"); } @@ -83771,7 +83771,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_ps_with_auth(int32_t s return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_ps_with_auth"); } @@ -83781,20 +83781,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_ps_with_auth(int32_t s bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_ps_with_auth", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_ps_with_auth_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_ps_with_auth_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_ps_with_auth_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_ps_with_auth_req"); } @@ -83803,7 +83803,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_ps_with_auth_req(int32 iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_ps_with_auth_req", bytes); } @@ -83818,7 +83818,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_ps_with_auth_req(int32 result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_ps_with_auth_req"); } @@ -83831,7 +83831,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_ps_with_auth_req(int32 return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_ps_with_auth_req"); } @@ -83841,20 +83841,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_ps_with_auth_req(int32 bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_ps_with_auth_req", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partition_names_ps(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partition_names_ps", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partition_names_ps"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partition_names_ps"); } @@ -83863,7 +83863,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names_ps(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partition_names_ps", bytes); } @@ -83878,7 +83878,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names_ps(int32_t seqid, result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partition_names_ps"); } @@ -83891,7 +83891,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names_ps(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partition_names_ps"); } @@ -83901,20 +83901,20 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names_ps(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partition_names_ps", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partition_names_ps_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partition_names_ps_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partition_names_ps_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partition_names_ps_req"); } @@ -83923,7 +83923,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names_ps_req(int32_t se iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partition_names_ps_req", bytes); } @@ -83938,7 +83938,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names_ps_req(int32_t se result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partition_names_ps_req"); } @@ -83951,7 +83951,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names_ps_req(int32_t se return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partition_names_ps_req"); } @@ -83961,20 +83961,20 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names_ps_req(int32_t se bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partition_names_ps_req", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partition_names_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partition_names_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partition_names_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partition_names_req"); } @@ -83983,7 +83983,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names_req(int32_t seqid iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partition_names_req", bytes); } @@ -83998,7 +83998,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names_req(int32_t seqid result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partition_names_req"); } @@ -84011,7 +84011,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names_req(int32_t seqid return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partition_names_req"); } @@ -84021,20 +84021,20 @@ void ThriftHiveMetastoreProcessor::process_get_partition_names_req(int32_t seqid bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partition_names_req", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_by_filter(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_by_filter", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_by_filter"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_by_filter"); } @@ -84043,7 +84043,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_filter(int32_t seqi iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_by_filter", bytes); } @@ -84058,7 +84058,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_filter(int32_t seqi result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_by_filter"); } @@ -84071,7 +84071,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_filter(int32_t seqi return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_by_filter"); } @@ -84081,20 +84081,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_filter(int32_t seqi bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_by_filter", bytes); } } void ThriftHiveMetastoreProcessor::process_get_part_specs_by_filter(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_part_specs_by_filter", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_part_specs_by_filter"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_part_specs_by_filter"); } @@ -84103,7 +84103,7 @@ void ThriftHiveMetastoreProcessor::process_get_part_specs_by_filter(int32_t seqi iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_part_specs_by_filter", bytes); } @@ -84118,7 +84118,7 @@ void ThriftHiveMetastoreProcessor::process_get_part_specs_by_filter(int32_t seqi result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_part_specs_by_filter"); } @@ -84131,7 +84131,7 @@ void ThriftHiveMetastoreProcessor::process_get_part_specs_by_filter(int32_t seqi return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_part_specs_by_filter"); } @@ -84141,20 +84141,20 @@ void ThriftHiveMetastoreProcessor::process_get_part_specs_by_filter(int32_t seqi bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_part_specs_by_filter", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_by_expr(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_by_expr", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_by_expr"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_by_expr"); } @@ -84163,7 +84163,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_expr(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_by_expr", bytes); } @@ -84178,7 +84178,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_expr(int32_t seqid, result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_by_expr"); } @@ -84191,7 +84191,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_expr(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_by_expr"); } @@ -84201,20 +84201,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_expr(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_by_expr", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_spec_by_expr(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_spec_by_expr", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_spec_by_expr"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_spec_by_expr"); } @@ -84223,7 +84223,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_spec_by_expr(int32_t s iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_spec_by_expr", bytes); } @@ -84238,7 +84238,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_spec_by_expr(int32_t s result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_spec_by_expr"); } @@ -84251,7 +84251,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_spec_by_expr(int32_t s return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_spec_by_expr"); } @@ -84261,20 +84261,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_spec_by_expr(int32_t s bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_spec_by_expr", bytes); } } void ThriftHiveMetastoreProcessor::process_get_num_partitions_by_filter(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_num_partitions_by_filter", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_num_partitions_by_filter"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_num_partitions_by_filter"); } @@ -84283,7 +84283,7 @@ void ThriftHiveMetastoreProcessor::process_get_num_partitions_by_filter(int32_t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_num_partitions_by_filter", bytes); } @@ -84298,7 +84298,7 @@ void ThriftHiveMetastoreProcessor::process_get_num_partitions_by_filter(int32_t result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_num_partitions_by_filter"); } @@ -84311,7 +84311,7 @@ void ThriftHiveMetastoreProcessor::process_get_num_partitions_by_filter(int32_t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_num_partitions_by_filter"); } @@ -84321,20 +84321,20 @@ void ThriftHiveMetastoreProcessor::process_get_num_partitions_by_filter(int32_t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_num_partitions_by_filter", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_by_names(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_by_names", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_by_names"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_by_names"); } @@ -84343,7 +84343,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_names(int32_t seqid iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_by_names", bytes); } @@ -84358,7 +84358,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_names(int32_t seqid result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_by_names"); } @@ -84371,7 +84371,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_names(int32_t seqid return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_by_names"); } @@ -84381,20 +84381,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_names(int32_t seqid bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_by_names", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_by_names_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_by_names_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_by_names_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_by_names_req"); } @@ -84403,7 +84403,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_names_req(int32_t s iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_by_names_req", bytes); } @@ -84418,7 +84418,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_names_req(int32_t s result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_by_names_req"); } @@ -84431,7 +84431,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_names_req(int32_t s return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_by_names_req"); } @@ -84441,20 +84441,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_by_names_req(int32_t s bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_by_names_req", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_partition(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_partition", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_partition"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_partition"); } @@ -84463,7 +84463,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partition(int32_t seqid, ::apac iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_partition", bytes); } @@ -84477,7 +84477,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partition(int32_t seqid, ::apac result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_partition"); } @@ -84490,7 +84490,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partition(int32_t seqid, ::apac return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_partition"); } @@ -84500,20 +84500,20 @@ void ThriftHiveMetastoreProcessor::process_alter_partition(int32_t seqid, ::apac bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_partition", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_partitions(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_partitions", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_partitions"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_partitions"); } @@ -84522,7 +84522,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partitions(int32_t seqid, ::apa iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_partitions", bytes); } @@ -84536,7 +84536,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partitions(int32_t seqid, ::apa result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_partitions"); } @@ -84549,7 +84549,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partitions(int32_t seqid, ::apa return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_partitions"); } @@ -84559,20 +84559,20 @@ void ThriftHiveMetastoreProcessor::process_alter_partitions(int32_t seqid, ::apa bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_partitions", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_partitions_with_environment_context(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_partitions_with_environment_context", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_partitions_with_environment_context"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_partitions_with_environment_context"); } @@ -84581,7 +84581,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partitions_with_environment_con iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_partitions_with_environment_context", bytes); } @@ -84595,7 +84595,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partitions_with_environment_con result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_partitions_with_environment_context"); } @@ -84608,7 +84608,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partitions_with_environment_con return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_partitions_with_environment_context"); } @@ -84618,20 +84618,20 @@ void ThriftHiveMetastoreProcessor::process_alter_partitions_with_environment_con bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_partitions_with_environment_context", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_partitions_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_partitions_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_partitions_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_partitions_req"); } @@ -84640,7 +84640,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partitions_req(int32_t seqid, : iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_partitions_req", bytes); } @@ -84655,7 +84655,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partitions_req(int32_t seqid, : result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_partitions_req"); } @@ -84668,7 +84668,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partitions_req(int32_t seqid, : return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_partitions_req"); } @@ -84678,20 +84678,20 @@ void ThriftHiveMetastoreProcessor::process_alter_partitions_req(int32_t seqid, : bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_partitions_req", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_partition_with_environment_context(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_partition_with_environment_context", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_partition_with_environment_context"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_partition_with_environment_context"); } @@ -84700,7 +84700,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partition_with_environment_cont iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_partition_with_environment_context", bytes); } @@ -84714,7 +84714,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partition_with_environment_cont result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_partition_with_environment_context"); } @@ -84727,7 +84727,7 @@ void ThriftHiveMetastoreProcessor::process_alter_partition_with_environment_cont return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_partition_with_environment_context"); } @@ -84737,20 +84737,20 @@ void ThriftHiveMetastoreProcessor::process_alter_partition_with_environment_cont bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_partition_with_environment_context", bytes); } } void ThriftHiveMetastoreProcessor::process_rename_partition(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.rename_partition", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.rename_partition"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.rename_partition"); } @@ -84759,7 +84759,7 @@ void ThriftHiveMetastoreProcessor::process_rename_partition(int32_t seqid, ::apa iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.rename_partition", bytes); } @@ -84773,7 +84773,7 @@ void ThriftHiveMetastoreProcessor::process_rename_partition(int32_t seqid, ::apa result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.rename_partition"); } @@ -84786,7 +84786,7 @@ void ThriftHiveMetastoreProcessor::process_rename_partition(int32_t seqid, ::apa return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.rename_partition"); } @@ -84796,20 +84796,20 @@ void ThriftHiveMetastoreProcessor::process_rename_partition(int32_t seqid, ::apa bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.rename_partition", bytes); } } void ThriftHiveMetastoreProcessor::process_rename_partition_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.rename_partition_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.rename_partition_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.rename_partition_req"); } @@ -84818,7 +84818,7 @@ void ThriftHiveMetastoreProcessor::process_rename_partition_req(int32_t seqid, : iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.rename_partition_req", bytes); } @@ -84833,7 +84833,7 @@ void ThriftHiveMetastoreProcessor::process_rename_partition_req(int32_t seqid, : result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.rename_partition_req"); } @@ -84846,7 +84846,7 @@ void ThriftHiveMetastoreProcessor::process_rename_partition_req(int32_t seqid, : return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.rename_partition_req"); } @@ -84856,20 +84856,20 @@ void ThriftHiveMetastoreProcessor::process_rename_partition_req(int32_t seqid, : bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.rename_partition_req", bytes); } } void ThriftHiveMetastoreProcessor::process_partition_name_has_valid_characters(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.partition_name_has_valid_characters", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.partition_name_has_valid_characters"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.partition_name_has_valid_characters"); } @@ -84878,7 +84878,7 @@ void ThriftHiveMetastoreProcessor::process_partition_name_has_valid_characters(i iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.partition_name_has_valid_characters", bytes); } @@ -84890,7 +84890,7 @@ void ThriftHiveMetastoreProcessor::process_partition_name_has_valid_characters(i result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.partition_name_has_valid_characters"); } @@ -84903,7 +84903,7 @@ void ThriftHiveMetastoreProcessor::process_partition_name_has_valid_characters(i return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.partition_name_has_valid_characters"); } @@ -84913,20 +84913,20 @@ void ThriftHiveMetastoreProcessor::process_partition_name_has_valid_characters(i bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.partition_name_has_valid_characters", bytes); } } void ThriftHiveMetastoreProcessor::process_get_config_value(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_config_value", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_config_value"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_config_value"); } @@ -84935,7 +84935,7 @@ void ThriftHiveMetastoreProcessor::process_get_config_value(int32_t seqid, ::apa iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_config_value", bytes); } @@ -84947,7 +84947,7 @@ void ThriftHiveMetastoreProcessor::process_get_config_value(int32_t seqid, ::apa result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_config_value"); } @@ -84960,7 +84960,7 @@ void ThriftHiveMetastoreProcessor::process_get_config_value(int32_t seqid, ::apa return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_config_value"); } @@ -84970,20 +84970,20 @@ void ThriftHiveMetastoreProcessor::process_get_config_value(int32_t seqid, ::apa bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_config_value", bytes); } } void ThriftHiveMetastoreProcessor::process_partition_name_to_vals(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.partition_name_to_vals", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.partition_name_to_vals"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.partition_name_to_vals"); } @@ -84992,7 +84992,7 @@ void ThriftHiveMetastoreProcessor::process_partition_name_to_vals(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.partition_name_to_vals", bytes); } @@ -85004,7 +85004,7 @@ void ThriftHiveMetastoreProcessor::process_partition_name_to_vals(int32_t seqid, result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.partition_name_to_vals"); } @@ -85017,7 +85017,7 @@ void ThriftHiveMetastoreProcessor::process_partition_name_to_vals(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.partition_name_to_vals"); } @@ -85027,20 +85027,20 @@ void ThriftHiveMetastoreProcessor::process_partition_name_to_vals(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.partition_name_to_vals", bytes); } } void ThriftHiveMetastoreProcessor::process_partition_name_to_spec(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.partition_name_to_spec", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.partition_name_to_spec"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.partition_name_to_spec"); } @@ -85049,7 +85049,7 @@ void ThriftHiveMetastoreProcessor::process_partition_name_to_spec(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.partition_name_to_spec", bytes); } @@ -85061,7 +85061,7 @@ void ThriftHiveMetastoreProcessor::process_partition_name_to_spec(int32_t seqid, result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.partition_name_to_spec"); } @@ -85074,7 +85074,7 @@ void ThriftHiveMetastoreProcessor::process_partition_name_to_spec(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.partition_name_to_spec"); } @@ -85084,20 +85084,20 @@ void ThriftHiveMetastoreProcessor::process_partition_name_to_spec(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.partition_name_to_spec", bytes); } } void ThriftHiveMetastoreProcessor::process_markPartitionForEvent(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.markPartitionForEvent", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.markPartitionForEvent"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.markPartitionForEvent"); } @@ -85106,7 +85106,7 @@ void ThriftHiveMetastoreProcessor::process_markPartitionForEvent(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.markPartitionForEvent", bytes); } @@ -85132,7 +85132,7 @@ void ThriftHiveMetastoreProcessor::process_markPartitionForEvent(int32_t seqid, result.o6 = o6; result.__isset.o6 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.markPartitionForEvent"); } @@ -85145,7 +85145,7 @@ void ThriftHiveMetastoreProcessor::process_markPartitionForEvent(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.markPartitionForEvent"); } @@ -85155,20 +85155,20 @@ void ThriftHiveMetastoreProcessor::process_markPartitionForEvent(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.markPartitionForEvent", bytes); } } void ThriftHiveMetastoreProcessor::process_isPartitionMarkedForEvent(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.isPartitionMarkedForEvent", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.isPartitionMarkedForEvent"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.isPartitionMarkedForEvent"); } @@ -85177,7 +85177,7 @@ void ThriftHiveMetastoreProcessor::process_isPartitionMarkedForEvent(int32_t seq iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.isPartitionMarkedForEvent", bytes); } @@ -85204,7 +85204,7 @@ void ThriftHiveMetastoreProcessor::process_isPartitionMarkedForEvent(int32_t seq result.o6 = o6; result.__isset.o6 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.isPartitionMarkedForEvent"); } @@ -85217,7 +85217,7 @@ void ThriftHiveMetastoreProcessor::process_isPartitionMarkedForEvent(int32_t seq return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.isPartitionMarkedForEvent"); } @@ -85227,20 +85227,20 @@ void ThriftHiveMetastoreProcessor::process_isPartitionMarkedForEvent(int32_t seq bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.isPartitionMarkedForEvent", bytes); } } void ThriftHiveMetastoreProcessor::process_get_primary_keys(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_primary_keys", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_primary_keys"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_primary_keys"); } @@ -85249,7 +85249,7 @@ void ThriftHiveMetastoreProcessor::process_get_primary_keys(int32_t seqid, ::apa iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_primary_keys", bytes); } @@ -85264,7 +85264,7 @@ void ThriftHiveMetastoreProcessor::process_get_primary_keys(int32_t seqid, ::apa result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_primary_keys"); } @@ -85277,7 +85277,7 @@ void ThriftHiveMetastoreProcessor::process_get_primary_keys(int32_t seqid, ::apa return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_primary_keys"); } @@ -85287,20 +85287,20 @@ void ThriftHiveMetastoreProcessor::process_get_primary_keys(int32_t seqid, ::apa bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_primary_keys", bytes); } } void ThriftHiveMetastoreProcessor::process_get_foreign_keys(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_foreign_keys", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_foreign_keys"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_foreign_keys"); } @@ -85309,7 +85309,7 @@ void ThriftHiveMetastoreProcessor::process_get_foreign_keys(int32_t seqid, ::apa iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_foreign_keys", bytes); } @@ -85324,7 +85324,7 @@ void ThriftHiveMetastoreProcessor::process_get_foreign_keys(int32_t seqid, ::apa result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_foreign_keys"); } @@ -85337,7 +85337,7 @@ void ThriftHiveMetastoreProcessor::process_get_foreign_keys(int32_t seqid, ::apa return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_foreign_keys"); } @@ -85347,20 +85347,20 @@ void ThriftHiveMetastoreProcessor::process_get_foreign_keys(int32_t seqid, ::apa bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_foreign_keys", bytes); } } void ThriftHiveMetastoreProcessor::process_get_unique_constraints(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_unique_constraints", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_unique_constraints"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_unique_constraints"); } @@ -85369,7 +85369,7 @@ void ThriftHiveMetastoreProcessor::process_get_unique_constraints(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_unique_constraints", bytes); } @@ -85384,7 +85384,7 @@ void ThriftHiveMetastoreProcessor::process_get_unique_constraints(int32_t seqid, result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_unique_constraints"); } @@ -85397,7 +85397,7 @@ void ThriftHiveMetastoreProcessor::process_get_unique_constraints(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_unique_constraints"); } @@ -85407,20 +85407,20 @@ void ThriftHiveMetastoreProcessor::process_get_unique_constraints(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_unique_constraints", bytes); } } void ThriftHiveMetastoreProcessor::process_get_not_null_constraints(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_not_null_constraints", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_not_null_constraints"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_not_null_constraints"); } @@ -85429,7 +85429,7 @@ void ThriftHiveMetastoreProcessor::process_get_not_null_constraints(int32_t seqi iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_not_null_constraints", bytes); } @@ -85444,7 +85444,7 @@ void ThriftHiveMetastoreProcessor::process_get_not_null_constraints(int32_t seqi result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_not_null_constraints"); } @@ -85457,7 +85457,7 @@ void ThriftHiveMetastoreProcessor::process_get_not_null_constraints(int32_t seqi return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_not_null_constraints"); } @@ -85467,20 +85467,20 @@ void ThriftHiveMetastoreProcessor::process_get_not_null_constraints(int32_t seqi bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_not_null_constraints", bytes); } } void ThriftHiveMetastoreProcessor::process_get_default_constraints(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_default_constraints", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_default_constraints"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_default_constraints"); } @@ -85489,7 +85489,7 @@ void ThriftHiveMetastoreProcessor::process_get_default_constraints(int32_t seqid iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_default_constraints", bytes); } @@ -85504,7 +85504,7 @@ void ThriftHiveMetastoreProcessor::process_get_default_constraints(int32_t seqid result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_default_constraints"); } @@ -85517,7 +85517,7 @@ void ThriftHiveMetastoreProcessor::process_get_default_constraints(int32_t seqid return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_default_constraints"); } @@ -85527,20 +85527,20 @@ void ThriftHiveMetastoreProcessor::process_get_default_constraints(int32_t seqid bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_default_constraints", bytes); } } void ThriftHiveMetastoreProcessor::process_get_check_constraints(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_check_constraints", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_check_constraints"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_check_constraints"); } @@ -85549,7 +85549,7 @@ void ThriftHiveMetastoreProcessor::process_get_check_constraints(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_check_constraints", bytes); } @@ -85564,7 +85564,7 @@ void ThriftHiveMetastoreProcessor::process_get_check_constraints(int32_t seqid, result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_check_constraints"); } @@ -85577,7 +85577,7 @@ void ThriftHiveMetastoreProcessor::process_get_check_constraints(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_check_constraints"); } @@ -85587,20 +85587,20 @@ void ThriftHiveMetastoreProcessor::process_get_check_constraints(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_check_constraints", bytes); } } void ThriftHiveMetastoreProcessor::process_get_all_table_constraints(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_all_table_constraints", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_all_table_constraints"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_all_table_constraints"); } @@ -85609,7 +85609,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_table_constraints(int32_t seq iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_all_table_constraints", bytes); } @@ -85624,7 +85624,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_table_constraints(int32_t seq result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_all_table_constraints"); } @@ -85637,7 +85637,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_table_constraints(int32_t seq return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_all_table_constraints"); } @@ -85647,20 +85647,20 @@ void ThriftHiveMetastoreProcessor::process_get_all_table_constraints(int32_t seq bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_all_table_constraints", bytes); } } void ThriftHiveMetastoreProcessor::process_update_table_column_statistics(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.update_table_column_statistics", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.update_table_column_statistics"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.update_table_column_statistics"); } @@ -85669,7 +85669,7 @@ void ThriftHiveMetastoreProcessor::process_update_table_column_statistics(int32_ iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.update_table_column_statistics", bytes); } @@ -85690,7 +85690,7 @@ void ThriftHiveMetastoreProcessor::process_update_table_column_statistics(int32_ result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.update_table_column_statistics"); } @@ -85703,7 +85703,7 @@ void ThriftHiveMetastoreProcessor::process_update_table_column_statistics(int32_ return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.update_table_column_statistics"); } @@ -85713,20 +85713,20 @@ void ThriftHiveMetastoreProcessor::process_update_table_column_statistics(int32_ bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.update_table_column_statistics", bytes); } } void ThriftHiveMetastoreProcessor::process_update_partition_column_statistics(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.update_partition_column_statistics", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.update_partition_column_statistics"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.update_partition_column_statistics"); } @@ -85735,7 +85735,7 @@ void ThriftHiveMetastoreProcessor::process_update_partition_column_statistics(in iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.update_partition_column_statistics", bytes); } @@ -85756,7 +85756,7 @@ void ThriftHiveMetastoreProcessor::process_update_partition_column_statistics(in result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.update_partition_column_statistics"); } @@ -85769,7 +85769,7 @@ void ThriftHiveMetastoreProcessor::process_update_partition_column_statistics(in return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.update_partition_column_statistics"); } @@ -85779,20 +85779,20 @@ void ThriftHiveMetastoreProcessor::process_update_partition_column_statistics(in bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.update_partition_column_statistics", bytes); } } void ThriftHiveMetastoreProcessor::process_update_table_column_statistics_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.update_table_column_statistics_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.update_table_column_statistics_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.update_table_column_statistics_req"); } @@ -85801,7 +85801,7 @@ void ThriftHiveMetastoreProcessor::process_update_table_column_statistics_req(in iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.update_table_column_statistics_req", bytes); } @@ -85822,7 +85822,7 @@ void ThriftHiveMetastoreProcessor::process_update_table_column_statistics_req(in result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.update_table_column_statistics_req"); } @@ -85835,7 +85835,7 @@ void ThriftHiveMetastoreProcessor::process_update_table_column_statistics_req(in return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.update_table_column_statistics_req"); } @@ -85845,20 +85845,20 @@ void ThriftHiveMetastoreProcessor::process_update_table_column_statistics_req(in bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.update_table_column_statistics_req", bytes); } } void ThriftHiveMetastoreProcessor::process_update_partition_column_statistics_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.update_partition_column_statistics_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.update_partition_column_statistics_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.update_partition_column_statistics_req"); } @@ -85867,7 +85867,7 @@ void ThriftHiveMetastoreProcessor::process_update_partition_column_statistics_re iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.update_partition_column_statistics_req", bytes); } @@ -85888,7 +85888,7 @@ void ThriftHiveMetastoreProcessor::process_update_partition_column_statistics_re result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.update_partition_column_statistics_req"); } @@ -85901,7 +85901,7 @@ void ThriftHiveMetastoreProcessor::process_update_partition_column_statistics_re return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.update_partition_column_statistics_req"); } @@ -85911,20 +85911,20 @@ void ThriftHiveMetastoreProcessor::process_update_partition_column_statistics_re bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.update_partition_column_statistics_req", bytes); } } void ThriftHiveMetastoreProcessor::process_get_table_column_statistics(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_table_column_statistics", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_table_column_statistics"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_table_column_statistics"); } @@ -85933,7 +85933,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_column_statistics(int32_t s iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_table_column_statistics", bytes); } @@ -85954,7 +85954,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_column_statistics(int32_t s result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_table_column_statistics"); } @@ -85967,7 +85967,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_column_statistics(int32_t s return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_table_column_statistics"); } @@ -85977,20 +85977,20 @@ void ThriftHiveMetastoreProcessor::process_get_table_column_statistics(int32_t s bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_table_column_statistics", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partition_column_statistics(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partition_column_statistics", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partition_column_statistics"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partition_column_statistics"); } @@ -85999,7 +85999,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_column_statistics(int32 iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partition_column_statistics", bytes); } @@ -86020,7 +86020,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_column_statistics(int32 result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partition_column_statistics"); } @@ -86033,7 +86033,7 @@ void ThriftHiveMetastoreProcessor::process_get_partition_column_statistics(int32 return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partition_column_statistics"); } @@ -86043,20 +86043,20 @@ void ThriftHiveMetastoreProcessor::process_get_partition_column_statistics(int32 bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partition_column_statistics", bytes); } } void ThriftHiveMetastoreProcessor::process_get_table_statistics_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_table_statistics_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_table_statistics_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_table_statistics_req"); } @@ -86065,7 +86065,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_statistics_req(int32_t seqi iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_table_statistics_req", bytes); } @@ -86080,7 +86080,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_statistics_req(int32_t seqi result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_table_statistics_req"); } @@ -86093,7 +86093,7 @@ void ThriftHiveMetastoreProcessor::process_get_table_statistics_req(int32_t seqi return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_table_statistics_req"); } @@ -86103,20 +86103,20 @@ void ThriftHiveMetastoreProcessor::process_get_table_statistics_req(int32_t seqi bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_table_statistics_req", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_statistics_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_statistics_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_statistics_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_statistics_req"); } @@ -86125,7 +86125,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_statistics_req(int32_t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_statistics_req", bytes); } @@ -86140,7 +86140,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_statistics_req(int32_t result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_statistics_req"); } @@ -86153,7 +86153,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_statistics_req(int32_t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_statistics_req"); } @@ -86163,20 +86163,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_statistics_req(int32_t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_statistics_req", bytes); } } void ThriftHiveMetastoreProcessor::process_get_aggr_stats_for(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_aggr_stats_for", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_aggr_stats_for"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_aggr_stats_for"); } @@ -86185,7 +86185,7 @@ void ThriftHiveMetastoreProcessor::process_get_aggr_stats_for(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_aggr_stats_for", bytes); } @@ -86200,7 +86200,7 @@ void ThriftHiveMetastoreProcessor::process_get_aggr_stats_for(int32_t seqid, ::a result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_aggr_stats_for"); } @@ -86213,7 +86213,7 @@ void ThriftHiveMetastoreProcessor::process_get_aggr_stats_for(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_aggr_stats_for"); } @@ -86223,20 +86223,20 @@ void ThriftHiveMetastoreProcessor::process_get_aggr_stats_for(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_aggr_stats_for", bytes); } } void ThriftHiveMetastoreProcessor::process_set_aggr_stats_for(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.set_aggr_stats_for", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.set_aggr_stats_for"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.set_aggr_stats_for"); } @@ -86245,7 +86245,7 @@ void ThriftHiveMetastoreProcessor::process_set_aggr_stats_for(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.set_aggr_stats_for", bytes); } @@ -86266,7 +86266,7 @@ void ThriftHiveMetastoreProcessor::process_set_aggr_stats_for(int32_t seqid, ::a result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.set_aggr_stats_for"); } @@ -86279,7 +86279,7 @@ void ThriftHiveMetastoreProcessor::process_set_aggr_stats_for(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.set_aggr_stats_for"); } @@ -86289,20 +86289,20 @@ void ThriftHiveMetastoreProcessor::process_set_aggr_stats_for(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.set_aggr_stats_for", bytes); } } void ThriftHiveMetastoreProcessor::process_delete_partition_column_statistics(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.delete_partition_column_statistics", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.delete_partition_column_statistics"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.delete_partition_column_statistics"); } @@ -86311,7 +86311,7 @@ void ThriftHiveMetastoreProcessor::process_delete_partition_column_statistics(in iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.delete_partition_column_statistics", bytes); } @@ -86332,7 +86332,7 @@ void ThriftHiveMetastoreProcessor::process_delete_partition_column_statistics(in result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.delete_partition_column_statistics"); } @@ -86345,7 +86345,7 @@ void ThriftHiveMetastoreProcessor::process_delete_partition_column_statistics(in return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.delete_partition_column_statistics"); } @@ -86355,20 +86355,20 @@ void ThriftHiveMetastoreProcessor::process_delete_partition_column_statistics(in bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.delete_partition_column_statistics", bytes); } } void ThriftHiveMetastoreProcessor::process_delete_table_column_statistics(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.delete_table_column_statistics", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.delete_table_column_statistics"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.delete_table_column_statistics"); } @@ -86377,7 +86377,7 @@ void ThriftHiveMetastoreProcessor::process_delete_table_column_statistics(int32_ iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.delete_table_column_statistics", bytes); } @@ -86398,7 +86398,7 @@ void ThriftHiveMetastoreProcessor::process_delete_table_column_statistics(int32_ result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.delete_table_column_statistics"); } @@ -86411,7 +86411,7 @@ void ThriftHiveMetastoreProcessor::process_delete_table_column_statistics(int32_ return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.delete_table_column_statistics"); } @@ -86421,20 +86421,20 @@ void ThriftHiveMetastoreProcessor::process_delete_table_column_statistics(int32_ bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.delete_table_column_statistics", bytes); } } void ThriftHiveMetastoreProcessor::process_create_function(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_function", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_function"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_function"); } @@ -86443,7 +86443,7 @@ void ThriftHiveMetastoreProcessor::process_create_function(int32_t seqid, ::apac iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_function", bytes); } @@ -86463,7 +86463,7 @@ void ThriftHiveMetastoreProcessor::process_create_function(int32_t seqid, ::apac result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_function"); } @@ -86476,7 +86476,7 @@ void ThriftHiveMetastoreProcessor::process_create_function(int32_t seqid, ::apac return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_function"); } @@ -86486,20 +86486,20 @@ void ThriftHiveMetastoreProcessor::process_create_function(int32_t seqid, ::apac bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_function", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_function(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_function", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_function"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_function"); } @@ -86508,7 +86508,7 @@ void ThriftHiveMetastoreProcessor::process_drop_function(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_function", bytes); } @@ -86522,7 +86522,7 @@ void ThriftHiveMetastoreProcessor::process_drop_function(int32_t seqid, ::apache result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_function"); } @@ -86535,7 +86535,7 @@ void ThriftHiveMetastoreProcessor::process_drop_function(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_function"); } @@ -86545,20 +86545,20 @@ void ThriftHiveMetastoreProcessor::process_drop_function(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_function", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_function(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_function", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_function"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_function"); } @@ -86567,7 +86567,7 @@ void ThriftHiveMetastoreProcessor::process_alter_function(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_function", bytes); } @@ -86581,7 +86581,7 @@ void ThriftHiveMetastoreProcessor::process_alter_function(int32_t seqid, ::apach result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_function"); } @@ -86594,7 +86594,7 @@ void ThriftHiveMetastoreProcessor::process_alter_function(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_function"); } @@ -86604,20 +86604,20 @@ void ThriftHiveMetastoreProcessor::process_alter_function(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_function", bytes); } } void ThriftHiveMetastoreProcessor::process_get_functions(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_functions", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_functions"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_functions"); } @@ -86626,7 +86626,7 @@ void ThriftHiveMetastoreProcessor::process_get_functions(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_functions", bytes); } @@ -86638,7 +86638,7 @@ void ThriftHiveMetastoreProcessor::process_get_functions(int32_t seqid, ::apache result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_functions"); } @@ -86651,7 +86651,7 @@ void ThriftHiveMetastoreProcessor::process_get_functions(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_functions"); } @@ -86661,20 +86661,20 @@ void ThriftHiveMetastoreProcessor::process_get_functions(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_functions", bytes); } } void ThriftHiveMetastoreProcessor::process_get_function(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_function", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_function"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_function"); } @@ -86683,7 +86683,7 @@ void ThriftHiveMetastoreProcessor::process_get_function(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_function", bytes); } @@ -86698,7 +86698,7 @@ void ThriftHiveMetastoreProcessor::process_get_function(int32_t seqid, ::apache: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_function"); } @@ -86711,7 +86711,7 @@ void ThriftHiveMetastoreProcessor::process_get_function(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_function"); } @@ -86721,20 +86721,20 @@ void ThriftHiveMetastoreProcessor::process_get_function(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_function", bytes); } } void ThriftHiveMetastoreProcessor::process_get_all_functions(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_all_functions", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_all_functions"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_all_functions"); } @@ -86743,7 +86743,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_functions(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_all_functions", bytes); } @@ -86755,7 +86755,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_functions(int32_t seqid, ::ap result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_all_functions"); } @@ -86768,7 +86768,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_functions(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_all_functions"); } @@ -86778,20 +86778,20 @@ void ThriftHiveMetastoreProcessor::process_get_all_functions(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_all_functions", bytes); } } void ThriftHiveMetastoreProcessor::process_create_role(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_role", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_role"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_role"); } @@ -86800,7 +86800,7 @@ void ThriftHiveMetastoreProcessor::process_create_role(int32_t seqid, ::apache:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_role", bytes); } @@ -86812,7 +86812,7 @@ void ThriftHiveMetastoreProcessor::process_create_role(int32_t seqid, ::apache:: result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_role"); } @@ -86825,7 +86825,7 @@ void ThriftHiveMetastoreProcessor::process_create_role(int32_t seqid, ::apache:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_role"); } @@ -86835,20 +86835,20 @@ void ThriftHiveMetastoreProcessor::process_create_role(int32_t seqid, ::apache:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_role", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_role(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_role", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_role"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_role"); } @@ -86857,7 +86857,7 @@ void ThriftHiveMetastoreProcessor::process_drop_role(int32_t seqid, ::apache::th iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_role", bytes); } @@ -86869,7 +86869,7 @@ void ThriftHiveMetastoreProcessor::process_drop_role(int32_t seqid, ::apache::th result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_role"); } @@ -86882,7 +86882,7 @@ void ThriftHiveMetastoreProcessor::process_drop_role(int32_t seqid, ::apache::th return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_role"); } @@ -86892,20 +86892,20 @@ void ThriftHiveMetastoreProcessor::process_drop_role(int32_t seqid, ::apache::th bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_role", bytes); } } void ThriftHiveMetastoreProcessor::process_get_role_names(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_role_names", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_role_names"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_role_names"); } @@ -86914,7 +86914,7 @@ void ThriftHiveMetastoreProcessor::process_get_role_names(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_role_names", bytes); } @@ -86926,7 +86926,7 @@ void ThriftHiveMetastoreProcessor::process_get_role_names(int32_t seqid, ::apach result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_role_names"); } @@ -86939,7 +86939,7 @@ void ThriftHiveMetastoreProcessor::process_get_role_names(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_role_names"); } @@ -86949,20 +86949,20 @@ void ThriftHiveMetastoreProcessor::process_get_role_names(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_role_names", bytes); } } void ThriftHiveMetastoreProcessor::process_grant_role(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.grant_role", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.grant_role"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.grant_role"); } @@ -86971,7 +86971,7 @@ void ThriftHiveMetastoreProcessor::process_grant_role(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.grant_role", bytes); } @@ -86983,7 +86983,7 @@ void ThriftHiveMetastoreProcessor::process_grant_role(int32_t seqid, ::apache::t result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.grant_role"); } @@ -86996,7 +86996,7 @@ void ThriftHiveMetastoreProcessor::process_grant_role(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.grant_role"); } @@ -87006,20 +87006,20 @@ void ThriftHiveMetastoreProcessor::process_grant_role(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.grant_role", bytes); } } void ThriftHiveMetastoreProcessor::process_revoke_role(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.revoke_role", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.revoke_role"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.revoke_role"); } @@ -87028,7 +87028,7 @@ void ThriftHiveMetastoreProcessor::process_revoke_role(int32_t seqid, ::apache:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.revoke_role", bytes); } @@ -87040,7 +87040,7 @@ void ThriftHiveMetastoreProcessor::process_revoke_role(int32_t seqid, ::apache:: result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.revoke_role"); } @@ -87053,7 +87053,7 @@ void ThriftHiveMetastoreProcessor::process_revoke_role(int32_t seqid, ::apache:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.revoke_role"); } @@ -87063,20 +87063,20 @@ void ThriftHiveMetastoreProcessor::process_revoke_role(int32_t seqid, ::apache:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.revoke_role", bytes); } } void ThriftHiveMetastoreProcessor::process_list_roles(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.list_roles", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.list_roles"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.list_roles"); } @@ -87085,7 +87085,7 @@ void ThriftHiveMetastoreProcessor::process_list_roles(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.list_roles", bytes); } @@ -87097,7 +87097,7 @@ void ThriftHiveMetastoreProcessor::process_list_roles(int32_t seqid, ::apache::t result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.list_roles"); } @@ -87110,7 +87110,7 @@ void ThriftHiveMetastoreProcessor::process_list_roles(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.list_roles"); } @@ -87120,20 +87120,20 @@ void ThriftHiveMetastoreProcessor::process_list_roles(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.list_roles", bytes); } } void ThriftHiveMetastoreProcessor::process_grant_revoke_role(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.grant_revoke_role", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.grant_revoke_role"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.grant_revoke_role"); } @@ -87142,7 +87142,7 @@ void ThriftHiveMetastoreProcessor::process_grant_revoke_role(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.grant_revoke_role", bytes); } @@ -87154,7 +87154,7 @@ void ThriftHiveMetastoreProcessor::process_grant_revoke_role(int32_t seqid, ::ap result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.grant_revoke_role"); } @@ -87167,7 +87167,7 @@ void ThriftHiveMetastoreProcessor::process_grant_revoke_role(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.grant_revoke_role"); } @@ -87177,20 +87177,20 @@ void ThriftHiveMetastoreProcessor::process_grant_revoke_role(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.grant_revoke_role", bytes); } } void ThriftHiveMetastoreProcessor::process_get_principals_in_role(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_principals_in_role", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_principals_in_role"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_principals_in_role"); } @@ -87199,7 +87199,7 @@ void ThriftHiveMetastoreProcessor::process_get_principals_in_role(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_principals_in_role", bytes); } @@ -87211,7 +87211,7 @@ void ThriftHiveMetastoreProcessor::process_get_principals_in_role(int32_t seqid, result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_principals_in_role"); } @@ -87224,7 +87224,7 @@ void ThriftHiveMetastoreProcessor::process_get_principals_in_role(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_principals_in_role"); } @@ -87234,20 +87234,20 @@ void ThriftHiveMetastoreProcessor::process_get_principals_in_role(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_principals_in_role", bytes); } } void ThriftHiveMetastoreProcessor::process_get_role_grants_for_principal(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_role_grants_for_principal", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_role_grants_for_principal"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_role_grants_for_principal"); } @@ -87256,7 +87256,7 @@ void ThriftHiveMetastoreProcessor::process_get_role_grants_for_principal(int32_t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_role_grants_for_principal", bytes); } @@ -87268,7 +87268,7 @@ void ThriftHiveMetastoreProcessor::process_get_role_grants_for_principal(int32_t result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_role_grants_for_principal"); } @@ -87281,7 +87281,7 @@ void ThriftHiveMetastoreProcessor::process_get_role_grants_for_principal(int32_t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_role_grants_for_principal"); } @@ -87291,20 +87291,20 @@ void ThriftHiveMetastoreProcessor::process_get_role_grants_for_principal(int32_t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_role_grants_for_principal", bytes); } } void ThriftHiveMetastoreProcessor::process_get_privilege_set(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_privilege_set", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_privilege_set"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_privilege_set"); } @@ -87313,7 +87313,7 @@ void ThriftHiveMetastoreProcessor::process_get_privilege_set(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_privilege_set", bytes); } @@ -87325,7 +87325,7 @@ void ThriftHiveMetastoreProcessor::process_get_privilege_set(int32_t seqid, ::ap result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_privilege_set"); } @@ -87338,7 +87338,7 @@ void ThriftHiveMetastoreProcessor::process_get_privilege_set(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_privilege_set"); } @@ -87348,20 +87348,20 @@ void ThriftHiveMetastoreProcessor::process_get_privilege_set(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_privilege_set", bytes); } } void ThriftHiveMetastoreProcessor::process_list_privileges(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.list_privileges", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.list_privileges"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.list_privileges"); } @@ -87370,7 +87370,7 @@ void ThriftHiveMetastoreProcessor::process_list_privileges(int32_t seqid, ::apac iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.list_privileges", bytes); } @@ -87382,7 +87382,7 @@ void ThriftHiveMetastoreProcessor::process_list_privileges(int32_t seqid, ::apac result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.list_privileges"); } @@ -87395,7 +87395,7 @@ void ThriftHiveMetastoreProcessor::process_list_privileges(int32_t seqid, ::apac return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.list_privileges"); } @@ -87405,20 +87405,20 @@ void ThriftHiveMetastoreProcessor::process_list_privileges(int32_t seqid, ::apac bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.list_privileges", bytes); } } void ThriftHiveMetastoreProcessor::process_grant_privileges(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.grant_privileges", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.grant_privileges"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.grant_privileges"); } @@ -87427,7 +87427,7 @@ void ThriftHiveMetastoreProcessor::process_grant_privileges(int32_t seqid, ::apa iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.grant_privileges", bytes); } @@ -87439,7 +87439,7 @@ void ThriftHiveMetastoreProcessor::process_grant_privileges(int32_t seqid, ::apa result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.grant_privileges"); } @@ -87452,7 +87452,7 @@ void ThriftHiveMetastoreProcessor::process_grant_privileges(int32_t seqid, ::apa return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.grant_privileges"); } @@ -87462,20 +87462,20 @@ void ThriftHiveMetastoreProcessor::process_grant_privileges(int32_t seqid, ::apa bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.grant_privileges", bytes); } } void ThriftHiveMetastoreProcessor::process_revoke_privileges(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.revoke_privileges", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.revoke_privileges"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.revoke_privileges"); } @@ -87484,7 +87484,7 @@ void ThriftHiveMetastoreProcessor::process_revoke_privileges(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.revoke_privileges", bytes); } @@ -87496,7 +87496,7 @@ void ThriftHiveMetastoreProcessor::process_revoke_privileges(int32_t seqid, ::ap result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.revoke_privileges"); } @@ -87509,7 +87509,7 @@ void ThriftHiveMetastoreProcessor::process_revoke_privileges(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.revoke_privileges"); } @@ -87519,20 +87519,20 @@ void ThriftHiveMetastoreProcessor::process_revoke_privileges(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.revoke_privileges", bytes); } } void ThriftHiveMetastoreProcessor::process_grant_revoke_privileges(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.grant_revoke_privileges", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.grant_revoke_privileges"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.grant_revoke_privileges"); } @@ -87541,7 +87541,7 @@ void ThriftHiveMetastoreProcessor::process_grant_revoke_privileges(int32_t seqid iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.grant_revoke_privileges", bytes); } @@ -87553,7 +87553,7 @@ void ThriftHiveMetastoreProcessor::process_grant_revoke_privileges(int32_t seqid result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.grant_revoke_privileges"); } @@ -87566,7 +87566,7 @@ void ThriftHiveMetastoreProcessor::process_grant_revoke_privileges(int32_t seqid return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.grant_revoke_privileges"); } @@ -87576,20 +87576,20 @@ void ThriftHiveMetastoreProcessor::process_grant_revoke_privileges(int32_t seqid bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.grant_revoke_privileges", bytes); } } void ThriftHiveMetastoreProcessor::process_refresh_privileges(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.refresh_privileges", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.refresh_privileges"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.refresh_privileges"); } @@ -87598,7 +87598,7 @@ void ThriftHiveMetastoreProcessor::process_refresh_privileges(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.refresh_privileges", bytes); } @@ -87610,7 +87610,7 @@ void ThriftHiveMetastoreProcessor::process_refresh_privileges(int32_t seqid, ::a result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.refresh_privileges"); } @@ -87623,7 +87623,7 @@ void ThriftHiveMetastoreProcessor::process_refresh_privileges(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.refresh_privileges"); } @@ -87633,20 +87633,20 @@ void ThriftHiveMetastoreProcessor::process_refresh_privileges(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.refresh_privileges", bytes); } } void ThriftHiveMetastoreProcessor::process_set_ugi(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.set_ugi", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.set_ugi"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.set_ugi"); } @@ -87655,7 +87655,7 @@ void ThriftHiveMetastoreProcessor::process_set_ugi(int32_t seqid, ::apache::thri iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.set_ugi", bytes); } @@ -87667,7 +87667,7 @@ void ThriftHiveMetastoreProcessor::process_set_ugi(int32_t seqid, ::apache::thri result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.set_ugi"); } @@ -87680,7 +87680,7 @@ void ThriftHiveMetastoreProcessor::process_set_ugi(int32_t seqid, ::apache::thri return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.set_ugi"); } @@ -87690,20 +87690,20 @@ void ThriftHiveMetastoreProcessor::process_set_ugi(int32_t seqid, ::apache::thri bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.set_ugi", bytes); } } void ThriftHiveMetastoreProcessor::process_get_delegation_token(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_delegation_token", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_delegation_token"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_delegation_token"); } @@ -87712,7 +87712,7 @@ void ThriftHiveMetastoreProcessor::process_get_delegation_token(int32_t seqid, : iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_delegation_token", bytes); } @@ -87724,7 +87724,7 @@ void ThriftHiveMetastoreProcessor::process_get_delegation_token(int32_t seqid, : result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_delegation_token"); } @@ -87737,7 +87737,7 @@ void ThriftHiveMetastoreProcessor::process_get_delegation_token(int32_t seqid, : return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_delegation_token"); } @@ -87747,20 +87747,20 @@ void ThriftHiveMetastoreProcessor::process_get_delegation_token(int32_t seqid, : bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_delegation_token", bytes); } } void ThriftHiveMetastoreProcessor::process_renew_delegation_token(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.renew_delegation_token", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.renew_delegation_token"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.renew_delegation_token"); } @@ -87769,7 +87769,7 @@ void ThriftHiveMetastoreProcessor::process_renew_delegation_token(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.renew_delegation_token", bytes); } @@ -87781,7 +87781,7 @@ void ThriftHiveMetastoreProcessor::process_renew_delegation_token(int32_t seqid, result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.renew_delegation_token"); } @@ -87794,7 +87794,7 @@ void ThriftHiveMetastoreProcessor::process_renew_delegation_token(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.renew_delegation_token"); } @@ -87804,20 +87804,20 @@ void ThriftHiveMetastoreProcessor::process_renew_delegation_token(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.renew_delegation_token", bytes); } } void ThriftHiveMetastoreProcessor::process_cancel_delegation_token(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.cancel_delegation_token", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.cancel_delegation_token"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.cancel_delegation_token"); } @@ -87826,7 +87826,7 @@ void ThriftHiveMetastoreProcessor::process_cancel_delegation_token(int32_t seqid iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.cancel_delegation_token", bytes); } @@ -87837,7 +87837,7 @@ void ThriftHiveMetastoreProcessor::process_cancel_delegation_token(int32_t seqid result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.cancel_delegation_token"); } @@ -87850,7 +87850,7 @@ void ThriftHiveMetastoreProcessor::process_cancel_delegation_token(int32_t seqid return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.cancel_delegation_token"); } @@ -87860,20 +87860,20 @@ void ThriftHiveMetastoreProcessor::process_cancel_delegation_token(int32_t seqid bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.cancel_delegation_token", bytes); } } void ThriftHiveMetastoreProcessor::process_add_token(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_token", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_token"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_token"); } @@ -87882,7 +87882,7 @@ void ThriftHiveMetastoreProcessor::process_add_token(int32_t seqid, ::apache::th iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_token", bytes); } @@ -87891,7 +87891,7 @@ void ThriftHiveMetastoreProcessor::process_add_token(int32_t seqid, ::apache::th result.success = iface_->add_token(args.token_identifier, args.delegation_token); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_token"); } @@ -87904,7 +87904,7 @@ void ThriftHiveMetastoreProcessor::process_add_token(int32_t seqid, ::apache::th return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_token"); } @@ -87914,20 +87914,20 @@ void ThriftHiveMetastoreProcessor::process_add_token(int32_t seqid, ::apache::th bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_token", bytes); } } void ThriftHiveMetastoreProcessor::process_remove_token(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.remove_token", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.remove_token"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.remove_token"); } @@ -87936,7 +87936,7 @@ void ThriftHiveMetastoreProcessor::process_remove_token(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.remove_token", bytes); } @@ -87945,7 +87945,7 @@ void ThriftHiveMetastoreProcessor::process_remove_token(int32_t seqid, ::apache: result.success = iface_->remove_token(args.token_identifier); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.remove_token"); } @@ -87958,7 +87958,7 @@ void ThriftHiveMetastoreProcessor::process_remove_token(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.remove_token"); } @@ -87968,20 +87968,20 @@ void ThriftHiveMetastoreProcessor::process_remove_token(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.remove_token", bytes); } } void ThriftHiveMetastoreProcessor::process_get_token(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_token", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_token"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_token"); } @@ -87990,7 +87990,7 @@ void ThriftHiveMetastoreProcessor::process_get_token(int32_t seqid, ::apache::th iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_token", bytes); } @@ -87999,7 +87999,7 @@ void ThriftHiveMetastoreProcessor::process_get_token(int32_t seqid, ::apache::th iface_->get_token(result.success, args.token_identifier); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_token"); } @@ -88012,7 +88012,7 @@ void ThriftHiveMetastoreProcessor::process_get_token(int32_t seqid, ::apache::th return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_token"); } @@ -88022,20 +88022,20 @@ void ThriftHiveMetastoreProcessor::process_get_token(int32_t seqid, ::apache::th bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_token", bytes); } } void ThriftHiveMetastoreProcessor::process_get_all_token_identifiers(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_all_token_identifiers", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_all_token_identifiers"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_all_token_identifiers"); } @@ -88044,7 +88044,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_token_identifiers(int32_t seq iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_all_token_identifiers", bytes); } @@ -88053,7 +88053,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_token_identifiers(int32_t seq iface_->get_all_token_identifiers(result.success); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_all_token_identifiers"); } @@ -88066,7 +88066,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_token_identifiers(int32_t seq return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_all_token_identifiers"); } @@ -88076,20 +88076,20 @@ void ThriftHiveMetastoreProcessor::process_get_all_token_identifiers(int32_t seq bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_all_token_identifiers", bytes); } } void ThriftHiveMetastoreProcessor::process_add_master_key(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_master_key", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_master_key"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_master_key"); } @@ -88098,7 +88098,7 @@ void ThriftHiveMetastoreProcessor::process_add_master_key(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_master_key", bytes); } @@ -88110,7 +88110,7 @@ void ThriftHiveMetastoreProcessor::process_add_master_key(int32_t seqid, ::apach result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_master_key"); } @@ -88123,7 +88123,7 @@ void ThriftHiveMetastoreProcessor::process_add_master_key(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_master_key"); } @@ -88133,20 +88133,20 @@ void ThriftHiveMetastoreProcessor::process_add_master_key(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_master_key", bytes); } } void ThriftHiveMetastoreProcessor::process_update_master_key(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.update_master_key", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.update_master_key"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.update_master_key"); } @@ -88155,7 +88155,7 @@ void ThriftHiveMetastoreProcessor::process_update_master_key(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.update_master_key", bytes); } @@ -88169,7 +88169,7 @@ void ThriftHiveMetastoreProcessor::process_update_master_key(int32_t seqid, ::ap result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.update_master_key"); } @@ -88182,7 +88182,7 @@ void ThriftHiveMetastoreProcessor::process_update_master_key(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.update_master_key"); } @@ -88192,20 +88192,20 @@ void ThriftHiveMetastoreProcessor::process_update_master_key(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.update_master_key", bytes); } } void ThriftHiveMetastoreProcessor::process_remove_master_key(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.remove_master_key", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.remove_master_key"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.remove_master_key"); } @@ -88214,7 +88214,7 @@ void ThriftHiveMetastoreProcessor::process_remove_master_key(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.remove_master_key", bytes); } @@ -88223,7 +88223,7 @@ void ThriftHiveMetastoreProcessor::process_remove_master_key(int32_t seqid, ::ap result.success = iface_->remove_master_key(args.key_seq); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.remove_master_key"); } @@ -88236,7 +88236,7 @@ void ThriftHiveMetastoreProcessor::process_remove_master_key(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.remove_master_key"); } @@ -88246,20 +88246,20 @@ void ThriftHiveMetastoreProcessor::process_remove_master_key(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.remove_master_key", bytes); } } void ThriftHiveMetastoreProcessor::process_get_master_keys(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_master_keys", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_master_keys"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_master_keys"); } @@ -88268,7 +88268,7 @@ void ThriftHiveMetastoreProcessor::process_get_master_keys(int32_t seqid, ::apac iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_master_keys", bytes); } @@ -88277,7 +88277,7 @@ void ThriftHiveMetastoreProcessor::process_get_master_keys(int32_t seqid, ::apac iface_->get_master_keys(result.success); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_master_keys"); } @@ -88290,7 +88290,7 @@ void ThriftHiveMetastoreProcessor::process_get_master_keys(int32_t seqid, ::apac return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_master_keys"); } @@ -88300,20 +88300,20 @@ void ThriftHiveMetastoreProcessor::process_get_master_keys(int32_t seqid, ::apac bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_master_keys", bytes); } } void ThriftHiveMetastoreProcessor::process_get_open_txns(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_open_txns", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_open_txns"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_open_txns"); } @@ -88322,7 +88322,7 @@ void ThriftHiveMetastoreProcessor::process_get_open_txns(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_open_txns", bytes); } @@ -88331,7 +88331,7 @@ void ThriftHiveMetastoreProcessor::process_get_open_txns(int32_t seqid, ::apache iface_->get_open_txns(result.success); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_open_txns"); } @@ -88344,7 +88344,7 @@ void ThriftHiveMetastoreProcessor::process_get_open_txns(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_open_txns"); } @@ -88354,20 +88354,20 @@ void ThriftHiveMetastoreProcessor::process_get_open_txns(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_open_txns", bytes); } } void ThriftHiveMetastoreProcessor::process_get_open_txns_info(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_open_txns_info", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_open_txns_info"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_open_txns_info"); } @@ -88376,7 +88376,7 @@ void ThriftHiveMetastoreProcessor::process_get_open_txns_info(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_open_txns_info", bytes); } @@ -88385,7 +88385,7 @@ void ThriftHiveMetastoreProcessor::process_get_open_txns_info(int32_t seqid, ::a iface_->get_open_txns_info(result.success); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_open_txns_info"); } @@ -88398,7 +88398,7 @@ void ThriftHiveMetastoreProcessor::process_get_open_txns_info(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_open_txns_info"); } @@ -88408,20 +88408,20 @@ void ThriftHiveMetastoreProcessor::process_get_open_txns_info(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_open_txns_info", bytes); } } void ThriftHiveMetastoreProcessor::process_open_txns(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.open_txns", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.open_txns"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.open_txns"); } @@ -88430,7 +88430,7 @@ void ThriftHiveMetastoreProcessor::process_open_txns(int32_t seqid, ::apache::th iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.open_txns", bytes); } @@ -88439,7 +88439,7 @@ void ThriftHiveMetastoreProcessor::process_open_txns(int32_t seqid, ::apache::th iface_->open_txns(result.success, args.rqst); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.open_txns"); } @@ -88452,7 +88452,7 @@ void ThriftHiveMetastoreProcessor::process_open_txns(int32_t seqid, ::apache::th return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.open_txns"); } @@ -88462,20 +88462,20 @@ void ThriftHiveMetastoreProcessor::process_open_txns(int32_t seqid, ::apache::th bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.open_txns", bytes); } } void ThriftHiveMetastoreProcessor::process_abort_txn(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.abort_txn", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.abort_txn"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.abort_txn"); } @@ -88484,7 +88484,7 @@ void ThriftHiveMetastoreProcessor::process_abort_txn(int32_t seqid, ::apache::th iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.abort_txn", bytes); } @@ -88495,7 +88495,7 @@ void ThriftHiveMetastoreProcessor::process_abort_txn(int32_t seqid, ::apache::th result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.abort_txn"); } @@ -88508,7 +88508,7 @@ void ThriftHiveMetastoreProcessor::process_abort_txn(int32_t seqid, ::apache::th return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.abort_txn"); } @@ -88518,20 +88518,20 @@ void ThriftHiveMetastoreProcessor::process_abort_txn(int32_t seqid, ::apache::th bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.abort_txn", bytes); } } void ThriftHiveMetastoreProcessor::process_abort_txns(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.abort_txns", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.abort_txns"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.abort_txns"); } @@ -88540,7 +88540,7 @@ void ThriftHiveMetastoreProcessor::process_abort_txns(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.abort_txns", bytes); } @@ -88551,7 +88551,7 @@ void ThriftHiveMetastoreProcessor::process_abort_txns(int32_t seqid, ::apache::t result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.abort_txns"); } @@ -88564,7 +88564,7 @@ void ThriftHiveMetastoreProcessor::process_abort_txns(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.abort_txns"); } @@ -88574,20 +88574,20 @@ void ThriftHiveMetastoreProcessor::process_abort_txns(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.abort_txns", bytes); } } void ThriftHiveMetastoreProcessor::process_commit_txn(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.commit_txn", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.commit_txn"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.commit_txn"); } @@ -88596,7 +88596,7 @@ void ThriftHiveMetastoreProcessor::process_commit_txn(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.commit_txn", bytes); } @@ -88610,7 +88610,7 @@ void ThriftHiveMetastoreProcessor::process_commit_txn(int32_t seqid, ::apache::t result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.commit_txn"); } @@ -88623,7 +88623,7 @@ void ThriftHiveMetastoreProcessor::process_commit_txn(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.commit_txn"); } @@ -88633,20 +88633,20 @@ void ThriftHiveMetastoreProcessor::process_commit_txn(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.commit_txn", bytes); } } void ThriftHiveMetastoreProcessor::process_get_latest_txnid_in_conflict(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_latest_txnid_in_conflict", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_latest_txnid_in_conflict"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_latest_txnid_in_conflict"); } @@ -88655,7 +88655,7 @@ void ThriftHiveMetastoreProcessor::process_get_latest_txnid_in_conflict(int32_t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_latest_txnid_in_conflict", bytes); } @@ -88667,7 +88667,7 @@ void ThriftHiveMetastoreProcessor::process_get_latest_txnid_in_conflict(int32_t result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_latest_txnid_in_conflict"); } @@ -88680,7 +88680,7 @@ void ThriftHiveMetastoreProcessor::process_get_latest_txnid_in_conflict(int32_t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_latest_txnid_in_conflict"); } @@ -88690,20 +88690,20 @@ void ThriftHiveMetastoreProcessor::process_get_latest_txnid_in_conflict(int32_t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_latest_txnid_in_conflict", bytes); } } void ThriftHiveMetastoreProcessor::process_repl_tbl_writeid_state(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.repl_tbl_writeid_state", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.repl_tbl_writeid_state"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.repl_tbl_writeid_state"); } @@ -88712,7 +88712,7 @@ void ThriftHiveMetastoreProcessor::process_repl_tbl_writeid_state(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.repl_tbl_writeid_state", bytes); } @@ -88720,7 +88720,7 @@ void ThriftHiveMetastoreProcessor::process_repl_tbl_writeid_state(int32_t seqid, try { iface_->repl_tbl_writeid_state(args.rqst); } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.repl_tbl_writeid_state"); } @@ -88733,7 +88733,7 @@ void ThriftHiveMetastoreProcessor::process_repl_tbl_writeid_state(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.repl_tbl_writeid_state"); } @@ -88743,20 +88743,20 @@ void ThriftHiveMetastoreProcessor::process_repl_tbl_writeid_state(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.repl_tbl_writeid_state", bytes); } } void ThriftHiveMetastoreProcessor::process_get_valid_write_ids(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_valid_write_ids", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_valid_write_ids"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_valid_write_ids"); } @@ -88765,7 +88765,7 @@ void ThriftHiveMetastoreProcessor::process_get_valid_write_ids(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_valid_write_ids", bytes); } @@ -88780,7 +88780,7 @@ void ThriftHiveMetastoreProcessor::process_get_valid_write_ids(int32_t seqid, :: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_valid_write_ids"); } @@ -88793,7 +88793,7 @@ void ThriftHiveMetastoreProcessor::process_get_valid_write_ids(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_valid_write_ids"); } @@ -88803,20 +88803,20 @@ void ThriftHiveMetastoreProcessor::process_get_valid_write_ids(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_valid_write_ids", bytes); } } void ThriftHiveMetastoreProcessor::process_allocate_table_write_ids(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.allocate_table_write_ids", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.allocate_table_write_ids"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.allocate_table_write_ids"); } @@ -88825,7 +88825,7 @@ void ThriftHiveMetastoreProcessor::process_allocate_table_write_ids(int32_t seqi iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.allocate_table_write_ids", bytes); } @@ -88843,7 +88843,7 @@ void ThriftHiveMetastoreProcessor::process_allocate_table_write_ids(int32_t seqi result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.allocate_table_write_ids"); } @@ -88856,7 +88856,7 @@ void ThriftHiveMetastoreProcessor::process_allocate_table_write_ids(int32_t seqi return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.allocate_table_write_ids"); } @@ -88866,20 +88866,20 @@ void ThriftHiveMetastoreProcessor::process_allocate_table_write_ids(int32_t seqi bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.allocate_table_write_ids", bytes); } } void ThriftHiveMetastoreProcessor::process_get_max_allocated_table_write_id(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_max_allocated_table_write_id", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_max_allocated_table_write_id"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_max_allocated_table_write_id"); } @@ -88888,7 +88888,7 @@ void ThriftHiveMetastoreProcessor::process_get_max_allocated_table_write_id(int3 iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_max_allocated_table_write_id", bytes); } @@ -88900,7 +88900,7 @@ void ThriftHiveMetastoreProcessor::process_get_max_allocated_table_write_id(int3 result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_max_allocated_table_write_id"); } @@ -88913,7 +88913,7 @@ void ThriftHiveMetastoreProcessor::process_get_max_allocated_table_write_id(int3 return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_max_allocated_table_write_id"); } @@ -88923,20 +88923,20 @@ void ThriftHiveMetastoreProcessor::process_get_max_allocated_table_write_id(int3 bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_max_allocated_table_write_id", bytes); } } void ThriftHiveMetastoreProcessor::process_seed_write_id(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.seed_write_id", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.seed_write_id"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.seed_write_id"); } @@ -88945,7 +88945,7 @@ void ThriftHiveMetastoreProcessor::process_seed_write_id(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.seed_write_id", bytes); } @@ -88956,7 +88956,7 @@ void ThriftHiveMetastoreProcessor::process_seed_write_id(int32_t seqid, ::apache result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.seed_write_id"); } @@ -88969,7 +88969,7 @@ void ThriftHiveMetastoreProcessor::process_seed_write_id(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.seed_write_id"); } @@ -88979,20 +88979,20 @@ void ThriftHiveMetastoreProcessor::process_seed_write_id(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.seed_write_id", bytes); } } void ThriftHiveMetastoreProcessor::process_seed_txn_id(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.seed_txn_id", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.seed_txn_id"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.seed_txn_id"); } @@ -89001,7 +89001,7 @@ void ThriftHiveMetastoreProcessor::process_seed_txn_id(int32_t seqid, ::apache:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.seed_txn_id", bytes); } @@ -89012,7 +89012,7 @@ void ThriftHiveMetastoreProcessor::process_seed_txn_id(int32_t seqid, ::apache:: result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.seed_txn_id"); } @@ -89025,7 +89025,7 @@ void ThriftHiveMetastoreProcessor::process_seed_txn_id(int32_t seqid, ::apache:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.seed_txn_id"); } @@ -89035,20 +89035,20 @@ void ThriftHiveMetastoreProcessor::process_seed_txn_id(int32_t seqid, ::apache:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.seed_txn_id", bytes); } } void ThriftHiveMetastoreProcessor::process_lock(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.lock", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.lock"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.lock"); } @@ -89057,7 +89057,7 @@ void ThriftHiveMetastoreProcessor::process_lock(int32_t seqid, ::apache::thrift: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.lock", bytes); } @@ -89072,7 +89072,7 @@ void ThriftHiveMetastoreProcessor::process_lock(int32_t seqid, ::apache::thrift: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.lock"); } @@ -89085,7 +89085,7 @@ void ThriftHiveMetastoreProcessor::process_lock(int32_t seqid, ::apache::thrift: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.lock"); } @@ -89095,20 +89095,20 @@ void ThriftHiveMetastoreProcessor::process_lock(int32_t seqid, ::apache::thrift: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.lock", bytes); } } void ThriftHiveMetastoreProcessor::process_check_lock(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.check_lock", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.check_lock"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.check_lock"); } @@ -89117,7 +89117,7 @@ void ThriftHiveMetastoreProcessor::process_check_lock(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.check_lock", bytes); } @@ -89135,7 +89135,7 @@ void ThriftHiveMetastoreProcessor::process_check_lock(int32_t seqid, ::apache::t result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.check_lock"); } @@ -89148,7 +89148,7 @@ void ThriftHiveMetastoreProcessor::process_check_lock(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.check_lock"); } @@ -89158,20 +89158,20 @@ void ThriftHiveMetastoreProcessor::process_check_lock(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.check_lock", bytes); } } void ThriftHiveMetastoreProcessor::process_unlock(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.unlock", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.unlock"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.unlock"); } @@ -89180,7 +89180,7 @@ void ThriftHiveMetastoreProcessor::process_unlock(int32_t seqid, ::apache::thrif iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.unlock", bytes); } @@ -89194,7 +89194,7 @@ void ThriftHiveMetastoreProcessor::process_unlock(int32_t seqid, ::apache::thrif result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.unlock"); } @@ -89207,7 +89207,7 @@ void ThriftHiveMetastoreProcessor::process_unlock(int32_t seqid, ::apache::thrif return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.unlock"); } @@ -89217,20 +89217,20 @@ void ThriftHiveMetastoreProcessor::process_unlock(int32_t seqid, ::apache::thrif bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.unlock", bytes); } } void ThriftHiveMetastoreProcessor::process_show_locks(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.show_locks", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.show_locks"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.show_locks"); } @@ -89239,7 +89239,7 @@ void ThriftHiveMetastoreProcessor::process_show_locks(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.show_locks", bytes); } @@ -89248,7 +89248,7 @@ void ThriftHiveMetastoreProcessor::process_show_locks(int32_t seqid, ::apache::t iface_->show_locks(result.success, args.rqst); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.show_locks"); } @@ -89261,7 +89261,7 @@ void ThriftHiveMetastoreProcessor::process_show_locks(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.show_locks"); } @@ -89271,20 +89271,20 @@ void ThriftHiveMetastoreProcessor::process_show_locks(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.show_locks", bytes); } } void ThriftHiveMetastoreProcessor::process_heartbeat(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.heartbeat", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.heartbeat"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.heartbeat"); } @@ -89293,7 +89293,7 @@ void ThriftHiveMetastoreProcessor::process_heartbeat(int32_t seqid, ::apache::th iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.heartbeat", bytes); } @@ -89310,7 +89310,7 @@ void ThriftHiveMetastoreProcessor::process_heartbeat(int32_t seqid, ::apache::th result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.heartbeat"); } @@ -89323,7 +89323,7 @@ void ThriftHiveMetastoreProcessor::process_heartbeat(int32_t seqid, ::apache::th return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.heartbeat"); } @@ -89333,20 +89333,20 @@ void ThriftHiveMetastoreProcessor::process_heartbeat(int32_t seqid, ::apache::th bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.heartbeat", bytes); } } void ThriftHiveMetastoreProcessor::process_heartbeat_txn_range(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.heartbeat_txn_range", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.heartbeat_txn_range"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.heartbeat_txn_range"); } @@ -89355,7 +89355,7 @@ void ThriftHiveMetastoreProcessor::process_heartbeat_txn_range(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.heartbeat_txn_range", bytes); } @@ -89364,7 +89364,7 @@ void ThriftHiveMetastoreProcessor::process_heartbeat_txn_range(int32_t seqid, :: iface_->heartbeat_txn_range(result.success, args.txns); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.heartbeat_txn_range"); } @@ -89377,7 +89377,7 @@ void ThriftHiveMetastoreProcessor::process_heartbeat_txn_range(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.heartbeat_txn_range"); } @@ -89387,20 +89387,20 @@ void ThriftHiveMetastoreProcessor::process_heartbeat_txn_range(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.heartbeat_txn_range", bytes); } } void ThriftHiveMetastoreProcessor::process_compact(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.compact", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.compact"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.compact"); } @@ -89409,7 +89409,7 @@ void ThriftHiveMetastoreProcessor::process_compact(int32_t seqid, ::apache::thri iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.compact", bytes); } @@ -89417,7 +89417,7 @@ void ThriftHiveMetastoreProcessor::process_compact(int32_t seqid, ::apache::thri try { iface_->compact(args.rqst); } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.compact"); } @@ -89430,7 +89430,7 @@ void ThriftHiveMetastoreProcessor::process_compact(int32_t seqid, ::apache::thri return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.compact"); } @@ -89440,20 +89440,20 @@ void ThriftHiveMetastoreProcessor::process_compact(int32_t seqid, ::apache::thri bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.compact", bytes); } } void ThriftHiveMetastoreProcessor::process_compact2(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.compact2", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.compact2"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.compact2"); } @@ -89462,7 +89462,7 @@ void ThriftHiveMetastoreProcessor::process_compact2(int32_t seqid, ::apache::thr iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.compact2", bytes); } @@ -89471,7 +89471,7 @@ void ThriftHiveMetastoreProcessor::process_compact2(int32_t seqid, ::apache::thr iface_->compact2(result.success, args.rqst); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.compact2"); } @@ -89484,7 +89484,7 @@ void ThriftHiveMetastoreProcessor::process_compact2(int32_t seqid, ::apache::thr return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.compact2"); } @@ -89494,20 +89494,20 @@ void ThriftHiveMetastoreProcessor::process_compact2(int32_t seqid, ::apache::thr bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.compact2", bytes); } } void ThriftHiveMetastoreProcessor::process_show_compact(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.show_compact", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.show_compact"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.show_compact"); } @@ -89516,7 +89516,7 @@ void ThriftHiveMetastoreProcessor::process_show_compact(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.show_compact", bytes); } @@ -89525,7 +89525,7 @@ void ThriftHiveMetastoreProcessor::process_show_compact(int32_t seqid, ::apache: iface_->show_compact(result.success, args.rqst); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.show_compact"); } @@ -89538,7 +89538,7 @@ void ThriftHiveMetastoreProcessor::process_show_compact(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.show_compact"); } @@ -89548,20 +89548,20 @@ void ThriftHiveMetastoreProcessor::process_show_compact(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.show_compact", bytes); } } void ThriftHiveMetastoreProcessor::process_add_dynamic_partitions(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_dynamic_partitions", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_dynamic_partitions"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_dynamic_partitions"); } @@ -89570,7 +89570,7 @@ void ThriftHiveMetastoreProcessor::process_add_dynamic_partitions(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_dynamic_partitions", bytes); } @@ -89584,7 +89584,7 @@ void ThriftHiveMetastoreProcessor::process_add_dynamic_partitions(int32_t seqid, result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_dynamic_partitions"); } @@ -89597,7 +89597,7 @@ void ThriftHiveMetastoreProcessor::process_add_dynamic_partitions(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_dynamic_partitions"); } @@ -89607,20 +89607,20 @@ void ThriftHiveMetastoreProcessor::process_add_dynamic_partitions(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_dynamic_partitions", bytes); } } void ThriftHiveMetastoreProcessor::process_find_next_compact(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.find_next_compact", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.find_next_compact"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.find_next_compact"); } @@ -89629,7 +89629,7 @@ void ThriftHiveMetastoreProcessor::process_find_next_compact(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.find_next_compact", bytes); } @@ -89641,7 +89641,7 @@ void ThriftHiveMetastoreProcessor::process_find_next_compact(int32_t seqid, ::ap result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.find_next_compact"); } @@ -89654,7 +89654,7 @@ void ThriftHiveMetastoreProcessor::process_find_next_compact(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.find_next_compact"); } @@ -89664,20 +89664,20 @@ void ThriftHiveMetastoreProcessor::process_find_next_compact(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.find_next_compact", bytes); } } void ThriftHiveMetastoreProcessor::process_update_compactor_state(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.update_compactor_state", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.update_compactor_state"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.update_compactor_state"); } @@ -89686,7 +89686,7 @@ void ThriftHiveMetastoreProcessor::process_update_compactor_state(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.update_compactor_state", bytes); } @@ -89694,7 +89694,7 @@ void ThriftHiveMetastoreProcessor::process_update_compactor_state(int32_t seqid, try { iface_->update_compactor_state(args.cr, args.txn_id); } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.update_compactor_state"); } @@ -89707,7 +89707,7 @@ void ThriftHiveMetastoreProcessor::process_update_compactor_state(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.update_compactor_state"); } @@ -89717,20 +89717,20 @@ void ThriftHiveMetastoreProcessor::process_update_compactor_state(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.update_compactor_state", bytes); } } void ThriftHiveMetastoreProcessor::process_find_columns_with_stats(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.find_columns_with_stats", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.find_columns_with_stats"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.find_columns_with_stats"); } @@ -89739,7 +89739,7 @@ void ThriftHiveMetastoreProcessor::process_find_columns_with_stats(int32_t seqid iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.find_columns_with_stats", bytes); } @@ -89748,7 +89748,7 @@ void ThriftHiveMetastoreProcessor::process_find_columns_with_stats(int32_t seqid iface_->find_columns_with_stats(result.success, args.cr); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.find_columns_with_stats"); } @@ -89761,7 +89761,7 @@ void ThriftHiveMetastoreProcessor::process_find_columns_with_stats(int32_t seqid return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.find_columns_with_stats"); } @@ -89771,20 +89771,20 @@ void ThriftHiveMetastoreProcessor::process_find_columns_with_stats(int32_t seqid bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.find_columns_with_stats", bytes); } } void ThriftHiveMetastoreProcessor::process_mark_cleaned(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.mark_cleaned", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.mark_cleaned"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.mark_cleaned"); } @@ -89793,7 +89793,7 @@ void ThriftHiveMetastoreProcessor::process_mark_cleaned(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.mark_cleaned", bytes); } @@ -89804,7 +89804,7 @@ void ThriftHiveMetastoreProcessor::process_mark_cleaned(int32_t seqid, ::apache: result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.mark_cleaned"); } @@ -89817,7 +89817,7 @@ void ThriftHiveMetastoreProcessor::process_mark_cleaned(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.mark_cleaned"); } @@ -89827,20 +89827,20 @@ void ThriftHiveMetastoreProcessor::process_mark_cleaned(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.mark_cleaned", bytes); } } void ThriftHiveMetastoreProcessor::process_mark_compacted(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.mark_compacted", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.mark_compacted"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.mark_compacted"); } @@ -89849,7 +89849,7 @@ void ThriftHiveMetastoreProcessor::process_mark_compacted(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.mark_compacted", bytes); } @@ -89860,7 +89860,7 @@ void ThriftHiveMetastoreProcessor::process_mark_compacted(int32_t seqid, ::apach result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.mark_compacted"); } @@ -89873,7 +89873,7 @@ void ThriftHiveMetastoreProcessor::process_mark_compacted(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.mark_compacted"); } @@ -89883,20 +89883,20 @@ void ThriftHiveMetastoreProcessor::process_mark_compacted(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.mark_compacted", bytes); } } void ThriftHiveMetastoreProcessor::process_mark_failed(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.mark_failed", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.mark_failed"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.mark_failed"); } @@ -89905,7 +89905,7 @@ void ThriftHiveMetastoreProcessor::process_mark_failed(int32_t seqid, ::apache:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.mark_failed", bytes); } @@ -89916,7 +89916,7 @@ void ThriftHiveMetastoreProcessor::process_mark_failed(int32_t seqid, ::apache:: result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.mark_failed"); } @@ -89929,7 +89929,7 @@ void ThriftHiveMetastoreProcessor::process_mark_failed(int32_t seqid, ::apache:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.mark_failed"); } @@ -89939,20 +89939,20 @@ void ThriftHiveMetastoreProcessor::process_mark_failed(int32_t seqid, ::apache:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.mark_failed", bytes); } } void ThriftHiveMetastoreProcessor::process_set_hadoop_jobid(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.set_hadoop_jobid", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.set_hadoop_jobid"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.set_hadoop_jobid"); } @@ -89961,7 +89961,7 @@ void ThriftHiveMetastoreProcessor::process_set_hadoop_jobid(int32_t seqid, ::apa iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.set_hadoop_jobid", bytes); } @@ -89969,7 +89969,7 @@ void ThriftHiveMetastoreProcessor::process_set_hadoop_jobid(int32_t seqid, ::apa try { iface_->set_hadoop_jobid(args.jobId, args.cq_id); } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.set_hadoop_jobid"); } @@ -89982,7 +89982,7 @@ void ThriftHiveMetastoreProcessor::process_set_hadoop_jobid(int32_t seqid, ::apa return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.set_hadoop_jobid"); } @@ -89992,20 +89992,20 @@ void ThriftHiveMetastoreProcessor::process_set_hadoop_jobid(int32_t seqid, ::apa bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.set_hadoop_jobid", bytes); } } void ThriftHiveMetastoreProcessor::process_get_latest_committed_compaction_info(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_latest_committed_compaction_info", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_latest_committed_compaction_info"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_latest_committed_compaction_info"); } @@ -90014,7 +90014,7 @@ void ThriftHiveMetastoreProcessor::process_get_latest_committed_compaction_info( iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_latest_committed_compaction_info", bytes); } @@ -90023,7 +90023,7 @@ void ThriftHiveMetastoreProcessor::process_get_latest_committed_compaction_info( iface_->get_latest_committed_compaction_info(result.success, args.rqst); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_latest_committed_compaction_info"); } @@ -90036,7 +90036,7 @@ void ThriftHiveMetastoreProcessor::process_get_latest_committed_compaction_info( return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_latest_committed_compaction_info"); } @@ -90046,20 +90046,20 @@ void ThriftHiveMetastoreProcessor::process_get_latest_committed_compaction_info( bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_latest_committed_compaction_info", bytes); } } void ThriftHiveMetastoreProcessor::process_get_next_notification(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_next_notification", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_next_notification"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_next_notification"); } @@ -90068,7 +90068,7 @@ void ThriftHiveMetastoreProcessor::process_get_next_notification(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_next_notification", bytes); } @@ -90077,7 +90077,7 @@ void ThriftHiveMetastoreProcessor::process_get_next_notification(int32_t seqid, iface_->get_next_notification(result.success, args.rqst); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_next_notification"); } @@ -90090,7 +90090,7 @@ void ThriftHiveMetastoreProcessor::process_get_next_notification(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_next_notification"); } @@ -90100,20 +90100,20 @@ void ThriftHiveMetastoreProcessor::process_get_next_notification(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_next_notification", bytes); } } void ThriftHiveMetastoreProcessor::process_get_current_notificationEventId(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_current_notificationEventId", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_current_notificationEventId"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_current_notificationEventId"); } @@ -90122,7 +90122,7 @@ void ThriftHiveMetastoreProcessor::process_get_current_notificationEventId(int32 iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_current_notificationEventId", bytes); } @@ -90131,7 +90131,7 @@ void ThriftHiveMetastoreProcessor::process_get_current_notificationEventId(int32 iface_->get_current_notificationEventId(result.success); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_current_notificationEventId"); } @@ -90144,7 +90144,7 @@ void ThriftHiveMetastoreProcessor::process_get_current_notificationEventId(int32 return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_current_notificationEventId"); } @@ -90154,20 +90154,20 @@ void ThriftHiveMetastoreProcessor::process_get_current_notificationEventId(int32 bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_current_notificationEventId", bytes); } } void ThriftHiveMetastoreProcessor::process_get_notification_events_count(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_notification_events_count", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_notification_events_count"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_notification_events_count"); } @@ -90176,7 +90176,7 @@ void ThriftHiveMetastoreProcessor::process_get_notification_events_count(int32_t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_notification_events_count", bytes); } @@ -90185,7 +90185,7 @@ void ThriftHiveMetastoreProcessor::process_get_notification_events_count(int32_t iface_->get_notification_events_count(result.success, args.rqst); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_notification_events_count"); } @@ -90198,7 +90198,7 @@ void ThriftHiveMetastoreProcessor::process_get_notification_events_count(int32_t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_notification_events_count"); } @@ -90208,20 +90208,20 @@ void ThriftHiveMetastoreProcessor::process_get_notification_events_count(int32_t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_notification_events_count", bytes); } } void ThriftHiveMetastoreProcessor::process_fire_listener_event(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.fire_listener_event", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.fire_listener_event"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.fire_listener_event"); } @@ -90230,7 +90230,7 @@ void ThriftHiveMetastoreProcessor::process_fire_listener_event(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.fire_listener_event", bytes); } @@ -90239,7 +90239,7 @@ void ThriftHiveMetastoreProcessor::process_fire_listener_event(int32_t seqid, :: iface_->fire_listener_event(result.success, args.rqst); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.fire_listener_event"); } @@ -90252,7 +90252,7 @@ void ThriftHiveMetastoreProcessor::process_fire_listener_event(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.fire_listener_event"); } @@ -90262,20 +90262,20 @@ void ThriftHiveMetastoreProcessor::process_fire_listener_event(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.fire_listener_event", bytes); } } void ThriftHiveMetastoreProcessor::process_flushCache(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.flushCache", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.flushCache"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.flushCache"); } @@ -90284,7 +90284,7 @@ void ThriftHiveMetastoreProcessor::process_flushCache(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.flushCache", bytes); } @@ -90292,7 +90292,7 @@ void ThriftHiveMetastoreProcessor::process_flushCache(int32_t seqid, ::apache::t try { iface_->flushCache(); } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.flushCache"); } @@ -90305,7 +90305,7 @@ void ThriftHiveMetastoreProcessor::process_flushCache(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.flushCache"); } @@ -90315,20 +90315,20 @@ void ThriftHiveMetastoreProcessor::process_flushCache(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.flushCache", bytes); } } void ThriftHiveMetastoreProcessor::process_add_write_notification_log(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_write_notification_log", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_write_notification_log"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_write_notification_log"); } @@ -90337,7 +90337,7 @@ void ThriftHiveMetastoreProcessor::process_add_write_notification_log(int32_t se iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_write_notification_log", bytes); } @@ -90346,7 +90346,7 @@ void ThriftHiveMetastoreProcessor::process_add_write_notification_log(int32_t se iface_->add_write_notification_log(result.success, args.rqst); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_write_notification_log"); } @@ -90359,7 +90359,7 @@ void ThriftHiveMetastoreProcessor::process_add_write_notification_log(int32_t se return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_write_notification_log"); } @@ -90369,20 +90369,20 @@ void ThriftHiveMetastoreProcessor::process_add_write_notification_log(int32_t se bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_write_notification_log", bytes); } } void ThriftHiveMetastoreProcessor::process_cm_recycle(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.cm_recycle", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.cm_recycle"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.cm_recycle"); } @@ -90391,7 +90391,7 @@ void ThriftHiveMetastoreProcessor::process_cm_recycle(int32_t seqid, ::apache::t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.cm_recycle", bytes); } @@ -90403,7 +90403,7 @@ void ThriftHiveMetastoreProcessor::process_cm_recycle(int32_t seqid, ::apache::t result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.cm_recycle"); } @@ -90416,7 +90416,7 @@ void ThriftHiveMetastoreProcessor::process_cm_recycle(int32_t seqid, ::apache::t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.cm_recycle"); } @@ -90426,20 +90426,20 @@ void ThriftHiveMetastoreProcessor::process_cm_recycle(int32_t seqid, ::apache::t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.cm_recycle", bytes); } } void ThriftHiveMetastoreProcessor::process_get_file_metadata_by_expr(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_file_metadata_by_expr", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_file_metadata_by_expr"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_file_metadata_by_expr"); } @@ -90448,7 +90448,7 @@ void ThriftHiveMetastoreProcessor::process_get_file_metadata_by_expr(int32_t seq iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_file_metadata_by_expr", bytes); } @@ -90457,7 +90457,7 @@ void ThriftHiveMetastoreProcessor::process_get_file_metadata_by_expr(int32_t seq iface_->get_file_metadata_by_expr(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_file_metadata_by_expr"); } @@ -90470,7 +90470,7 @@ void ThriftHiveMetastoreProcessor::process_get_file_metadata_by_expr(int32_t seq return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_file_metadata_by_expr"); } @@ -90480,20 +90480,20 @@ void ThriftHiveMetastoreProcessor::process_get_file_metadata_by_expr(int32_t seq bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_file_metadata_by_expr", bytes); } } void ThriftHiveMetastoreProcessor::process_get_file_metadata(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_file_metadata", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_file_metadata"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_file_metadata"); } @@ -90502,7 +90502,7 @@ void ThriftHiveMetastoreProcessor::process_get_file_metadata(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_file_metadata", bytes); } @@ -90511,7 +90511,7 @@ void ThriftHiveMetastoreProcessor::process_get_file_metadata(int32_t seqid, ::ap iface_->get_file_metadata(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_file_metadata"); } @@ -90524,7 +90524,7 @@ void ThriftHiveMetastoreProcessor::process_get_file_metadata(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_file_metadata"); } @@ -90534,20 +90534,20 @@ void ThriftHiveMetastoreProcessor::process_get_file_metadata(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_file_metadata", bytes); } } void ThriftHiveMetastoreProcessor::process_put_file_metadata(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.put_file_metadata", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.put_file_metadata"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.put_file_metadata"); } @@ -90556,7 +90556,7 @@ void ThriftHiveMetastoreProcessor::process_put_file_metadata(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.put_file_metadata", bytes); } @@ -90565,7 +90565,7 @@ void ThriftHiveMetastoreProcessor::process_put_file_metadata(int32_t seqid, ::ap iface_->put_file_metadata(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.put_file_metadata"); } @@ -90578,7 +90578,7 @@ void ThriftHiveMetastoreProcessor::process_put_file_metadata(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.put_file_metadata"); } @@ -90588,20 +90588,20 @@ void ThriftHiveMetastoreProcessor::process_put_file_metadata(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.put_file_metadata", bytes); } } void ThriftHiveMetastoreProcessor::process_clear_file_metadata(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.clear_file_metadata", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.clear_file_metadata"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.clear_file_metadata"); } @@ -90610,7 +90610,7 @@ void ThriftHiveMetastoreProcessor::process_clear_file_metadata(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.clear_file_metadata", bytes); } @@ -90619,7 +90619,7 @@ void ThriftHiveMetastoreProcessor::process_clear_file_metadata(int32_t seqid, :: iface_->clear_file_metadata(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.clear_file_metadata"); } @@ -90632,7 +90632,7 @@ void ThriftHiveMetastoreProcessor::process_clear_file_metadata(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.clear_file_metadata"); } @@ -90642,20 +90642,20 @@ void ThriftHiveMetastoreProcessor::process_clear_file_metadata(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.clear_file_metadata", bytes); } } void ThriftHiveMetastoreProcessor::process_cache_file_metadata(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.cache_file_metadata", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.cache_file_metadata"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.cache_file_metadata"); } @@ -90664,7 +90664,7 @@ void ThriftHiveMetastoreProcessor::process_cache_file_metadata(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.cache_file_metadata", bytes); } @@ -90673,7 +90673,7 @@ void ThriftHiveMetastoreProcessor::process_cache_file_metadata(int32_t seqid, :: iface_->cache_file_metadata(result.success, args.req); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.cache_file_metadata"); } @@ -90686,7 +90686,7 @@ void ThriftHiveMetastoreProcessor::process_cache_file_metadata(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.cache_file_metadata"); } @@ -90696,20 +90696,20 @@ void ThriftHiveMetastoreProcessor::process_cache_file_metadata(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.cache_file_metadata", bytes); } } void ThriftHiveMetastoreProcessor::process_get_metastore_db_uuid(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_metastore_db_uuid", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_metastore_db_uuid"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_metastore_db_uuid"); } @@ -90718,7 +90718,7 @@ void ThriftHiveMetastoreProcessor::process_get_metastore_db_uuid(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_metastore_db_uuid", bytes); } @@ -90730,7 +90730,7 @@ void ThriftHiveMetastoreProcessor::process_get_metastore_db_uuid(int32_t seqid, result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_metastore_db_uuid"); } @@ -90743,7 +90743,7 @@ void ThriftHiveMetastoreProcessor::process_get_metastore_db_uuid(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_metastore_db_uuid"); } @@ -90753,20 +90753,20 @@ void ThriftHiveMetastoreProcessor::process_get_metastore_db_uuid(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_metastore_db_uuid", bytes); } } void ThriftHiveMetastoreProcessor::process_create_resource_plan(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_resource_plan", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_resource_plan"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_resource_plan"); } @@ -90775,7 +90775,7 @@ void ThriftHiveMetastoreProcessor::process_create_resource_plan(int32_t seqid, : iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_resource_plan", bytes); } @@ -90793,7 +90793,7 @@ void ThriftHiveMetastoreProcessor::process_create_resource_plan(int32_t seqid, : result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_resource_plan"); } @@ -90806,7 +90806,7 @@ void ThriftHiveMetastoreProcessor::process_create_resource_plan(int32_t seqid, : return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_resource_plan"); } @@ -90816,20 +90816,20 @@ void ThriftHiveMetastoreProcessor::process_create_resource_plan(int32_t seqid, : bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_resource_plan", bytes); } } void ThriftHiveMetastoreProcessor::process_get_resource_plan(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_resource_plan", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_resource_plan"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_resource_plan"); } @@ -90838,7 +90838,7 @@ void ThriftHiveMetastoreProcessor::process_get_resource_plan(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_resource_plan", bytes); } @@ -90853,7 +90853,7 @@ void ThriftHiveMetastoreProcessor::process_get_resource_plan(int32_t seqid, ::ap result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_resource_plan"); } @@ -90866,7 +90866,7 @@ void ThriftHiveMetastoreProcessor::process_get_resource_plan(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_resource_plan"); } @@ -90876,20 +90876,20 @@ void ThriftHiveMetastoreProcessor::process_get_resource_plan(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_resource_plan", bytes); } } void ThriftHiveMetastoreProcessor::process_get_active_resource_plan(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_active_resource_plan", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_active_resource_plan"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_active_resource_plan"); } @@ -90898,7 +90898,7 @@ void ThriftHiveMetastoreProcessor::process_get_active_resource_plan(int32_t seqi iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_active_resource_plan", bytes); } @@ -90910,7 +90910,7 @@ void ThriftHiveMetastoreProcessor::process_get_active_resource_plan(int32_t seqi result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_active_resource_plan"); } @@ -90923,7 +90923,7 @@ void ThriftHiveMetastoreProcessor::process_get_active_resource_plan(int32_t seqi return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_active_resource_plan"); } @@ -90933,20 +90933,20 @@ void ThriftHiveMetastoreProcessor::process_get_active_resource_plan(int32_t seqi bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_active_resource_plan", bytes); } } void ThriftHiveMetastoreProcessor::process_get_all_resource_plans(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_all_resource_plans", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_all_resource_plans"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_all_resource_plans"); } @@ -90955,7 +90955,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_resource_plans(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_all_resource_plans", bytes); } @@ -90967,7 +90967,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_resource_plans(int32_t seqid, result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_all_resource_plans"); } @@ -90980,7 +90980,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_resource_plans(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_all_resource_plans"); } @@ -90990,20 +90990,20 @@ void ThriftHiveMetastoreProcessor::process_get_all_resource_plans(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_all_resource_plans", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_resource_plan(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_resource_plan", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_resource_plan"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_resource_plan"); } @@ -91012,7 +91012,7 @@ void ThriftHiveMetastoreProcessor::process_alter_resource_plan(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_resource_plan", bytes); } @@ -91030,7 +91030,7 @@ void ThriftHiveMetastoreProcessor::process_alter_resource_plan(int32_t seqid, :: result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_resource_plan"); } @@ -91043,7 +91043,7 @@ void ThriftHiveMetastoreProcessor::process_alter_resource_plan(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_resource_plan"); } @@ -91053,20 +91053,20 @@ void ThriftHiveMetastoreProcessor::process_alter_resource_plan(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_resource_plan", bytes); } } void ThriftHiveMetastoreProcessor::process_validate_resource_plan(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.validate_resource_plan", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.validate_resource_plan"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.validate_resource_plan"); } @@ -91075,7 +91075,7 @@ void ThriftHiveMetastoreProcessor::process_validate_resource_plan(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.validate_resource_plan", bytes); } @@ -91090,7 +91090,7 @@ void ThriftHiveMetastoreProcessor::process_validate_resource_plan(int32_t seqid, result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.validate_resource_plan"); } @@ -91103,7 +91103,7 @@ void ThriftHiveMetastoreProcessor::process_validate_resource_plan(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.validate_resource_plan"); } @@ -91113,20 +91113,20 @@ void ThriftHiveMetastoreProcessor::process_validate_resource_plan(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.validate_resource_plan", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_resource_plan(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_resource_plan", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_resource_plan"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_resource_plan"); } @@ -91135,7 +91135,7 @@ void ThriftHiveMetastoreProcessor::process_drop_resource_plan(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_resource_plan", bytes); } @@ -91153,7 +91153,7 @@ void ThriftHiveMetastoreProcessor::process_drop_resource_plan(int32_t seqid, ::a result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_resource_plan"); } @@ -91166,7 +91166,7 @@ void ThriftHiveMetastoreProcessor::process_drop_resource_plan(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_resource_plan"); } @@ -91176,20 +91176,20 @@ void ThriftHiveMetastoreProcessor::process_drop_resource_plan(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_resource_plan", bytes); } } void ThriftHiveMetastoreProcessor::process_create_wm_trigger(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_wm_trigger", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_wm_trigger"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_wm_trigger"); } @@ -91198,7 +91198,7 @@ void ThriftHiveMetastoreProcessor::process_create_wm_trigger(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_wm_trigger", bytes); } @@ -91219,7 +91219,7 @@ void ThriftHiveMetastoreProcessor::process_create_wm_trigger(int32_t seqid, ::ap result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_wm_trigger"); } @@ -91232,7 +91232,7 @@ void ThriftHiveMetastoreProcessor::process_create_wm_trigger(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_wm_trigger"); } @@ -91242,20 +91242,20 @@ void ThriftHiveMetastoreProcessor::process_create_wm_trigger(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_wm_trigger", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_wm_trigger(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_wm_trigger", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_wm_trigger"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_wm_trigger"); } @@ -91264,7 +91264,7 @@ void ThriftHiveMetastoreProcessor::process_alter_wm_trigger(int32_t seqid, ::apa iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_wm_trigger", bytes); } @@ -91282,7 +91282,7 @@ void ThriftHiveMetastoreProcessor::process_alter_wm_trigger(int32_t seqid, ::apa result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_wm_trigger"); } @@ -91295,7 +91295,7 @@ void ThriftHiveMetastoreProcessor::process_alter_wm_trigger(int32_t seqid, ::apa return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_wm_trigger"); } @@ -91305,20 +91305,20 @@ void ThriftHiveMetastoreProcessor::process_alter_wm_trigger(int32_t seqid, ::apa bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_wm_trigger", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_wm_trigger(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_wm_trigger", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_wm_trigger"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_wm_trigger"); } @@ -91327,7 +91327,7 @@ void ThriftHiveMetastoreProcessor::process_drop_wm_trigger(int32_t seqid, ::apac iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_wm_trigger", bytes); } @@ -91345,7 +91345,7 @@ void ThriftHiveMetastoreProcessor::process_drop_wm_trigger(int32_t seqid, ::apac result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_wm_trigger"); } @@ -91358,7 +91358,7 @@ void ThriftHiveMetastoreProcessor::process_drop_wm_trigger(int32_t seqid, ::apac return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_wm_trigger"); } @@ -91368,20 +91368,20 @@ void ThriftHiveMetastoreProcessor::process_drop_wm_trigger(int32_t seqid, ::apac bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_wm_trigger", bytes); } } void ThriftHiveMetastoreProcessor::process_get_triggers_for_resourceplan(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_triggers_for_resourceplan", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_triggers_for_resourceplan"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_triggers_for_resourceplan"); } @@ -91390,7 +91390,7 @@ void ThriftHiveMetastoreProcessor::process_get_triggers_for_resourceplan(int32_t iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_triggers_for_resourceplan", bytes); } @@ -91405,7 +91405,7 @@ void ThriftHiveMetastoreProcessor::process_get_triggers_for_resourceplan(int32_t result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_triggers_for_resourceplan"); } @@ -91418,7 +91418,7 @@ void ThriftHiveMetastoreProcessor::process_get_triggers_for_resourceplan(int32_t return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_triggers_for_resourceplan"); } @@ -91428,20 +91428,20 @@ void ThriftHiveMetastoreProcessor::process_get_triggers_for_resourceplan(int32_t bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_triggers_for_resourceplan", bytes); } } void ThriftHiveMetastoreProcessor::process_create_wm_pool(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_wm_pool", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_wm_pool"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_wm_pool"); } @@ -91450,7 +91450,7 @@ void ThriftHiveMetastoreProcessor::process_create_wm_pool(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_wm_pool", bytes); } @@ -91471,7 +91471,7 @@ void ThriftHiveMetastoreProcessor::process_create_wm_pool(int32_t seqid, ::apach result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_wm_pool"); } @@ -91484,7 +91484,7 @@ void ThriftHiveMetastoreProcessor::process_create_wm_pool(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_wm_pool"); } @@ -91494,20 +91494,20 @@ void ThriftHiveMetastoreProcessor::process_create_wm_pool(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_wm_pool", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_wm_pool(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_wm_pool", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_wm_pool"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_wm_pool"); } @@ -91516,7 +91516,7 @@ void ThriftHiveMetastoreProcessor::process_alter_wm_pool(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_wm_pool", bytes); } @@ -91537,7 +91537,7 @@ void ThriftHiveMetastoreProcessor::process_alter_wm_pool(int32_t seqid, ::apache result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_wm_pool"); } @@ -91550,7 +91550,7 @@ void ThriftHiveMetastoreProcessor::process_alter_wm_pool(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_wm_pool"); } @@ -91560,20 +91560,20 @@ void ThriftHiveMetastoreProcessor::process_alter_wm_pool(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_wm_pool", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_wm_pool(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_wm_pool", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_wm_pool"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_wm_pool"); } @@ -91582,7 +91582,7 @@ void ThriftHiveMetastoreProcessor::process_drop_wm_pool(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_wm_pool", bytes); } @@ -91600,7 +91600,7 @@ void ThriftHiveMetastoreProcessor::process_drop_wm_pool(int32_t seqid, ::apache: result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_wm_pool"); } @@ -91613,7 +91613,7 @@ void ThriftHiveMetastoreProcessor::process_drop_wm_pool(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_wm_pool"); } @@ -91623,20 +91623,20 @@ void ThriftHiveMetastoreProcessor::process_drop_wm_pool(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_wm_pool", bytes); } } void ThriftHiveMetastoreProcessor::process_create_or_update_wm_mapping(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_or_update_wm_mapping", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_or_update_wm_mapping"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_or_update_wm_mapping"); } @@ -91645,7 +91645,7 @@ void ThriftHiveMetastoreProcessor::process_create_or_update_wm_mapping(int32_t s iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_or_update_wm_mapping", bytes); } @@ -91666,7 +91666,7 @@ void ThriftHiveMetastoreProcessor::process_create_or_update_wm_mapping(int32_t s result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_or_update_wm_mapping"); } @@ -91679,7 +91679,7 @@ void ThriftHiveMetastoreProcessor::process_create_or_update_wm_mapping(int32_t s return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_or_update_wm_mapping"); } @@ -91689,20 +91689,20 @@ void ThriftHiveMetastoreProcessor::process_create_or_update_wm_mapping(int32_t s bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_or_update_wm_mapping", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_wm_mapping(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_wm_mapping", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_wm_mapping"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_wm_mapping"); } @@ -91711,7 +91711,7 @@ void ThriftHiveMetastoreProcessor::process_drop_wm_mapping(int32_t seqid, ::apac iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_wm_mapping", bytes); } @@ -91729,7 +91729,7 @@ void ThriftHiveMetastoreProcessor::process_drop_wm_mapping(int32_t seqid, ::apac result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_wm_mapping"); } @@ -91742,7 +91742,7 @@ void ThriftHiveMetastoreProcessor::process_drop_wm_mapping(int32_t seqid, ::apac return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_wm_mapping"); } @@ -91752,20 +91752,20 @@ void ThriftHiveMetastoreProcessor::process_drop_wm_mapping(int32_t seqid, ::apac bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_wm_mapping", bytes); } } void ThriftHiveMetastoreProcessor::process_create_or_drop_wm_trigger_to_pool_mapping(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_or_drop_wm_trigger_to_pool_mapping", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_or_drop_wm_trigger_to_pool_mapping"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_or_drop_wm_trigger_to_pool_mapping"); } @@ -91774,7 +91774,7 @@ void ThriftHiveMetastoreProcessor::process_create_or_drop_wm_trigger_to_pool_map iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_or_drop_wm_trigger_to_pool_mapping", bytes); } @@ -91795,7 +91795,7 @@ void ThriftHiveMetastoreProcessor::process_create_or_drop_wm_trigger_to_pool_map result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_or_drop_wm_trigger_to_pool_mapping"); } @@ -91808,7 +91808,7 @@ void ThriftHiveMetastoreProcessor::process_create_or_drop_wm_trigger_to_pool_map return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_or_drop_wm_trigger_to_pool_mapping"); } @@ -91818,20 +91818,20 @@ void ThriftHiveMetastoreProcessor::process_create_or_drop_wm_trigger_to_pool_map bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_or_drop_wm_trigger_to_pool_mapping", bytes); } } void ThriftHiveMetastoreProcessor::process_create_ischema(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_ischema", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_ischema"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_ischema"); } @@ -91840,7 +91840,7 @@ void ThriftHiveMetastoreProcessor::process_create_ischema(int32_t seqid, ::apach iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_ischema", bytes); } @@ -91857,7 +91857,7 @@ void ThriftHiveMetastoreProcessor::process_create_ischema(int32_t seqid, ::apach result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_ischema"); } @@ -91870,7 +91870,7 @@ void ThriftHiveMetastoreProcessor::process_create_ischema(int32_t seqid, ::apach return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_ischema"); } @@ -91880,20 +91880,20 @@ void ThriftHiveMetastoreProcessor::process_create_ischema(int32_t seqid, ::apach bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_ischema", bytes); } } void ThriftHiveMetastoreProcessor::process_alter_ischema(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.alter_ischema", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.alter_ischema"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.alter_ischema"); } @@ -91902,7 +91902,7 @@ void ThriftHiveMetastoreProcessor::process_alter_ischema(int32_t seqid, ::apache iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.alter_ischema", bytes); } @@ -91916,7 +91916,7 @@ void ThriftHiveMetastoreProcessor::process_alter_ischema(int32_t seqid, ::apache result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.alter_ischema"); } @@ -91929,7 +91929,7 @@ void ThriftHiveMetastoreProcessor::process_alter_ischema(int32_t seqid, ::apache return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.alter_ischema"); } @@ -91939,20 +91939,20 @@ void ThriftHiveMetastoreProcessor::process_alter_ischema(int32_t seqid, ::apache bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.alter_ischema", bytes); } } void ThriftHiveMetastoreProcessor::process_get_ischema(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_ischema", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_ischema"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_ischema"); } @@ -91961,7 +91961,7 @@ void ThriftHiveMetastoreProcessor::process_get_ischema(int32_t seqid, ::apache:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_ischema", bytes); } @@ -91976,7 +91976,7 @@ void ThriftHiveMetastoreProcessor::process_get_ischema(int32_t seqid, ::apache:: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_ischema"); } @@ -91989,7 +91989,7 @@ void ThriftHiveMetastoreProcessor::process_get_ischema(int32_t seqid, ::apache:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_ischema"); } @@ -91999,20 +91999,20 @@ void ThriftHiveMetastoreProcessor::process_get_ischema(int32_t seqid, ::apache:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_ischema", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_ischema(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_ischema", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_ischema"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_ischema"); } @@ -92021,7 +92021,7 @@ void ThriftHiveMetastoreProcessor::process_drop_ischema(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_ischema", bytes); } @@ -92038,7 +92038,7 @@ void ThriftHiveMetastoreProcessor::process_drop_ischema(int32_t seqid, ::apache: result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_ischema"); } @@ -92051,7 +92051,7 @@ void ThriftHiveMetastoreProcessor::process_drop_ischema(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_ischema"); } @@ -92061,20 +92061,20 @@ void ThriftHiveMetastoreProcessor::process_drop_ischema(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_ischema", bytes); } } void ThriftHiveMetastoreProcessor::process_add_schema_version(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_schema_version", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_schema_version"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_schema_version"); } @@ -92083,7 +92083,7 @@ void ThriftHiveMetastoreProcessor::process_add_schema_version(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_schema_version", bytes); } @@ -92100,7 +92100,7 @@ void ThriftHiveMetastoreProcessor::process_add_schema_version(int32_t seqid, ::a result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_schema_version"); } @@ -92113,7 +92113,7 @@ void ThriftHiveMetastoreProcessor::process_add_schema_version(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_schema_version"); } @@ -92123,20 +92123,20 @@ void ThriftHiveMetastoreProcessor::process_add_schema_version(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_schema_version", bytes); } } void ThriftHiveMetastoreProcessor::process_get_schema_version(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_schema_version", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_schema_version"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_schema_version"); } @@ -92145,7 +92145,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_version(int32_t seqid, ::a iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_schema_version", bytes); } @@ -92160,7 +92160,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_version(int32_t seqid, ::a result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_schema_version"); } @@ -92173,7 +92173,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_version(int32_t seqid, ::a return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_schema_version"); } @@ -92183,20 +92183,20 @@ void ThriftHiveMetastoreProcessor::process_get_schema_version(int32_t seqid, ::a bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_schema_version", bytes); } } void ThriftHiveMetastoreProcessor::process_get_schema_latest_version(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_schema_latest_version", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_schema_latest_version"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_schema_latest_version"); } @@ -92205,7 +92205,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_latest_version(int32_t seq iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_schema_latest_version", bytes); } @@ -92220,7 +92220,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_latest_version(int32_t seq result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_schema_latest_version"); } @@ -92233,7 +92233,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_latest_version(int32_t seq return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_schema_latest_version"); } @@ -92243,20 +92243,20 @@ void ThriftHiveMetastoreProcessor::process_get_schema_latest_version(int32_t seq bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_schema_latest_version", bytes); } } void ThriftHiveMetastoreProcessor::process_get_schema_all_versions(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_schema_all_versions", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_schema_all_versions"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_schema_all_versions"); } @@ -92265,7 +92265,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_all_versions(int32_t seqid iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_schema_all_versions", bytes); } @@ -92280,7 +92280,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_all_versions(int32_t seqid result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_schema_all_versions"); } @@ -92293,7 +92293,7 @@ void ThriftHiveMetastoreProcessor::process_get_schema_all_versions(int32_t seqid return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_schema_all_versions"); } @@ -92303,20 +92303,20 @@ void ThriftHiveMetastoreProcessor::process_get_schema_all_versions(int32_t seqid bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_schema_all_versions", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_schema_version(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_schema_version", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_schema_version"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_schema_version"); } @@ -92325,7 +92325,7 @@ void ThriftHiveMetastoreProcessor::process_drop_schema_version(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_schema_version", bytes); } @@ -92339,7 +92339,7 @@ void ThriftHiveMetastoreProcessor::process_drop_schema_version(int32_t seqid, :: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_schema_version"); } @@ -92352,7 +92352,7 @@ void ThriftHiveMetastoreProcessor::process_drop_schema_version(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_schema_version"); } @@ -92362,20 +92362,20 @@ void ThriftHiveMetastoreProcessor::process_drop_schema_version(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_schema_version", bytes); } } void ThriftHiveMetastoreProcessor::process_get_schemas_by_cols(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_schemas_by_cols", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_schemas_by_cols"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_schemas_by_cols"); } @@ -92384,7 +92384,7 @@ void ThriftHiveMetastoreProcessor::process_get_schemas_by_cols(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_schemas_by_cols", bytes); } @@ -92396,7 +92396,7 @@ void ThriftHiveMetastoreProcessor::process_get_schemas_by_cols(int32_t seqid, :: result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_schemas_by_cols"); } @@ -92409,7 +92409,7 @@ void ThriftHiveMetastoreProcessor::process_get_schemas_by_cols(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_schemas_by_cols"); } @@ -92419,20 +92419,20 @@ void ThriftHiveMetastoreProcessor::process_get_schemas_by_cols(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_schemas_by_cols", bytes); } } void ThriftHiveMetastoreProcessor::process_map_schema_version_to_serde(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.map_schema_version_to_serde", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.map_schema_version_to_serde"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.map_schema_version_to_serde"); } @@ -92441,7 +92441,7 @@ void ThriftHiveMetastoreProcessor::process_map_schema_version_to_serde(int32_t s iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.map_schema_version_to_serde", bytes); } @@ -92455,7 +92455,7 @@ void ThriftHiveMetastoreProcessor::process_map_schema_version_to_serde(int32_t s result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.map_schema_version_to_serde"); } @@ -92468,7 +92468,7 @@ void ThriftHiveMetastoreProcessor::process_map_schema_version_to_serde(int32_t s return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.map_schema_version_to_serde"); } @@ -92478,20 +92478,20 @@ void ThriftHiveMetastoreProcessor::process_map_schema_version_to_serde(int32_t s bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.map_schema_version_to_serde", bytes); } } void ThriftHiveMetastoreProcessor::process_set_schema_version_state(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.set_schema_version_state", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.set_schema_version_state"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.set_schema_version_state"); } @@ -92500,7 +92500,7 @@ void ThriftHiveMetastoreProcessor::process_set_schema_version_state(int32_t seqi iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.set_schema_version_state", bytes); } @@ -92517,7 +92517,7 @@ void ThriftHiveMetastoreProcessor::process_set_schema_version_state(int32_t seqi result.o3 = o3; result.__isset.o3 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.set_schema_version_state"); } @@ -92530,7 +92530,7 @@ void ThriftHiveMetastoreProcessor::process_set_schema_version_state(int32_t seqi return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.set_schema_version_state"); } @@ -92540,20 +92540,20 @@ void ThriftHiveMetastoreProcessor::process_set_schema_version_state(int32_t seqi bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.set_schema_version_state", bytes); } } void ThriftHiveMetastoreProcessor::process_add_serde(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_serde", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_serde"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_serde"); } @@ -92562,7 +92562,7 @@ void ThriftHiveMetastoreProcessor::process_add_serde(int32_t seqid, ::apache::th iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_serde", bytes); } @@ -92576,7 +92576,7 @@ void ThriftHiveMetastoreProcessor::process_add_serde(int32_t seqid, ::apache::th result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_serde"); } @@ -92589,7 +92589,7 @@ void ThriftHiveMetastoreProcessor::process_add_serde(int32_t seqid, ::apache::th return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_serde"); } @@ -92599,20 +92599,20 @@ void ThriftHiveMetastoreProcessor::process_add_serde(int32_t seqid, ::apache::th bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_serde", bytes); } } void ThriftHiveMetastoreProcessor::process_get_serde(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_serde", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_serde"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_serde"); } @@ -92621,7 +92621,7 @@ void ThriftHiveMetastoreProcessor::process_get_serde(int32_t seqid, ::apache::th iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_serde", bytes); } @@ -92636,7 +92636,7 @@ void ThriftHiveMetastoreProcessor::process_get_serde(int32_t seqid, ::apache::th result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_serde"); } @@ -92649,7 +92649,7 @@ void ThriftHiveMetastoreProcessor::process_get_serde(int32_t seqid, ::apache::th return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_serde"); } @@ -92659,20 +92659,20 @@ void ThriftHiveMetastoreProcessor::process_get_serde(int32_t seqid, ::apache::th bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_serde", bytes); } } void ThriftHiveMetastoreProcessor::process_get_lock_materialization_rebuild(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_lock_materialization_rebuild", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_lock_materialization_rebuild"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_lock_materialization_rebuild"); } @@ -92681,7 +92681,7 @@ void ThriftHiveMetastoreProcessor::process_get_lock_materialization_rebuild(int3 iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_lock_materialization_rebuild", bytes); } @@ -92690,7 +92690,7 @@ void ThriftHiveMetastoreProcessor::process_get_lock_materialization_rebuild(int3 iface_->get_lock_materialization_rebuild(result.success, args.dbName, args.tableName, args.txnId); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_lock_materialization_rebuild"); } @@ -92703,7 +92703,7 @@ void ThriftHiveMetastoreProcessor::process_get_lock_materialization_rebuild(int3 return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_lock_materialization_rebuild"); } @@ -92713,20 +92713,20 @@ void ThriftHiveMetastoreProcessor::process_get_lock_materialization_rebuild(int3 bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_lock_materialization_rebuild", bytes); } } void ThriftHiveMetastoreProcessor::process_heartbeat_lock_materialization_rebuild(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.heartbeat_lock_materialization_rebuild", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.heartbeat_lock_materialization_rebuild"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.heartbeat_lock_materialization_rebuild"); } @@ -92735,7 +92735,7 @@ void ThriftHiveMetastoreProcessor::process_heartbeat_lock_materialization_rebuil iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.heartbeat_lock_materialization_rebuild", bytes); } @@ -92744,7 +92744,7 @@ void ThriftHiveMetastoreProcessor::process_heartbeat_lock_materialization_rebuil result.success = iface_->heartbeat_lock_materialization_rebuild(args.dbName, args.tableName, args.txnId); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.heartbeat_lock_materialization_rebuild"); } @@ -92757,7 +92757,7 @@ void ThriftHiveMetastoreProcessor::process_heartbeat_lock_materialization_rebuil return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.heartbeat_lock_materialization_rebuild"); } @@ -92767,20 +92767,20 @@ void ThriftHiveMetastoreProcessor::process_heartbeat_lock_materialization_rebuil bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.heartbeat_lock_materialization_rebuild", bytes); } } void ThriftHiveMetastoreProcessor::process_add_runtime_stats(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_runtime_stats", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_runtime_stats"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_runtime_stats"); } @@ -92789,7 +92789,7 @@ void ThriftHiveMetastoreProcessor::process_add_runtime_stats(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_runtime_stats", bytes); } @@ -92800,7 +92800,7 @@ void ThriftHiveMetastoreProcessor::process_add_runtime_stats(int32_t seqid, ::ap result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_runtime_stats"); } @@ -92813,7 +92813,7 @@ void ThriftHiveMetastoreProcessor::process_add_runtime_stats(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_runtime_stats"); } @@ -92823,20 +92823,20 @@ void ThriftHiveMetastoreProcessor::process_add_runtime_stats(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_runtime_stats", bytes); } } void ThriftHiveMetastoreProcessor::process_get_runtime_stats(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_runtime_stats", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_runtime_stats"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_runtime_stats"); } @@ -92845,7 +92845,7 @@ void ThriftHiveMetastoreProcessor::process_get_runtime_stats(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_runtime_stats", bytes); } @@ -92857,7 +92857,7 @@ void ThriftHiveMetastoreProcessor::process_get_runtime_stats(int32_t seqid, ::ap result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_runtime_stats"); } @@ -92870,7 +92870,7 @@ void ThriftHiveMetastoreProcessor::process_get_runtime_stats(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_runtime_stats"); } @@ -92880,20 +92880,20 @@ void ThriftHiveMetastoreProcessor::process_get_runtime_stats(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_runtime_stats", bytes); } } void ThriftHiveMetastoreProcessor::process_get_partitions_with_specs(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_partitions_with_specs", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_partitions_with_specs"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_partitions_with_specs"); } @@ -92902,7 +92902,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_with_specs(int32_t seq iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_partitions_with_specs", bytes); } @@ -92914,7 +92914,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_with_specs(int32_t seq result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_partitions_with_specs"); } @@ -92927,7 +92927,7 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_with_specs(int32_t seq return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_partitions_with_specs"); } @@ -92937,20 +92937,20 @@ void ThriftHiveMetastoreProcessor::process_get_partitions_with_specs(int32_t seq bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_partitions_with_specs", bytes); } } void ThriftHiveMetastoreProcessor::process_scheduled_query_poll(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.scheduled_query_poll", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.scheduled_query_poll"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.scheduled_query_poll"); } @@ -92959,7 +92959,7 @@ void ThriftHiveMetastoreProcessor::process_scheduled_query_poll(int32_t seqid, : iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.scheduled_query_poll", bytes); } @@ -92971,7 +92971,7 @@ void ThriftHiveMetastoreProcessor::process_scheduled_query_poll(int32_t seqid, : result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.scheduled_query_poll"); } @@ -92984,7 +92984,7 @@ void ThriftHiveMetastoreProcessor::process_scheduled_query_poll(int32_t seqid, : return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.scheduled_query_poll"); } @@ -92994,20 +92994,20 @@ void ThriftHiveMetastoreProcessor::process_scheduled_query_poll(int32_t seqid, : bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.scheduled_query_poll", bytes); } } void ThriftHiveMetastoreProcessor::process_scheduled_query_maintenance(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.scheduled_query_maintenance", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.scheduled_query_maintenance"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.scheduled_query_maintenance"); } @@ -93016,7 +93016,7 @@ void ThriftHiveMetastoreProcessor::process_scheduled_query_maintenance(int32_t s iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.scheduled_query_maintenance", bytes); } @@ -93036,7 +93036,7 @@ void ThriftHiveMetastoreProcessor::process_scheduled_query_maintenance(int32_t s result.o4 = o4; result.__isset.o4 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.scheduled_query_maintenance"); } @@ -93049,7 +93049,7 @@ void ThriftHiveMetastoreProcessor::process_scheduled_query_maintenance(int32_t s return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.scheduled_query_maintenance"); } @@ -93059,20 +93059,20 @@ void ThriftHiveMetastoreProcessor::process_scheduled_query_maintenance(int32_t s bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.scheduled_query_maintenance", bytes); } } void ThriftHiveMetastoreProcessor::process_scheduled_query_progress(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.scheduled_query_progress", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.scheduled_query_progress"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.scheduled_query_progress"); } @@ -93081,7 +93081,7 @@ void ThriftHiveMetastoreProcessor::process_scheduled_query_progress(int32_t seqi iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.scheduled_query_progress", bytes); } @@ -93095,7 +93095,7 @@ void ThriftHiveMetastoreProcessor::process_scheduled_query_progress(int32_t seqi result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.scheduled_query_progress"); } @@ -93108,7 +93108,7 @@ void ThriftHiveMetastoreProcessor::process_scheduled_query_progress(int32_t seqi return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.scheduled_query_progress"); } @@ -93118,20 +93118,20 @@ void ThriftHiveMetastoreProcessor::process_scheduled_query_progress(int32_t seqi bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.scheduled_query_progress", bytes); } } void ThriftHiveMetastoreProcessor::process_get_scheduled_query(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_scheduled_query", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_scheduled_query"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_scheduled_query"); } @@ -93140,7 +93140,7 @@ void ThriftHiveMetastoreProcessor::process_get_scheduled_query(int32_t seqid, :: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_scheduled_query", bytes); } @@ -93155,7 +93155,7 @@ void ThriftHiveMetastoreProcessor::process_get_scheduled_query(int32_t seqid, :: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_scheduled_query"); } @@ -93168,7 +93168,7 @@ void ThriftHiveMetastoreProcessor::process_get_scheduled_query(int32_t seqid, :: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_scheduled_query"); } @@ -93178,20 +93178,20 @@ void ThriftHiveMetastoreProcessor::process_get_scheduled_query(int32_t seqid, :: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_scheduled_query", bytes); } } void ThriftHiveMetastoreProcessor::process_add_replication_metrics(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_replication_metrics", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_replication_metrics"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_replication_metrics"); } @@ -93200,7 +93200,7 @@ void ThriftHiveMetastoreProcessor::process_add_replication_metrics(int32_t seqid iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_replication_metrics", bytes); } @@ -93211,7 +93211,7 @@ void ThriftHiveMetastoreProcessor::process_add_replication_metrics(int32_t seqid result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_replication_metrics"); } @@ -93224,7 +93224,7 @@ void ThriftHiveMetastoreProcessor::process_add_replication_metrics(int32_t seqid return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_replication_metrics"); } @@ -93234,20 +93234,20 @@ void ThriftHiveMetastoreProcessor::process_add_replication_metrics(int32_t seqid bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_replication_metrics", bytes); } } void ThriftHiveMetastoreProcessor::process_get_replication_metrics(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_replication_metrics", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_replication_metrics"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_replication_metrics"); } @@ -93256,7 +93256,7 @@ void ThriftHiveMetastoreProcessor::process_get_replication_metrics(int32_t seqid iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_replication_metrics", bytes); } @@ -93268,7 +93268,7 @@ void ThriftHiveMetastoreProcessor::process_get_replication_metrics(int32_t seqid result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_replication_metrics"); } @@ -93281,7 +93281,7 @@ void ThriftHiveMetastoreProcessor::process_get_replication_metrics(int32_t seqid return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_replication_metrics"); } @@ -93291,20 +93291,20 @@ void ThriftHiveMetastoreProcessor::process_get_replication_metrics(int32_t seqid bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_replication_metrics", bytes); } } void ThriftHiveMetastoreProcessor::process_get_open_txns_req(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_open_txns_req", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_open_txns_req"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_open_txns_req"); } @@ -93313,7 +93313,7 @@ void ThriftHiveMetastoreProcessor::process_get_open_txns_req(int32_t seqid, ::ap iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_open_txns_req", bytes); } @@ -93322,7 +93322,7 @@ void ThriftHiveMetastoreProcessor::process_get_open_txns_req(int32_t seqid, ::ap iface_->get_open_txns_req(result.success, args.getOpenTxnsRequest); result.__isset.success = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_open_txns_req"); } @@ -93335,7 +93335,7 @@ void ThriftHiveMetastoreProcessor::process_get_open_txns_req(int32_t seqid, ::ap return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_open_txns_req"); } @@ -93345,20 +93345,20 @@ void ThriftHiveMetastoreProcessor::process_get_open_txns_req(int32_t seqid, ::ap bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_open_txns_req", bytes); } } void ThriftHiveMetastoreProcessor::process_create_stored_procedure(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.create_stored_procedure", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.create_stored_procedure"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.create_stored_procedure"); } @@ -93367,7 +93367,7 @@ void ThriftHiveMetastoreProcessor::process_create_stored_procedure(int32_t seqid iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.create_stored_procedure", bytes); } @@ -93381,7 +93381,7 @@ void ThriftHiveMetastoreProcessor::process_create_stored_procedure(int32_t seqid result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.create_stored_procedure"); } @@ -93394,7 +93394,7 @@ void ThriftHiveMetastoreProcessor::process_create_stored_procedure(int32_t seqid return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.create_stored_procedure"); } @@ -93404,20 +93404,20 @@ void ThriftHiveMetastoreProcessor::process_create_stored_procedure(int32_t seqid bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.create_stored_procedure", bytes); } } void ThriftHiveMetastoreProcessor::process_get_stored_procedure(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_stored_procedure", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_stored_procedure"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_stored_procedure"); } @@ -93426,7 +93426,7 @@ void ThriftHiveMetastoreProcessor::process_get_stored_procedure(int32_t seqid, : iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_stored_procedure", bytes); } @@ -93441,7 +93441,7 @@ void ThriftHiveMetastoreProcessor::process_get_stored_procedure(int32_t seqid, : result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_stored_procedure"); } @@ -93454,7 +93454,7 @@ void ThriftHiveMetastoreProcessor::process_get_stored_procedure(int32_t seqid, : return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_stored_procedure"); } @@ -93464,20 +93464,20 @@ void ThriftHiveMetastoreProcessor::process_get_stored_procedure(int32_t seqid, : bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_stored_procedure", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_stored_procedure(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_stored_procedure", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_stored_procedure"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_stored_procedure"); } @@ -93486,7 +93486,7 @@ void ThriftHiveMetastoreProcessor::process_drop_stored_procedure(int32_t seqid, iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_stored_procedure", bytes); } @@ -93497,7 +93497,7 @@ void ThriftHiveMetastoreProcessor::process_drop_stored_procedure(int32_t seqid, result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_stored_procedure"); } @@ -93510,7 +93510,7 @@ void ThriftHiveMetastoreProcessor::process_drop_stored_procedure(int32_t seqid, return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_stored_procedure"); } @@ -93520,20 +93520,20 @@ void ThriftHiveMetastoreProcessor::process_drop_stored_procedure(int32_t seqid, bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_stored_procedure", bytes); } } void ThriftHiveMetastoreProcessor::process_get_all_stored_procedures(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_all_stored_procedures", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_all_stored_procedures"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_all_stored_procedures"); } @@ -93542,7 +93542,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_stored_procedures(int32_t seq iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_all_stored_procedures", bytes); } @@ -93554,7 +93554,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_stored_procedures(int32_t seq result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_all_stored_procedures"); } @@ -93567,7 +93567,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_stored_procedures(int32_t seq return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_all_stored_procedures"); } @@ -93577,20 +93577,20 @@ void ThriftHiveMetastoreProcessor::process_get_all_stored_procedures(int32_t seq bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_all_stored_procedures", bytes); } } void ThriftHiveMetastoreProcessor::process_find_package(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.find_package", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.find_package"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.find_package"); } @@ -93599,7 +93599,7 @@ void ThriftHiveMetastoreProcessor::process_find_package(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.find_package", bytes); } @@ -93614,7 +93614,7 @@ void ThriftHiveMetastoreProcessor::process_find_package(int32_t seqid, ::apache: result.o2 = o2; result.__isset.o2 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.find_package"); } @@ -93627,7 +93627,7 @@ void ThriftHiveMetastoreProcessor::process_find_package(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.find_package"); } @@ -93637,20 +93637,20 @@ void ThriftHiveMetastoreProcessor::process_find_package(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.find_package", bytes); } } void ThriftHiveMetastoreProcessor::process_add_package(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.add_package", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.add_package"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.add_package"); } @@ -93659,7 +93659,7 @@ void ThriftHiveMetastoreProcessor::process_add_package(int32_t seqid, ::apache:: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.add_package", bytes); } @@ -93670,7 +93670,7 @@ void ThriftHiveMetastoreProcessor::process_add_package(int32_t seqid, ::apache:: result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.add_package"); } @@ -93683,7 +93683,7 @@ void ThriftHiveMetastoreProcessor::process_add_package(int32_t seqid, ::apache:: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.add_package"); } @@ -93693,20 +93693,20 @@ void ThriftHiveMetastoreProcessor::process_add_package(int32_t seqid, ::apache:: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.add_package", bytes); } } void ThriftHiveMetastoreProcessor::process_get_all_packages(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.get_all_packages", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.get_all_packages"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.get_all_packages"); } @@ -93715,7 +93715,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_packages(int32_t seqid, ::apa iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.get_all_packages", bytes); } @@ -93727,7 +93727,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_packages(int32_t seqid, ::apa result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.get_all_packages"); } @@ -93740,7 +93740,7 @@ void ThriftHiveMetastoreProcessor::process_get_all_packages(int32_t seqid, ::apa return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.get_all_packages"); } @@ -93750,20 +93750,20 @@ void ThriftHiveMetastoreProcessor::process_get_all_packages(int32_t seqid, ::apa bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.get_all_packages", bytes); } } void ThriftHiveMetastoreProcessor::process_drop_package(int32_t seqid, ::apache::thrift::protocol::TProtocol* iprot, ::apache::thrift::protocol::TProtocol* oprot, void* callContext) { - void* ctx = NULL; - if (this->eventHandler_.get() != NULL) { + void* ctx = nullptr; + if (this->eventHandler_.get() != nullptr) { ctx = this->eventHandler_->getContext("ThriftHiveMetastore.drop_package", callContext); } ::apache::thrift::TProcessorContextFreer freer(this->eventHandler_.get(), ctx, "ThriftHiveMetastore.drop_package"); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preRead(ctx, "ThriftHiveMetastore.drop_package"); } @@ -93772,7 +93772,7 @@ void ThriftHiveMetastoreProcessor::process_drop_package(int32_t seqid, ::apache: iprot->readMessageEnd(); uint32_t bytes = iprot->getTransport()->readEnd(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postRead(ctx, "ThriftHiveMetastore.drop_package", bytes); } @@ -93783,7 +93783,7 @@ void ThriftHiveMetastoreProcessor::process_drop_package(int32_t seqid, ::apache: result.o1 = o1; result.__isset.o1 = true; } catch (const std::exception& e) { - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->handlerError(ctx, "ThriftHiveMetastore.drop_package"); } @@ -93796,7 +93796,7 @@ void ThriftHiveMetastoreProcessor::process_drop_package(int32_t seqid, ::apache: return; } - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->preWrite(ctx, "ThriftHiveMetastore.drop_package"); } @@ -93806,7 +93806,7 @@ void ThriftHiveMetastoreProcessor::process_drop_package(int32_t seqid, ::apache: bytes = oprot->getTransport()->writeEnd(); oprot->getTransport()->flush(); - if (this->eventHandler_.get() != NULL) { + if (this->eventHandler_.get() != nullptr) { this->eventHandler_->postWrite(ctx, "ThriftHiveMetastore.drop_package", bytes); } } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/ThriftHiveMetastore.h b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/ThriftHiveMetastore.h index 4e0daf440751..92c17a84d134 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/ThriftHiveMetastore.h +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/ThriftHiveMetastore.h @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -20,6 +20,9 @@ namespace Apache { namespace Hadoop { namespace Hive { #pragma warning (disable : 4250 ) //inheriting methods via dominance #endif +/** + * This interface is live. + */ class ThriftHiveMetastoreIf : virtual public ::facebook::fb303::FacebookServiceIf { public: virtual ~ThriftHiveMetastoreIf() {} @@ -15356,6 +15359,10 @@ class ThriftHiveMetastore_markPartitionForEvent_args { std::string db_name; std::string tbl_name; std::map part_vals; + /** + * + * @see PartitionEventType + */ PartitionEventType::type eventType; _ThriftHiveMetastore_markPartitionForEvent_args__isset __isset; @@ -15400,6 +15407,10 @@ class ThriftHiveMetastore_markPartitionForEvent_pargs { const std::string* db_name; const std::string* tbl_name; const std::map * part_vals; + /** + * + * @see PartitionEventType + */ const PartitionEventType::type* eventType; uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const; @@ -15521,6 +15532,10 @@ class ThriftHiveMetastore_isPartitionMarkedForEvent_args { std::string db_name; std::string tbl_name; std::map part_vals; + /** + * + * @see PartitionEventType + */ PartitionEventType::type eventType; _ThriftHiveMetastore_isPartitionMarkedForEvent_args__isset __isset; @@ -15565,6 +15580,10 @@ class ThriftHiveMetastore_isPartitionMarkedForEvent_pargs { const std::string* db_name; const std::string* tbl_name; const std::map * part_vals; + /** + * + * @see PartitionEventType + */ const PartitionEventType::type* eventType; uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const; @@ -19246,8 +19265,16 @@ class ThriftHiveMetastore_grant_role_args { virtual ~ThriftHiveMetastore_grant_role_args() noexcept; std::string role_name; std::string principal_name; + /** + * + * @see PrincipalType + */ PrincipalType::type principal_type; std::string grantor; + /** + * + * @see PrincipalType + */ PrincipalType::type grantorType; bool grant_option; @@ -19300,8 +19327,16 @@ class ThriftHiveMetastore_grant_role_pargs { virtual ~ThriftHiveMetastore_grant_role_pargs() noexcept; const std::string* role_name; const std::string* principal_name; + /** + * + * @see PrincipalType + */ const PrincipalType::type* principal_type; const std::string* grantor; + /** + * + * @see PrincipalType + */ const PrincipalType::type* grantorType; const bool* grant_option; @@ -19390,6 +19425,10 @@ class ThriftHiveMetastore_revoke_role_args { virtual ~ThriftHiveMetastore_revoke_role_args() noexcept; std::string role_name; std::string principal_name; + /** + * + * @see PrincipalType + */ PrincipalType::type principal_type; _ThriftHiveMetastore_revoke_role_args__isset __isset; @@ -19429,6 +19468,10 @@ class ThriftHiveMetastore_revoke_role_pargs { virtual ~ThriftHiveMetastore_revoke_role_pargs() noexcept; const std::string* role_name; const std::string* principal_name; + /** + * + * @see PrincipalType + */ const PrincipalType::type* principal_type; uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const; @@ -19514,6 +19557,10 @@ class ThriftHiveMetastore_list_roles_args { virtual ~ThriftHiveMetastore_list_roles_args() noexcept; std::string principal_name; + /** + * + * @see PrincipalType + */ PrincipalType::type principal_type; _ThriftHiveMetastore_list_roles_args__isset __isset; @@ -19548,6 +19595,10 @@ class ThriftHiveMetastore_list_roles_pargs { virtual ~ThriftHiveMetastore_list_roles_pargs() noexcept; const std::string* principal_name; + /** + * + * @see PrincipalType + */ const PrincipalType::type* principal_type; uint32_t write(::apache::thrift::protocol::TProtocol* oprot) const; @@ -20096,6 +20147,10 @@ class ThriftHiveMetastore_list_privileges_args { virtual ~ThriftHiveMetastore_list_privileges_args() noexcept; std::string principal_name; + /** + * + * @see PrincipalType + */ PrincipalType::type principal_type; HiveObjectRef hiveObject; @@ -20135,6 +20190,10 @@ class ThriftHiveMetastore_list_privileges_pargs { virtual ~ThriftHiveMetastore_list_privileges_pargs() noexcept; const std::string* principal_name; + /** + * + * @see PrincipalType + */ const PrincipalType::type* principal_type; const HiveObjectRef* hiveObject; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp index 84115e0538fc..391ad8bcd09d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.h b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.h index 77985c6a7043..9cb8a9606aa6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.h +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.h @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_types.cpp b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_types.cpp index e8f5289938fa..8b72d4e2033b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_types.cpp +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_types.cpp @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -27,7 +27,7 @@ const char* _kHiveObjectTypeNames[] = { "PARTITION", "COLUMN" }; -const std::map _HiveObjectType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(5, _kHiveObjectTypeValues, _kHiveObjectTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _HiveObjectType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(5, _kHiveObjectTypeValues, _kHiveObjectTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const HiveObjectType::type& val) { std::map::const_iterator it = _HiveObjectType_VALUES_TO_NAMES.find(val); @@ -58,7 +58,7 @@ const char* _kPrincipalTypeNames[] = { "ROLE", "GROUP" }; -const std::map _PrincipalType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kPrincipalTypeValues, _kPrincipalTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _PrincipalType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kPrincipalTypeValues, _kPrincipalTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const PrincipalType::type& val) { std::map::const_iterator it = _PrincipalType_VALUES_TO_NAMES.find(val); @@ -85,7 +85,7 @@ int _kPartitionEventTypeValues[] = { const char* _kPartitionEventTypeNames[] = { "LOAD_DONE" }; -const std::map _PartitionEventType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(1, _kPartitionEventTypeValues, _kPartitionEventTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _PartitionEventType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(1, _kPartitionEventTypeValues, _kPartitionEventTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const PartitionEventType::type& val) { std::map::const_iterator it = _PartitionEventType_VALUES_TO_NAMES.find(val); @@ -116,7 +116,7 @@ const char* _kTxnStateNames[] = { "ABORTED", "OPEN" }; -const std::map _TxnState_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kTxnStateValues, _kTxnStateNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _TxnState_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kTxnStateValues, _kTxnStateNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const TxnState::type& val) { std::map::const_iterator it = _TxnState_VALUES_TO_NAMES.find(val); @@ -147,7 +147,7 @@ const char* _kLockLevelNames[] = { "TABLE", "PARTITION" }; -const std::map _LockLevel_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kLockLevelValues, _kLockLevelNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _LockLevel_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kLockLevelValues, _kLockLevelNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const LockLevel::type& val) { std::map::const_iterator it = _LockLevel_VALUES_TO_NAMES.find(val); @@ -180,7 +180,7 @@ const char* _kLockStateNames[] = { "ABORT", "NOT_ACQUIRED" }; -const std::map _LockState_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(4, _kLockStateValues, _kLockStateNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _LockState_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(4, _kLockStateValues, _kLockStateNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const LockState::type& val) { std::map::const_iterator it = _LockState_VALUES_TO_NAMES.find(val); @@ -213,7 +213,7 @@ const char* _kLockTypeNames[] = { "EXCLUSIVE", "EXCL_WRITE" }; -const std::map _LockType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(4, _kLockTypeValues, _kLockTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _LockType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(4, _kLockTypeValues, _kLockTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const LockType::type& val) { std::map::const_iterator it = _LockType_VALUES_TO_NAMES.find(val); @@ -242,7 +242,7 @@ const char* _kCompactionTypeNames[] = { "MINOR", "MAJOR" }; -const std::map _CompactionType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kCompactionTypeValues, _kCompactionTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _CompactionType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kCompactionTypeValues, _kCompactionTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const CompactionType::type& val) { std::map::const_iterator it = _CompactionType_VALUES_TO_NAMES.find(val); @@ -271,7 +271,7 @@ const char* _kGrantRevokeTypeNames[] = { "GRANT", "REVOKE" }; -const std::map _GrantRevokeType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kGrantRevokeTypeValues, _kGrantRevokeTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _GrantRevokeType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kGrantRevokeTypeValues, _kGrantRevokeTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const GrantRevokeType::type& val) { std::map::const_iterator it = _GrantRevokeType_VALUES_TO_NAMES.find(val); @@ -308,7 +308,7 @@ const char* _kDataOperationTypeNames[] = { "UNSET", "NO_TXN" }; -const std::map _DataOperationType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(6, _kDataOperationTypeValues, _kDataOperationTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _DataOperationType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(6, _kDataOperationTypeValues, _kDataOperationTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const DataOperationType::type& val) { std::map::const_iterator it = _DataOperationType_VALUES_TO_NAMES.find(val); @@ -339,7 +339,7 @@ const char* _kEventRequestTypeNames[] = { "UPDATE", "DELETE" }; -const std::map _EventRequestType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kEventRequestTypeValues, _kEventRequestTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _EventRequestType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kEventRequestTypeValues, _kEventRequestTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const EventRequestType::type& val) { std::map::const_iterator it = _EventRequestType_VALUES_TO_NAMES.find(val); @@ -368,7 +368,7 @@ const char* _kSerdeTypeNames[] = { "HIVE", "SCHEMA_REGISTRY" }; -const std::map _SerdeType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kSerdeTypeValues, _kSerdeTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _SerdeType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kSerdeTypeValues, _kSerdeTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const SerdeType::type& val) { std::map::const_iterator it = _SerdeType_VALUES_TO_NAMES.find(val); @@ -397,7 +397,7 @@ const char* _kSchemaTypeNames[] = { "HIVE", "AVRO" }; -const std::map _SchemaType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kSchemaTypeValues, _kSchemaTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _SchemaType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kSchemaTypeValues, _kSchemaTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const SchemaType::type& val) { std::map::const_iterator it = _SchemaType_VALUES_TO_NAMES.find(val); @@ -430,7 +430,7 @@ const char* _kSchemaCompatibilityNames[] = { "FORWARD", "BOTH" }; -const std::map _SchemaCompatibility_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(4, _kSchemaCompatibilityValues, _kSchemaCompatibilityNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _SchemaCompatibility_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(4, _kSchemaCompatibilityValues, _kSchemaCompatibilityNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const SchemaCompatibility::type& val) { std::map::const_iterator it = _SchemaCompatibility_VALUES_TO_NAMES.find(val); @@ -459,7 +459,7 @@ const char* _kSchemaValidationNames[] = { "LATEST", "ALL" }; -const std::map _SchemaValidation_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kSchemaValidationValues, _kSchemaValidationNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _SchemaValidation_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kSchemaValidationValues, _kSchemaValidationNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const SchemaValidation::type& val) { std::map::const_iterator it = _SchemaValidation_VALUES_TO_NAMES.find(val); @@ -500,7 +500,7 @@ const char* _kSchemaVersionStateNames[] = { "ARCHIVED", "DELETED" }; -const std::map _SchemaVersionState_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(8, _kSchemaVersionStateValues, _kSchemaVersionStateNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _SchemaVersionState_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(8, _kSchemaVersionStateValues, _kSchemaVersionStateNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const SchemaVersionState::type& val) { std::map::const_iterator it = _SchemaVersionState_VALUES_TO_NAMES.find(val); @@ -529,7 +529,7 @@ const char* _kDatabaseTypeNames[] = { "NATIVE", "REMOTE" }; -const std::map _DatabaseType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kDatabaseTypeValues, _kDatabaseTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _DatabaseType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kDatabaseTypeValues, _kDatabaseTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const DatabaseType::type& val) { std::map::const_iterator it = _DatabaseType_VALUES_TO_NAMES.find(val); @@ -556,7 +556,7 @@ int _kFunctionTypeValues[] = { const char* _kFunctionTypeNames[] = { "JAVA" }; -const std::map _FunctionType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(1, _kFunctionTypeValues, _kFunctionTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _FunctionType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(1, _kFunctionTypeValues, _kFunctionTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const FunctionType::type& val) { std::map::const_iterator it = _FunctionType_VALUES_TO_NAMES.find(val); @@ -587,7 +587,7 @@ const char* _kResourceTypeNames[] = { "FILE", "ARCHIVE" }; -const std::map _ResourceType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kResourceTypeValues, _kResourceTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _ResourceType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kResourceTypeValues, _kResourceTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const ResourceType::type& val) { std::map::const_iterator it = _ResourceType_VALUES_TO_NAMES.find(val); @@ -622,7 +622,7 @@ const char* _kTxnTypeNames[] = { "COMPACTION", "MATER_VIEW_REBUILD" }; -const std::map _TxnType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(5, _kTxnTypeValues, _kTxnTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _TxnType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(5, _kTxnTypeValues, _kTxnTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const TxnType::type& val) { std::map::const_iterator it = _TxnType_VALUES_TO_NAMES.find(val); @@ -653,7 +653,7 @@ const char* _kGetTablesExtRequestFieldsNames[] = { "PROCESSOR_CAPABILITIES", "ALL" }; -const std::map _GetTablesExtRequestFields_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kGetTablesExtRequestFieldsValues, _kGetTablesExtRequestFieldsNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _GetTablesExtRequestFields_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kGetTablesExtRequestFieldsValues, _kGetTablesExtRequestFieldsNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const GetTablesExtRequestFields::type& val) { std::map::const_iterator it = _GetTablesExtRequestFields_VALUES_TO_NAMES.find(val); @@ -680,7 +680,7 @@ int _kFileMetadataExprTypeValues[] = { const char* _kFileMetadataExprTypeNames[] = { "ORC_SARG" }; -const std::map _FileMetadataExprType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(1, _kFileMetadataExprTypeValues, _kFileMetadataExprTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _FileMetadataExprType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(1, _kFileMetadataExprTypeValues, _kFileMetadataExprTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const FileMetadataExprType::type& val) { std::map::const_iterator it = _FileMetadataExprType_VALUES_TO_NAMES.find(val); @@ -709,7 +709,7 @@ const char* _kClientCapabilityNames[] = { "TEST_CAPABILITY", "INSERT_ONLY_TABLES" }; -const std::map _ClientCapability_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kClientCapabilityValues, _kClientCapabilityNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _ClientCapability_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kClientCapabilityValues, _kClientCapabilityNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const ClientCapability::type& val) { std::map::const_iterator it = _ClientCapability_VALUES_TO_NAMES.find(val); @@ -740,7 +740,7 @@ const char* _kWMResourcePlanStatusNames[] = { "ENABLED", "DISABLED" }; -const std::map _WMResourcePlanStatus_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kWMResourcePlanStatusValues, _kWMResourcePlanStatusNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _WMResourcePlanStatus_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kWMResourcePlanStatusValues, _kWMResourcePlanStatusNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const WMResourcePlanStatus::type& val) { std::map::const_iterator it = _WMResourcePlanStatus_VALUES_TO_NAMES.find(val); @@ -769,7 +769,7 @@ const char* _kWMPoolSchedulingPolicyNames[] = { "FAIR", "FIFO" }; -const std::map _WMPoolSchedulingPolicy_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kWMPoolSchedulingPolicyValues, _kWMPoolSchedulingPolicyNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _WMPoolSchedulingPolicy_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(2, _kWMPoolSchedulingPolicyValues, _kWMPoolSchedulingPolicyNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const WMPoolSchedulingPolicy::type& val) { std::map::const_iterator it = _WMPoolSchedulingPolicy_VALUES_TO_NAMES.find(val); @@ -800,7 +800,7 @@ const char* _kScheduledQueryMaintenanceRequestTypeNames[] = { "ALTER", "DROP" }; -const std::map _ScheduledQueryMaintenanceRequestType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kScheduledQueryMaintenanceRequestTypeValues, _kScheduledQueryMaintenanceRequestTypeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _ScheduledQueryMaintenanceRequestType_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kScheduledQueryMaintenanceRequestTypeValues, _kScheduledQueryMaintenanceRequestTypeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const ScheduledQueryMaintenanceRequestType::type& val) { std::map::const_iterator it = _ScheduledQueryMaintenanceRequestType_VALUES_TO_NAMES.find(val); @@ -835,7 +835,7 @@ const char* _kQueryStateNames[] = { "FINISHED", "TIMED_OUT" }; -const std::map _QueryState_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(5, _kQueryStateValues, _kQueryStateNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _QueryState_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(5, _kQueryStateValues, _kQueryStateNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const QueryState::type& val) { std::map::const_iterator it = _QueryState_VALUES_TO_NAMES.find(val); @@ -866,7 +866,7 @@ const char* _kPartitionFilterModeNames[] = { "BY_VALUES", "BY_EXPR" }; -const std::map _PartitionFilterMode_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kPartitionFilterModeValues, _kPartitionFilterModeNames), ::apache::thrift::TEnumIterator(-1, NULL, NULL)); +const std::map _PartitionFilterMode_VALUES_TO_NAMES(::apache::thrift::TEnumIterator(3, _kPartitionFilterModeValues, _kPartitionFilterModeNames), ::apache::thrift::TEnumIterator(-1, nullptr, nullptr)); std::ostream& operator<<(std::ostream& out, const PartitionFilterMode::type& val) { std::map::const_iterator it = _PartitionFilterMode_VALUES_TO_NAMES.find(val); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_types.h b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_types.h index 1f678b03b08e..b5ce45272f22 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_types.h +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_types.h @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -1864,6 +1864,10 @@ class HiveObjectRef : public virtual ::apache::thrift::TBase { } virtual ~HiveObjectRef() noexcept; + /** + * + * @see HiveObjectType + */ HiveObjectType::type objectType; std::string dbName; std::string objectName; @@ -1940,6 +1944,10 @@ class PrivilegeGrantInfo : public virtual ::apache::thrift::TBase { std::string privilege; int32_t createTime; std::string grantor; + /** + * + * @see PrincipalType + */ PrincipalType::type grantorType; bool grantOption; @@ -2005,6 +2013,10 @@ class HiveObjectPrivilege : public virtual ::apache::thrift::TBase { virtual ~HiveObjectPrivilege() noexcept; HiveObjectRef hiveObject; std::string principalName; + /** + * + * @see PrincipalType + */ PrincipalType::type principalType; PrivilegeGrantInfo grantInfo; std::string authorizer; @@ -2163,6 +2175,10 @@ class GrantRevokePrivilegeRequest : public virtual ::apache::thrift::TBase { } virtual ~GrantRevokePrivilegeRequest() noexcept; + /** + * + * @see GrantRevokeType + */ GrantRevokeType::type requestType; PrivilegeBag privileges; bool revokeGrantOption; @@ -2424,10 +2440,18 @@ class RolePrincipalGrant : public virtual ::apache::thrift::TBase { virtual ~RolePrincipalGrant() noexcept; std::string roleName; std::string principalName; + /** + * + * @see PrincipalType + */ PrincipalType::type principalType; bool grantOption; int32_t grantTime; std::string grantorName; + /** + * + * @see PrincipalType + */ PrincipalType::type grantorPrincipalType; _RolePrincipalGrant__isset __isset; @@ -2491,6 +2515,10 @@ class GetRoleGrantsForPrincipalRequest : public virtual ::apache::thrift::TBase virtual ~GetRoleGrantsForPrincipalRequest() noexcept; std::string principal_name; + /** + * + * @see PrincipalType + */ PrincipalType::type principal_type; void __set_principal_name(const std::string& val); @@ -2649,11 +2677,23 @@ class GrantRevokeRoleRequest : public virtual ::apache::thrift::TBase { } virtual ~GrantRevokeRoleRequest() noexcept; + /** + * + * @see GrantRevokeType + */ GrantRevokeType::type requestType; std::string roleName; std::string principalName; + /** + * + * @see PrincipalType + */ PrincipalType::type principalType; std::string grantor; + /** + * + * @see PrincipalType + */ PrincipalType::type grantorType; bool grantOption; @@ -3111,10 +3151,18 @@ class Database : public virtual ::apache::thrift::TBase { std::map parameters; PrincipalPrivilegeSet privileges; std::string ownerName; + /** + * + * @see PrincipalType + */ PrincipalType::type ownerType; std::string catalogName; int32_t createTime; std::string managedLocationUri; + /** + * + * @see DatabaseType + */ DatabaseType::type type; std::string connector_name; std::string remote_dbname; @@ -3237,6 +3285,10 @@ class SerDeInfo : public virtual ::apache::thrift::TBase { std::string description; std::string serializerClass; std::string deserializerClass; + /** + * + * @see SerdeType + */ SerdeType::type serdeType; _SerDeInfo__isset __isset; @@ -4568,6 +4620,10 @@ class Table : public virtual ::apache::thrift::TBase { bool rewriteEnabled; CreationMetadata creationMetadata; std::string catName; + /** + * + * @see PrincipalType + */ PrincipalType::type ownerType; int64_t writeId; bool isStatsCompliant; @@ -7394,6 +7450,10 @@ class DataConnector : public virtual ::apache::thrift::TBase { std::string description; std::map parameters; std::string ownerName; + /** + * + * @see PrincipalType + */ PrincipalType::type ownerType; int32_t createTime; @@ -7476,6 +7536,10 @@ class ResourceUri : public virtual ::apache::thrift::TBase { } virtual ~ResourceUri() noexcept; + /** + * + * @see ResourceType + */ ResourceType::type resourceType; std::string uri; @@ -7535,8 +7599,16 @@ class Function : public virtual ::apache::thrift::TBase { std::string dbName; std::string className; std::string ownerName; + /** + * + * @see PrincipalType + */ PrincipalType::type ownerType; int32_t createTime; + /** + * + * @see FunctionType + */ FunctionType::type functionType; std::vector resourceUris; std::string catName; @@ -7620,6 +7692,10 @@ class TxnInfo : public virtual ::apache::thrift::TBase { virtual ~TxnInfo() noexcept; int64_t id; + /** + * + * @see TxnState + */ TxnState::type state; std::string user; std::string hostname; @@ -7822,6 +7898,10 @@ class OpenTxnRequest : public virtual ::apache::thrift::TBase { std::string agentInfo; std::string replPolicy; std::vector replSrcTxnIds; + /** + * + * @see TxnType + */ TxnType::type txn_type; _OpenTxnRequest__isset __isset; @@ -7935,6 +8015,10 @@ class AbortTxnRequest : public virtual ::apache::thrift::TBase { virtual ~AbortTxnRequest() noexcept; int64_t txnid; std::string replPolicy; + /** + * + * @see TxnType + */ TxnType::type txn_type; _AbortTxnRequest__isset __isset; @@ -8232,6 +8316,10 @@ class CommitTxnRequest : public virtual ::apache::thrift::TBase { ReplLastIdInfo replLastIdInfo; CommitTxnKeyValue keyValue; bool exclWriteEnabled; + /** + * + * @see TxnType + */ TxnType::type txn_type; _CommitTxnRequest__isset __isset; @@ -8848,11 +8936,23 @@ class LockComponent : public virtual ::apache::thrift::TBase { } virtual ~LockComponent() noexcept; + /** + * + * @see LockType + */ LockType::type type; + /** + * + * @see LockLevel + */ LockLevel::type level; std::string dbname; std::string tablename; std::string partitionname; + /** + * + * @see DataOperationType + */ DataOperationType::type operationType; bool isTransactional; bool isDynamicPartitionWrite; @@ -9011,6 +9111,10 @@ class LockResponse : public virtual ::apache::thrift::TBase { virtual ~LockResponse() noexcept; int64_t lockid; + /** + * + * @see LockState + */ LockState::type state; std::string errorMessage; @@ -9245,7 +9349,15 @@ class ShowLocksResponseElement : public virtual ::apache::thrift::TBase { std::string dbname; std::string tablename; std::string partname; + /** + * + * @see LockState + */ LockState::type state; + /** + * + * @see LockType + */ LockType::type type; int64_t txnid; int64_t lastheartbeat; @@ -9559,6 +9671,10 @@ class CompactionRequest : public virtual ::apache::thrift::TBase { std::string dbname; std::string tablename; std::string partitionname; + /** + * + * @see CompactionType + */ CompactionType::type type; std::string runas; std::map properties; @@ -9657,6 +9773,10 @@ class CompactionInfoStruct : public virtual ::apache::thrift::TBase { std::string dbname; std::string tablename; std::string partitionname; + /** + * + * @see CompactionType + */ CompactionType::type type; std::string runas; std::string properties; @@ -9924,6 +10044,10 @@ class ShowCompactResponseElement : public virtual ::apache::thrift::TBase { std::string dbname; std::string tablename; std::string partitionname; + /** + * + * @see CompactionType + */ CompactionType::type type; std::string state; std::string workerid; @@ -10209,6 +10333,10 @@ class AddDynamicPartitions : public virtual ::apache::thrift::TBase { std::string dbname; std::string tablename; std::vector partitionnames; + /** + * + * @see DataOperationType + */ DataOperationType::type operationType; _AddDynamicPartitions__isset __isset; @@ -11119,6 +11247,10 @@ class GetFileMetadataByExprRequest : public virtual ::apache::thrift::TBase { std::vector fileIds; std::string expr; bool doGetFooters; + /** + * + * @see FileMetadataExprType + */ FileMetadataExprType::type type; _GetFileMetadataByExprRequest__isset __isset; @@ -11287,6 +11419,10 @@ class PutFileMetadataRequest : public virtual ::apache::thrift::TBase { virtual ~PutFileMetadataRequest() noexcept; std::vector fileIds; std::vector metadata; + /** + * + * @see FileMetadataExprType + */ FileMetadataExprType::type type; _PutFileMetadataRequest__isset __isset; @@ -12327,6 +12463,10 @@ class WMResourcePlan : public virtual ::apache::thrift::TBase { virtual ~WMResourcePlan() noexcept; std::string name; + /** + * + * @see WMResourcePlanStatus + */ WMResourcePlanStatus::type status; int32_t queryParallelism; std::string defaultPoolPath; @@ -12403,6 +12543,10 @@ class WMNullableResourcePlan : public virtual ::apache::thrift::TBase { virtual ~WMNullableResourcePlan() noexcept; std::string name; + /** + * + * @see WMResourcePlanStatus + */ WMResourcePlanStatus::type status; int32_t queryParallelism; bool isSetQueryParallelism; @@ -14458,11 +14602,23 @@ class ISchema : public virtual ::apache::thrift::TBase { } virtual ~ISchema() noexcept; + /** + * + * @see SchemaType + */ SchemaType::type schemaType; std::string name; std::string catName; std::string dbName; + /** + * + * @see SchemaCompatibility + */ SchemaCompatibility::type compatibility; + /** + * + * @see SchemaValidation + */ SchemaValidation::type validationLevel; bool canEvolve; std::string schemaGroup; @@ -14659,6 +14815,10 @@ class SchemaVersion : public virtual ::apache::thrift::TBase { int32_t version; int64_t createdAt; std::vector cols; + /** + * + * @see SchemaVersionState + */ SchemaVersionState::type state; std::string description; std::string schemaText; @@ -14954,6 +15114,10 @@ class SetSchemaVersionStateRequest : public virtual ::apache::thrift::TBase { virtual ~SetSchemaVersionStateRequest() noexcept; SchemaVersionDescriptor schemaVersion; + /** + * + * @see SchemaVersionState + */ SchemaVersionState::type state; _SetSchemaVersionStateRequest__isset __isset; @@ -15266,6 +15430,10 @@ class CreateDatabaseRequest : public virtual ::apache::thrift::TBase { std::map parameters; PrincipalPrivilegeSet privileges; std::string ownerName; + /** + * + * @see PrincipalType + */ PrincipalType::type ownerType; std::string catalogName; int32_t createTime; @@ -15679,6 +15847,10 @@ class ScheduledQueryMaintenanceRequest : public virtual ::apache::thrift::TBase } virtual ~ScheduledQueryMaintenanceRequest() noexcept; + /** + * + * @see ScheduledQueryMaintenanceRequestType + */ ScheduledQueryMaintenanceRequestType::type type; ScheduledQuery scheduledQuery; @@ -15725,6 +15897,10 @@ class ScheduledQueryProgressInfo : public virtual ::apache::thrift::TBase { virtual ~ScheduledQueryProgressInfo() noexcept; int64_t scheduledExecutionId; + /** + * + * @see QueryState + */ QueryState::type state; std::string executorQueryId; std::string errorMessage; @@ -16131,6 +16307,10 @@ class GetPartitionsFilterSpec : public virtual ::apache::thrift::TBase { } virtual ~GetPartitionsFilterSpec() noexcept; + /** + * + * @see PartitionFilterMode + */ PartitionFilterMode::type filterMode; std::vector filters; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AbortTxnRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AbortTxnRequest.java index c6ec674e008a..2c5a58fbc15d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AbortTxnRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AbortTxnRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AbortTxnRequest 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("AbortTxnRequest"); @@ -288,8 +288,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AbortTxnRequest) return this.equals((AbortTxnRequest)that); return false; @@ -356,7 +354,7 @@ public int compareTo(AbortTxnRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTxnid()).compareTo(other.isSetTxnid()); + lastComparison = java.lang.Boolean.compare(isSetTxnid(), other.isSetTxnid()); if (lastComparison != 0) { return lastComparison; } @@ -366,7 +364,7 @@ public int compareTo(AbortTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetReplPolicy()).compareTo(other.isSetReplPolicy()); + lastComparison = java.lang.Boolean.compare(isSetReplPolicy(), other.isSetReplPolicy()); if (lastComparison != 0) { return lastComparison; } @@ -376,7 +374,7 @@ public int compareTo(AbortTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxn_type()).compareTo(other.isSetTxn_type()); + lastComparison = java.lang.Boolean.compare(isSetTxn_type(), other.isSetTxn_type()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AbortTxnsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AbortTxnsRequest.java index 80378abac709..da7ddfc75a9c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AbortTxnsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AbortTxnsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AbortTxnsRequest 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("AbortTxnsRequest"); @@ -196,8 +196,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AbortTxnsRequest) return this.equals((AbortTxnsRequest)that); return false; @@ -240,7 +238,7 @@ public int compareTo(AbortTxnsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTxn_ids()).compareTo(other.isSetTxn_ids()); + lastComparison = java.lang.Boolean.compare(isSetTxn_ids(), other.isSetTxn_ids()); if (lastComparison != 0) { return lastComparison; } @@ -398,7 +396,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AbortTxnsRequest st public void read(org.apache.thrift.protocol.TProtocol prot, AbortTxnsRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list713 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TList _list713 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); struct.txn_ids = new java.util.ArrayList(_list713.size); long _elem714; for (int _i715 = 0; _i715 < _list713.size; ++_i715) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddCheckConstraintRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddCheckConstraintRequest.java index cf4252eefaf2..7a3620dcb286 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddCheckConstraintRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddCheckConstraintRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AddCheckConstraintRequest 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("AddCheckConstraintRequest"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AddCheckConstraintRequest) return this.equals((AddCheckConstraintRequest)that); return false; @@ -243,7 +241,7 @@ public int compareTo(AddCheckConstraintRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCheckConstraintCols()).compareTo(other.isSetCheckConstraintCols()); + lastComparison = java.lang.Boolean.compare(isSetCheckConstraintCols(), other.isSetCheckConstraintCols()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AddCheckConstraintR public void read(org.apache.thrift.protocol.TProtocol prot, AddCheckConstraintRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list493 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list493 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.checkConstraintCols = new java.util.ArrayList(_list493.size); @org.apache.thrift.annotation.Nullable SQLCheckConstraint _elem494; for (int _i495 = 0; _i495 < _list493.size; ++_i495) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddDefaultConstraintRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddDefaultConstraintRequest.java index 0cbe5b203496..bd8c8799bb2e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddDefaultConstraintRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddDefaultConstraintRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AddDefaultConstraintRequest 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("AddDefaultConstraintRequest"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AddDefaultConstraintRequest) return this.equals((AddDefaultConstraintRequest)that); return false; @@ -243,7 +241,7 @@ public int compareTo(AddDefaultConstraintRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDefaultConstraintCols()).compareTo(other.isSetDefaultConstraintCols()); + lastComparison = java.lang.Boolean.compare(isSetDefaultConstraintCols(), other.isSetDefaultConstraintCols()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AddDefaultConstrain public void read(org.apache.thrift.protocol.TProtocol prot, AddDefaultConstraintRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list485 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list485 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.defaultConstraintCols = new java.util.ArrayList(_list485.size); @org.apache.thrift.annotation.Nullable SQLDefaultConstraint _elem486; for (int _i487 = 0; _i487 < _list485.size; ++_i487) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddDynamicPartitions.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddDynamicPartitions.java index e2d8e15a269f..f9d1c243bb9d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddDynamicPartitions.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddDynamicPartitions.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AddDynamicPartitions 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("AddDynamicPartitions"); @@ -460,8 +460,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AddDynamicPartitions) return this.equals((AddDynamicPartitions)that); return false; @@ -565,7 +563,7 @@ public int compareTo(AddDynamicPartitions other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTxnid()).compareTo(other.isSetTxnid()); + lastComparison = java.lang.Boolean.compare(isSetTxnid(), other.isSetTxnid()); if (lastComparison != 0) { return lastComparison; } @@ -575,7 +573,7 @@ public int compareTo(AddDynamicPartitions other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteid()).compareTo(other.isSetWriteid()); + lastComparison = java.lang.Boolean.compare(isSetWriteid(), other.isSetWriteid()); if (lastComparison != 0) { return lastComparison; } @@ -585,7 +583,7 @@ public int compareTo(AddDynamicPartitions other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -595,7 +593,7 @@ public int compareTo(AddDynamicPartitions other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTablename()).compareTo(other.isSetTablename()); + lastComparison = java.lang.Boolean.compare(isSetTablename(), other.isSetTablename()); if (lastComparison != 0) { return lastComparison; } @@ -605,7 +603,7 @@ public int compareTo(AddDynamicPartitions other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionnames()).compareTo(other.isSetPartitionnames()); + lastComparison = java.lang.Boolean.compare(isSetPartitionnames(), other.isSetPartitionnames()); if (lastComparison != 0) { return lastComparison; } @@ -615,7 +613,7 @@ public int compareTo(AddDynamicPartitions other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationType()).compareTo(other.isSetOperationType()); + lastComparison = java.lang.Boolean.compare(isSetOperationType(), other.isSetOperationType()); if (lastComparison != 0) { return lastComparison; } @@ -908,7 +906,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, AddDynamicPartitions struct.tablename = iprot.readString(); struct.setTablenameIsSet(true); { - org.apache.thrift.protocol.TList _list859 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list859 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partitionnames = new java.util.ArrayList(_list859.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem860; for (int _i861 = 0; _i861 < _list859.size; ++_i861) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddForeignKeyRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddForeignKeyRequest.java index c458a79d70c9..1f9790873956 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddForeignKeyRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddForeignKeyRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AddForeignKeyRequest 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("AddForeignKeyRequest"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AddForeignKeyRequest) return this.equals((AddForeignKeyRequest)that); return false; @@ -243,7 +241,7 @@ public int compareTo(AddForeignKeyRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetForeignKeyCols()).compareTo(other.isSetForeignKeyCols()); + lastComparison = java.lang.Boolean.compare(isSetForeignKeyCols(), other.isSetForeignKeyCols()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AddForeignKeyReques public void read(org.apache.thrift.protocol.TProtocol prot, AddForeignKeyRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list461 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list461 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.foreignKeyCols = new java.util.ArrayList(_list461.size); @org.apache.thrift.annotation.Nullable SQLForeignKey _elem462; for (int _i463 = 0; _i463 < _list461.size; ++_i463) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddNotNullConstraintRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddNotNullConstraintRequest.java index dc40551483b2..023f23636556 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddNotNullConstraintRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddNotNullConstraintRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AddNotNullConstraintRequest 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("AddNotNullConstraintRequest"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AddNotNullConstraintRequest) return this.equals((AddNotNullConstraintRequest)that); return false; @@ -243,7 +241,7 @@ public int compareTo(AddNotNullConstraintRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNotNullConstraintCols()).compareTo(other.isSetNotNullConstraintCols()); + lastComparison = java.lang.Boolean.compare(isSetNotNullConstraintCols(), other.isSetNotNullConstraintCols()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AddNotNullConstrain public void read(org.apache.thrift.protocol.TProtocol prot, AddNotNullConstraintRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list477 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list477 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.notNullConstraintCols = new java.util.ArrayList(_list477.size); @org.apache.thrift.annotation.Nullable SQLNotNullConstraint _elem478; for (int _i479 = 0; _i479 < _list477.size; ++_i479) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPackageRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPackageRequest.java index 7fdff93956e9..88e8e7007612 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPackageRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPackageRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AddPackageRequest 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("AddPackageRequest"); @@ -428,8 +428,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AddPackageRequest) return this.equals((AddPackageRequest)that); return false; @@ -537,7 +535,7 @@ public int compareTo(AddPackageRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -547,7 +545,7 @@ public int compareTo(AddPackageRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -557,7 +555,7 @@ public int compareTo(AddPackageRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPackageName()).compareTo(other.isSetPackageName()); + lastComparison = java.lang.Boolean.compare(isSetPackageName(), other.isSetPackageName()); if (lastComparison != 0) { return lastComparison; } @@ -567,7 +565,7 @@ public int compareTo(AddPackageRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerName()).compareTo(other.isSetOwnerName()); + lastComparison = java.lang.Boolean.compare(isSetOwnerName(), other.isSetOwnerName()); if (lastComparison != 0) { return lastComparison; } @@ -577,7 +575,7 @@ public int compareTo(AddPackageRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHeader()).compareTo(other.isSetHeader()); + lastComparison = java.lang.Boolean.compare(isSetHeader(), other.isSetHeader()); if (lastComparison != 0) { return lastComparison; } @@ -587,7 +585,7 @@ public int compareTo(AddPackageRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBody()).compareTo(other.isSetBody()); + lastComparison = java.lang.Boolean.compare(isSetBody(), other.isSetBody()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPartitionsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPartitionsRequest.java index c412125db0a2..14158b7bdcf0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPartitionsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPartitionsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AddPartitionsRequest 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("AddPartitionsRequest"); @@ -495,8 +495,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AddPartitionsRequest) return this.equals((AddPartitionsRequest)that); return false; @@ -615,7 +613,7 @@ public int compareTo(AddPartitionsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -625,7 +623,7 @@ public int compareTo(AddPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -635,7 +633,7 @@ public int compareTo(AddPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParts()).compareTo(other.isSetParts()); + lastComparison = java.lang.Boolean.compare(isSetParts(), other.isSetParts()); if (lastComparison != 0) { return lastComparison; } @@ -645,7 +643,7 @@ public int compareTo(AddPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIfNotExists()).compareTo(other.isSetIfNotExists()); + lastComparison = java.lang.Boolean.compare(isSetIfNotExists(), other.isSetIfNotExists()); if (lastComparison != 0) { return lastComparison; } @@ -655,7 +653,7 @@ public int compareTo(AddPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNeedResult()).compareTo(other.isSetNeedResult()); + lastComparison = java.lang.Boolean.compare(isSetNeedResult(), other.isSetNeedResult()); if (lastComparison != 0) { return lastComparison; } @@ -665,7 +663,7 @@ public int compareTo(AddPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -675,7 +673,7 @@ public int compareTo(AddPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -1001,7 +999,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, AddPartitionsRequest struct.tblName = iprot.readString(); struct.setTblNameIsSet(true); { - org.apache.thrift.protocol.TList _list575 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list575 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.parts = new java.util.ArrayList(_list575.size); @org.apache.thrift.annotation.Nullable Partition _elem576; for (int _i577 = 0; _i577 < _list575.size; ++_i577) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPartitionsResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPartitionsResult.java index 30b4035c7e05..94cbb5070e87 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPartitionsResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPartitionsResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AddPartitionsResult 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("AddPartitionsResult"); @@ -241,8 +241,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AddPartitionsResult) return this.equals((AddPartitionsResult)that); return false; @@ -298,7 +296,7 @@ public int compareTo(AddPartitionsResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitions()).compareTo(other.isSetPartitions()); + lastComparison = java.lang.Boolean.compare(isSetPartitions(), other.isSetPartitions()); if (lastComparison != 0) { return lastComparison; } @@ -308,7 +306,7 @@ public int compareTo(AddPartitionsResult other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsStatsCompliant()).compareTo(other.isSetIsStatsCompliant()); + lastComparison = java.lang.Boolean.compare(isSetIsStatsCompliant(), other.isSetIsStatsCompliant()); if (lastComparison != 0) { return lastComparison; } @@ -503,7 +501,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, AddPartitionsResult java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list567 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list567 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitions = new java.util.ArrayList(_list567.size); @org.apache.thrift.annotation.Nullable Partition _elem568; for (int _i569 = 0; _i569 < _list567.size; ++_i569) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPrimaryKeyRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPrimaryKeyRequest.java index 6e35ef2ab19b..86ef1ead39d2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPrimaryKeyRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddPrimaryKeyRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AddPrimaryKeyRequest 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("AddPrimaryKeyRequest"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AddPrimaryKeyRequest) return this.equals((AddPrimaryKeyRequest)that); return false; @@ -243,7 +241,7 @@ public int compareTo(AddPrimaryKeyRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPrimaryKeyCols()).compareTo(other.isSetPrimaryKeyCols()); + lastComparison = java.lang.Boolean.compare(isSetPrimaryKeyCols(), other.isSetPrimaryKeyCols()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AddPrimaryKeyReques public void read(org.apache.thrift.protocol.TProtocol prot, AddPrimaryKeyRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list453 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list453 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.primaryKeyCols = new java.util.ArrayList(_list453.size); @org.apache.thrift.annotation.Nullable SQLPrimaryKey _elem454; for (int _i455 = 0; _i455 < _list453.size; ++_i455) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddUniqueConstraintRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddUniqueConstraintRequest.java index 6170b218091e..55439c582dc7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddUniqueConstraintRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddUniqueConstraintRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AddUniqueConstraintRequest 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("AddUniqueConstraintRequest"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AddUniqueConstraintRequest) return this.equals((AddUniqueConstraintRequest)that); return false; @@ -243,7 +241,7 @@ public int compareTo(AddUniqueConstraintRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetUniqueConstraintCols()).compareTo(other.isSetUniqueConstraintCols()); + lastComparison = java.lang.Boolean.compare(isSetUniqueConstraintCols(), other.isSetUniqueConstraintCols()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AddUniqueConstraint public void read(org.apache.thrift.protocol.TProtocol prot, AddUniqueConstraintRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list469 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list469 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.uniqueConstraintCols = new java.util.ArrayList(_list469.size); @org.apache.thrift.annotation.Nullable SQLUniqueConstraint _elem470; for (int _i471 = 0; _i471 < _list469.size; ++_i471) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AggrStats.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AggrStats.java index e35533b876a9..3db7ff6ea15d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AggrStats.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AggrStats.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AggrStats 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("AggrStats"); @@ -297,8 +297,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AggrStats) return this.equals((AggrStats)that); return false; @@ -365,7 +363,7 @@ public int compareTo(AggrStats other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetColStats()).compareTo(other.isSetColStats()); + lastComparison = java.lang.Boolean.compare(isSetColStats(), other.isSetColStats()); if (lastComparison != 0) { return lastComparison; } @@ -375,7 +373,7 @@ public int compareTo(AggrStats other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartsFound()).compareTo(other.isSetPartsFound()); + lastComparison = java.lang.Boolean.compare(isSetPartsFound(), other.isSetPartsFound()); if (lastComparison != 0) { return lastComparison; } @@ -385,7 +383,7 @@ public int compareTo(AggrStats other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsStatsCompliant()).compareTo(other.isSetIsStatsCompliant()); + lastComparison = java.lang.Boolean.compare(isSetIsStatsCompliant(), other.isSetIsStatsCompliant()); if (lastComparison != 0) { return lastComparison; } @@ -593,7 +591,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AggrStats struct) t public void read(org.apache.thrift.protocol.TProtocol prot, AggrStats struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list361 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list361 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.colStats = new java.util.ArrayList(_list361.size); @org.apache.thrift.annotation.Nullable ColumnStatisticsObj _elem362; for (int _i363 = 0; _i363 < _list361.size; ++_i363) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllTableConstraintsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllTableConstraintsRequest.java index f92851e821df..1c561bb50e07 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllTableConstraintsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllTableConstraintsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AllTableConstraintsRequest 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("AllTableConstraintsRequest"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AllTableConstraintsRequest) return this.equals((AllTableConstraintsRequest)that); return false; @@ -348,7 +346,7 @@ public int compareTo(AllTableConstraintsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(AllTableConstraintsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(AllTableConstraintsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllTableConstraintsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllTableConstraintsResponse.java index 11c72db0cc1c..4aa0a12665c6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllTableConstraintsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllTableConstraintsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AllTableConstraintsResponse 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("AllTableConstraintsResponse"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AllTableConstraintsResponse) return this.equals((AllTableConstraintsResponse)that); return false; @@ -222,7 +220,7 @@ public int compareTo(AllTableConstraintsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetAllTableConstraints()).compareTo(other.isSetAllTableConstraints()); + lastComparison = java.lang.Boolean.compare(isSetAllTableConstraints(), other.isSetAllTableConstraints()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsRequest.java index 4ad9711008fa..85169c9b700a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AllocateTableWriteIdsRequest 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("AllocateTableWriteIdsRequest"); @@ -412,8 +412,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AllocateTableWriteIdsRequest) return this.equals((AllocateTableWriteIdsRequest)that); return false; @@ -508,7 +506,7 @@ public int compareTo(AllocateTableWriteIdsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -518,7 +516,7 @@ public int compareTo(AllocateTableWriteIdsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -528,7 +526,7 @@ public int compareTo(AllocateTableWriteIdsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxnIds()).compareTo(other.isSetTxnIds()); + lastComparison = java.lang.Boolean.compare(isSetTxnIds(), other.isSetTxnIds()); if (lastComparison != 0) { return lastComparison; } @@ -538,7 +536,7 @@ public int compareTo(AllocateTableWriteIdsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetReplPolicy()).compareTo(other.isSetReplPolicy()); + lastComparison = java.lang.Boolean.compare(isSetReplPolicy(), other.isSetReplPolicy()); if (lastComparison != 0) { return lastComparison; } @@ -548,7 +546,7 @@ public int compareTo(AllocateTableWriteIdsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSrcTxnToWriteIdList()).compareTo(other.isSetSrcTxnToWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetSrcTxnToWriteIdList(), other.isSetSrcTxnToWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -857,7 +855,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, AllocateTableWriteId java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list774 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TList _list774 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); struct.txnIds = new java.util.ArrayList(_list774.size); long _elem775; for (int _i776 = 0; _i776 < _list774.size; ++_i776) @@ -874,7 +872,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, AllocateTableWriteId } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list777 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list777 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.srcTxnToWriteIdList = new java.util.ArrayList(_list777.size); @org.apache.thrift.annotation.Nullable TxnToWriteId _elem778; for (int _i779 = 0; _i779 < _list777.size; ++_i779) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsResponse.java index e2b42a7db6bd..5aa073a4f0d4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AllocateTableWriteIdsResponse 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("AllocateTableWriteIdsResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AllocateTableWriteIdsResponse) return this.equals((AllocateTableWriteIdsResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(AllocateTableWriteIdsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTxnToWriteIds()).compareTo(other.isSetTxnToWriteIds()); + lastComparison = java.lang.Boolean.compare(isSetTxnToWriteIds(), other.isSetTxnToWriteIds()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AllocateTableWriteI public void read(org.apache.thrift.protocol.TProtocol prot, AllocateTableWriteIdsResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list785 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list785 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.txnToWriteIds = new java.util.ArrayList(_list785.size); @org.apache.thrift.annotation.Nullable TxnToWriteId _elem786; for (int _i787 = 0; _i787 < _list785.size; ++_i787) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlreadyExistsException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlreadyExistsException.java index 72893501321f..416c2e3a8dee 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlreadyExistsException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlreadyExistsException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AlreadyExistsException 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("AlreadyExistsException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AlreadyExistsException) return this.equals((AlreadyExistsException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(AlreadyExistsException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterCatalogRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterCatalogRequest.java index 4fe0fd0485a0..bdbbc01f8cbc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterCatalogRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AlterCatalogRequest 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("AlterCatalogRequest"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AlterCatalogRequest) return this.equals((AlterCatalogRequest)that); return false; @@ -285,7 +283,7 @@ public int compareTo(AlterCatalogRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -295,7 +293,7 @@ public int compareTo(AlterCatalogRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNewCat()).compareTo(other.isSetNewCat()); + lastComparison = java.lang.Boolean.compare(isSetNewCat(), other.isSetNewCat()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterISchemaRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterISchemaRequest.java index 79075ee32811..3d22bc538e7a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterISchemaRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterISchemaRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AlterISchemaRequest 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("AlterISchemaRequest"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AlterISchemaRequest) return this.equals((AlterISchemaRequest)that); return false; @@ -285,7 +283,7 @@ public int compareTo(AlterISchemaRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -295,7 +293,7 @@ public int compareTo(AlterISchemaRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNewSchema()).compareTo(other.isSetNewSchema()); + lastComparison = java.lang.Boolean.compare(isSetNewSchema(), other.isSetNewSchema()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterPartitionsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterPartitionsRequest.java index c248c18b1a50..c95c62c04e27 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterPartitionsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterPartitionsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AlterPartitionsRequest 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("AlterPartitionsRequest"); @@ -494,8 +494,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AlterPartitionsRequest) return this.equals((AlterPartitionsRequest)that); return false; @@ -616,7 +614,7 @@ public int compareTo(AlterPartitionsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -626,7 +624,7 @@ public int compareTo(AlterPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -636,7 +634,7 @@ public int compareTo(AlterPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -646,7 +644,7 @@ public int compareTo(AlterPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitions()).compareTo(other.isSetPartitions()); + lastComparison = java.lang.Boolean.compare(isSetPartitions(), other.isSetPartitions()); if (lastComparison != 0) { return lastComparison; } @@ -656,7 +654,7 @@ public int compareTo(AlterPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironmentContext()).compareTo(other.isSetEnvironmentContext()); + lastComparison = java.lang.Boolean.compare(isSetEnvironmentContext(), other.isSetEnvironmentContext()); if (lastComparison != 0) { return lastComparison; } @@ -666,7 +664,7 @@ public int compareTo(AlterPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteId()).compareTo(other.isSetWriteId()); + lastComparison = java.lang.Boolean.compare(isSetWriteId(), other.isSetWriteId()); if (lastComparison != 0) { return lastComparison; } @@ -676,7 +674,7 @@ public int compareTo(AlterPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -1017,7 +1015,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, AlterPartitionsReque struct.tableName = iprot.readString(); struct.setTableNameIsSet(true); { - org.apache.thrift.protocol.TList _list1241 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1241 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitions = new java.util.ArrayList(_list1241.size); @org.apache.thrift.annotation.Nullable Partition _elem1242; for (int _i1243 = 0; _i1243 < _list1241.size; ++_i1243) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterPartitionsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterPartitionsResponse.java index f5dc27bffd1e..45c5da31ffa7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterPartitionsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterPartitionsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AlterPartitionsResponse 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("AlterPartitionsResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AlterPartitionsResponse) return this.equals((AlterPartitionsResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterTableRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterTableRequest.java index fcf8a501fca0..a5727e877a63 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterTableRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterTableRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AlterTableRequest 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("AlterTableRequest"); @@ -587,8 +587,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AlterTableRequest) return this.equals((AlterTableRequest)that); return false; @@ -735,7 +733,7 @@ public int compareTo(AlterTableRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -745,7 +743,7 @@ public int compareTo(AlterTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -755,7 +753,7 @@ public int compareTo(AlterTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -765,7 +763,7 @@ public int compareTo(AlterTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable()).compareTo(other.isSetTable()); + lastComparison = java.lang.Boolean.compare(isSetTable(), other.isSetTable()); if (lastComparison != 0) { return lastComparison; } @@ -775,7 +773,7 @@ public int compareTo(AlterTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironmentContext()).compareTo(other.isSetEnvironmentContext()); + lastComparison = java.lang.Boolean.compare(isSetEnvironmentContext(), other.isSetEnvironmentContext()); if (lastComparison != 0) { return lastComparison; } @@ -785,7 +783,7 @@ public int compareTo(AlterTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteId()).compareTo(other.isSetWriteId()); + lastComparison = java.lang.Boolean.compare(isSetWriteId(), other.isSetWriteId()); if (lastComparison != 0) { return lastComparison; } @@ -795,7 +793,7 @@ public int compareTo(AlterTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -805,7 +803,7 @@ public int compareTo(AlterTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorCapabilities()).compareTo(other.isSetProcessorCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetProcessorCapabilities(), other.isSetProcessorCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -815,7 +813,7 @@ public int compareTo(AlterTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorIdentifier()).compareTo(other.isSetProcessorIdentifier()); + lastComparison = java.lang.Boolean.compare(isSetProcessorIdentifier(), other.isSetProcessorIdentifier()); if (lastComparison != 0) { return lastComparison; } @@ -1243,7 +1241,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, AlterTableRequest st } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1257 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1257 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.processorCapabilities = new java.util.ArrayList(_list1257.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1258; for (int _i1259 = 0; _i1259 < _list1257.size; ++_i1259) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterTableResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterTableResponse.java index 8a80eacd20b0..c5698d86c18e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterTableResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AlterTableResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AlterTableResponse 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("AlterTableResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof AlterTableResponse) return this.equals((AlterTableResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/BasicTxnInfo.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/BasicTxnInfo.java index 15b3a0770e56..6a61638a21bc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/BasicTxnInfo.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/BasicTxnInfo.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class BasicTxnInfo 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("BasicTxnInfo"); @@ -416,8 +416,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof BasicTxnInfo) return this.equals((BasicTxnInfo)that); return false; @@ -523,7 +521,7 @@ public int compareTo(BasicTxnInfo other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetIsnull()).compareTo(other.isSetIsnull()); + lastComparison = java.lang.Boolean.compare(isSetIsnull(), other.isSetIsnull()); if (lastComparison != 0) { return lastComparison; } @@ -533,7 +531,7 @@ public int compareTo(BasicTxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTime()).compareTo(other.isSetTime()); + lastComparison = java.lang.Boolean.compare(isSetTime(), other.isSetTime()); if (lastComparison != 0) { return lastComparison; } @@ -543,7 +541,7 @@ public int compareTo(BasicTxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxnid()).compareTo(other.isSetTxnid()); + lastComparison = java.lang.Boolean.compare(isSetTxnid(), other.isSetTxnid()); if (lastComparison != 0) { return lastComparison; } @@ -553,7 +551,7 @@ public int compareTo(BasicTxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -563,7 +561,7 @@ public int compareTo(BasicTxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTablename()).compareTo(other.isSetTablename()); + lastComparison = java.lang.Boolean.compare(isSetTablename(), other.isSetTablename()); if (lastComparison != 0) { return lastComparison; } @@ -573,7 +571,7 @@ public int compareTo(BasicTxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionname()).compareTo(other.isSetPartitionname()); + lastComparison = java.lang.Boolean.compare(isSetPartitionname(), other.isSetPartitionname()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/BinaryColumnStatsData.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/BinaryColumnStatsData.java index bed6889d81bf..413b7922216b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/BinaryColumnStatsData.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/BinaryColumnStatsData.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class BinaryColumnStatsData 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("BinaryColumnStatsData"); @@ -338,8 +338,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof BinaryColumnStatsData) return this.equals((BinaryColumnStatsData)that); return false; @@ -415,7 +413,7 @@ public int compareTo(BinaryColumnStatsData other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMaxColLen()).compareTo(other.isSetMaxColLen()); + lastComparison = java.lang.Boolean.compare(isSetMaxColLen(), other.isSetMaxColLen()); if (lastComparison != 0) { return lastComparison; } @@ -425,7 +423,7 @@ public int compareTo(BinaryColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAvgColLen()).compareTo(other.isSetAvgColLen()); + lastComparison = java.lang.Boolean.compare(isSetAvgColLen(), other.isSetAvgColLen()); if (lastComparison != 0) { return lastComparison; } @@ -435,7 +433,7 @@ public int compareTo(BinaryColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumNulls()).compareTo(other.isSetNumNulls()); + lastComparison = java.lang.Boolean.compare(isSetNumNulls(), other.isSetNumNulls()); if (lastComparison != 0) { return lastComparison; } @@ -445,7 +443,7 @@ public int compareTo(BinaryColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBitVectors()).compareTo(other.isSetBitVectors()); + lastComparison = java.lang.Boolean.compare(isSetBitVectors(), other.isSetBitVectors()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/BooleanColumnStatsData.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/BooleanColumnStatsData.java index e57883126b2f..8a2d33891eb5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/BooleanColumnStatsData.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/BooleanColumnStatsData.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class BooleanColumnStatsData 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("BooleanColumnStatsData"); @@ -338,8 +338,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof BooleanColumnStatsData) return this.equals((BooleanColumnStatsData)that); return false; @@ -415,7 +413,7 @@ public int compareTo(BooleanColumnStatsData other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNumTrues()).compareTo(other.isSetNumTrues()); + lastComparison = java.lang.Boolean.compare(isSetNumTrues(), other.isSetNumTrues()); if (lastComparison != 0) { return lastComparison; } @@ -425,7 +423,7 @@ public int compareTo(BooleanColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumFalses()).compareTo(other.isSetNumFalses()); + lastComparison = java.lang.Boolean.compare(isSetNumFalses(), other.isSetNumFalses()); if (lastComparison != 0) { return lastComparison; } @@ -435,7 +433,7 @@ public int compareTo(BooleanColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumNulls()).compareTo(other.isSetNumNulls()); + lastComparison = java.lang.Boolean.compare(isSetNumNulls(), other.isSetNumNulls()); if (lastComparison != 0) { return lastComparison; } @@ -445,7 +443,7 @@ public int compareTo(BooleanColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBitVectors()).compareTo(other.isSetBitVectors()); + lastComparison = java.lang.Boolean.compare(isSetBitVectors(), other.isSetBitVectors()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CacheFileMetadataRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CacheFileMetadataRequest.java index e54c671f5350..0f74a0b471f1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CacheFileMetadataRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CacheFileMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CacheFileMetadataRequest 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("CacheFileMetadataRequest"); @@ -325,8 +325,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CacheFileMetadataRequest) return this.equals((CacheFileMetadataRequest)that); return false; @@ -408,7 +406,7 @@ public int compareTo(CacheFileMetadataRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -418,7 +416,7 @@ public int compareTo(CacheFileMetadataRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -428,7 +426,7 @@ public int compareTo(CacheFileMetadataRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartName()).compareTo(other.isSetPartName()); + lastComparison = java.lang.Boolean.compare(isSetPartName(), other.isSetPartName()); if (lastComparison != 0) { return lastComparison; } @@ -438,7 +436,7 @@ public int compareTo(CacheFileMetadataRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsAllParts()).compareTo(other.isSetIsAllParts()); + lastComparison = java.lang.Boolean.compare(isSetIsAllParts(), other.isSetIsAllParts()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CacheFileMetadataResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CacheFileMetadataResult.java index cf11f367f276..b5f5549c61bb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CacheFileMetadataResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CacheFileMetadataResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CacheFileMetadataResult 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("CacheFileMetadataResult"); @@ -179,8 +179,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CacheFileMetadataResult) return this.equals((CacheFileMetadataResult)that); return false; @@ -221,7 +219,7 @@ public int compareTo(CacheFileMetadataResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetIsSupported()).compareTo(other.isSetIsSupported()); + lastComparison = java.lang.Boolean.compare(isSetIsSupported(), other.isSetIsSupported()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Catalog.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Catalog.java index 7ce571eef1c3..eebab6f24914 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Catalog.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Catalog.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Catalog 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("Catalog"); @@ -325,8 +325,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Catalog) return this.equals((Catalog)that); return false; @@ -408,7 +406,7 @@ public int compareTo(Catalog other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -418,7 +416,7 @@ public int compareTo(Catalog other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDescription()).compareTo(other.isSetDescription()); + lastComparison = java.lang.Boolean.compare(isSetDescription(), other.isSetDescription()); if (lastComparison != 0) { return lastComparison; } @@ -428,7 +426,7 @@ public int compareTo(Catalog other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLocationUri()).compareTo(other.isSetLocationUri()); + lastComparison = java.lang.Boolean.compare(isSetLocationUri(), other.isSetLocationUri()); if (lastComparison != 0) { return lastComparison; } @@ -438,7 +436,7 @@ public int compareTo(Catalog other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreateTime()).compareTo(other.isSetCreateTime()); + lastComparison = java.lang.Boolean.compare(isSetCreateTime(), other.isSetCreateTime()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CheckConstraintsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CheckConstraintsRequest.java index ce2da5e8971f..7356df22bc10 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CheckConstraintsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CheckConstraintsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CheckConstraintsRequest 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("CheckConstraintsRequest"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CheckConstraintsRequest) return this.equals((CheckConstraintsRequest)that); return false; @@ -348,7 +346,7 @@ public int compareTo(CheckConstraintsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(CheckConstraintsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(CheckConstraintsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CheckConstraintsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CheckConstraintsResponse.java index 21779b00cd19..4472e3126dcf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CheckConstraintsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CheckConstraintsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CheckConstraintsResponse 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("CheckConstraintsResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CheckConstraintsResponse) return this.equals((CheckConstraintsResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(CheckConstraintsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCheckConstraints()).compareTo(other.isSetCheckConstraints()); + lastComparison = java.lang.Boolean.compare(isSetCheckConstraints(), other.isSetCheckConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, CheckConstraintsRes public void read(org.apache.thrift.protocol.TProtocol prot, CheckConstraintsResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list445 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list445 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.checkConstraints = new java.util.ArrayList(_list445.size); @org.apache.thrift.annotation.Nullable SQLCheckConstraint _elem446; for (int _i447 = 0; _i447 < _list445.size; ++_i447) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CheckLockRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CheckLockRequest.java index 87b1c91f5eb1..6d6050c43568 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CheckLockRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CheckLockRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CheckLockRequest 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("CheckLockRequest"); @@ -272,8 +272,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CheckLockRequest) return this.equals((CheckLockRequest)that); return false; @@ -340,7 +338,7 @@ public int compareTo(CheckLockRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetLockid()).compareTo(other.isSetLockid()); + lastComparison = java.lang.Boolean.compare(isSetLockid(), other.isSetLockid()); if (lastComparison != 0) { return lastComparison; } @@ -350,7 +348,7 @@ public int compareTo(CheckLockRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxnid()).compareTo(other.isSetTxnid()); + lastComparison = java.lang.Boolean.compare(isSetTxnid(), other.isSetTxnid()); if (lastComparison != 0) { return lastComparison; } @@ -360,7 +358,7 @@ public int compareTo(CheckLockRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetElapsed_ms()).compareTo(other.isSetElapsed_ms()); + lastComparison = java.lang.Boolean.compare(isSetElapsed_ms(), other.isSetElapsed_ms()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClearFileMetadataRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClearFileMetadataRequest.java index d4dd0f75bd37..6843cd15eb76 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClearFileMetadataRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClearFileMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ClearFileMetadataRequest 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("ClearFileMetadataRequest"); @@ -196,8 +196,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ClearFileMetadataRequest) return this.equals((ClearFileMetadataRequest)that); return false; @@ -240,7 +238,7 @@ public int compareTo(ClearFileMetadataRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFileIds()).compareTo(other.isSetFileIds()); + lastComparison = java.lang.Boolean.compare(isSetFileIds(), other.isSetFileIds()); if (lastComparison != 0) { return lastComparison; } @@ -398,7 +396,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ClearFileMetadataRe public void read(org.apache.thrift.protocol.TProtocol prot, ClearFileMetadataRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list999 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TList _list999 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); struct.fileIds = new java.util.ArrayList(_list999.size); long _elem1000; for (int _i1001 = 0; _i1001 < _list999.size; ++_i1001) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClearFileMetadataResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClearFileMetadataResult.java index 4854386fade0..9cf1f0192d12 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClearFileMetadataResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClearFileMetadataResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ClearFileMetadataResult 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("ClearFileMetadataResult"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ClearFileMetadataResult) return this.equals((ClearFileMetadataResult)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClientCapabilities.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClientCapabilities.java index 210b18094069..83294a823d14 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClientCapabilities.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClientCapabilities.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ClientCapabilities 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("ClientCapabilities"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ClientCapabilities) return this.equals((ClientCapabilities)that); return false; @@ -243,7 +241,7 @@ public int compareTo(ClientCapabilities other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValues()).compareTo(other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); if (lastComparison != 0) { return lastComparison; } @@ -404,7 +402,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ClientCapabilities public void read(org.apache.thrift.protocol.TProtocol prot, ClientCapabilities struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list1015 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, iprot.readI32()); + org.apache.thrift.protocol.TList _list1015 = iprot.readListBegin(org.apache.thrift.protocol.TType.I32); struct.values = new java.util.ArrayList(_list1015.size); @org.apache.thrift.annotation.Nullable ClientCapability _elem1016; for (int _i1017 = 0; _i1017 < _list1015.size; ++_i1017) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClientCapability.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClientCapability.java index cb27d59fc2d8..fd4f5f17ad9b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClientCapability.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClientCapability.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum ClientCapability implements org.apache.thrift.TEnum { TEST_CAPABILITY(1), INSERT_ONLY_TABLES(2); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CmRecycleRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CmRecycleRequest.java index 28d3b8a57327..8b9ea18c2885 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CmRecycleRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CmRecycleRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CmRecycleRequest 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("CmRecycleRequest"); @@ -229,8 +229,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CmRecycleRequest) return this.equals((CmRecycleRequest)that); return false; @@ -284,7 +282,7 @@ public int compareTo(CmRecycleRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDataPath()).compareTo(other.isSetDataPath()); + lastComparison = java.lang.Boolean.compare(isSetDataPath(), other.isSetDataPath()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(CmRecycleRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPurge()).compareTo(other.isSetPurge()); + lastComparison = java.lang.Boolean.compare(isSetPurge(), other.isSetPurge()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CmRecycleResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CmRecycleResponse.java index 212f58feec69..a385fa8e0b6f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CmRecycleResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CmRecycleResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CmRecycleResponse 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("CmRecycleResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CmRecycleResponse) return this.equals((CmRecycleResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatistics.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatistics.java index e60fcbe92a07..95aae2a76ab9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatistics.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatistics.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ColumnStatistics 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("ColumnStatistics"); @@ -346,8 +346,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ColumnStatistics) return this.equals((ColumnStatistics)that); return false; @@ -429,7 +427,7 @@ public int compareTo(ColumnStatistics other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStatsDesc()).compareTo(other.isSetStatsDesc()); + lastComparison = java.lang.Boolean.compare(isSetStatsDesc(), other.isSetStatsDesc()); if (lastComparison != 0) { return lastComparison; } @@ -439,7 +437,7 @@ public int compareTo(ColumnStatistics other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStatsObj()).compareTo(other.isSetStatsObj()); + lastComparison = java.lang.Boolean.compare(isSetStatsObj(), other.isSetStatsObj()); if (lastComparison != 0) { return lastComparison; } @@ -449,7 +447,7 @@ public int compareTo(ColumnStatistics other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsStatsCompliant()).compareTo(other.isSetIsStatsCompliant()); + lastComparison = java.lang.Boolean.compare(isSetIsStatsCompliant(), other.isSetIsStatsCompliant()); if (lastComparison != 0) { return lastComparison; } @@ -459,7 +457,7 @@ public int compareTo(ColumnStatistics other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEngine()).compareTo(other.isSetEngine()); + lastComparison = java.lang.Boolean.compare(isSetEngine(), other.isSetEngine()); if (lastComparison != 0) { return lastComparison; } @@ -711,7 +709,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, ColumnStatistics str struct.statsDesc.read(iprot); struct.setStatsDescIsSet(true); { - org.apache.thrift.protocol.TList _list267 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list267 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.statsObj = new java.util.ArrayList(_list267.size); @org.apache.thrift.annotation.Nullable ColumnStatisticsObj _elem268; for (int _i269 = 0; _i269 < _list267.size; ++_i269) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatisticsData.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatisticsData.java index f61de0e57d60..4d2bc0e1e9ec 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatisticsData.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatisticsData.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ColumnStatisticsData extends org.apache.thrift.TUnion { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("ColumnStatisticsData"); private static final org.apache.thrift.protocol.TField BOOLEAN_STATS_FIELD_DESC = new org.apache.thrift.protocol.TField("booleanStats", org.apache.thrift.protocol.TType.STRUCT, (short)1); @@ -511,9 +511,8 @@ public BooleanColumnStatsData getBooleanStats() { } public void setBooleanStats(BooleanColumnStatsData value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.BOOLEAN_STATS; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.BOOLEAN_STATS"); } public LongColumnStatsData getLongStats() { @@ -525,9 +524,8 @@ public LongColumnStatsData getLongStats() { } public void setLongStats(LongColumnStatsData value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.LONG_STATS; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.LONG_STATS"); } public DoubleColumnStatsData getDoubleStats() { @@ -539,9 +537,8 @@ public DoubleColumnStatsData getDoubleStats() { } public void setDoubleStats(DoubleColumnStatsData value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.DOUBLE_STATS; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.DOUBLE_STATS"); } public StringColumnStatsData getStringStats() { @@ -553,9 +550,8 @@ public StringColumnStatsData getStringStats() { } public void setStringStats(StringColumnStatsData value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.STRING_STATS; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.STRING_STATS"); } public BinaryColumnStatsData getBinaryStats() { @@ -567,9 +563,8 @@ public BinaryColumnStatsData getBinaryStats() { } public void setBinaryStats(BinaryColumnStatsData value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.BINARY_STATS; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.BINARY_STATS"); } public DecimalColumnStatsData getDecimalStats() { @@ -581,9 +576,8 @@ public DecimalColumnStatsData getDecimalStats() { } public void setDecimalStats(DecimalColumnStatsData value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.DECIMAL_STATS; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.DECIMAL_STATS"); } public DateColumnStatsData getDateStats() { @@ -595,9 +589,8 @@ public DateColumnStatsData getDateStats() { } public void setDateStats(DateColumnStatsData value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.DATE_STATS; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.DATE_STATS"); } public TimestampColumnStatsData getTimestampStats() { @@ -609,9 +602,8 @@ public TimestampColumnStatsData getTimestampStats() { } public void setTimestampStats(TimestampColumnStatsData value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.TIMESTAMP_STATS; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.TIMESTAMP_STATS"); } public boolean isSetBooleanStats() { diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatisticsDesc.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatisticsDesc.java index d2cdf6598ef3..093f3858dc2b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatisticsDesc.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatisticsDesc.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ColumnStatisticsDesc 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("ColumnStatisticsDesc"); @@ -422,8 +422,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ColumnStatisticsDesc) return this.equals((ColumnStatisticsDesc)that); return false; @@ -529,7 +527,7 @@ public int compareTo(ColumnStatisticsDesc other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetIsTblLevel()).compareTo(other.isSetIsTblLevel()); + lastComparison = java.lang.Boolean.compare(isSetIsTblLevel(), other.isSetIsTblLevel()); if (lastComparison != 0) { return lastComparison; } @@ -539,7 +537,7 @@ public int compareTo(ColumnStatisticsDesc other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -549,7 +547,7 @@ public int compareTo(ColumnStatisticsDesc other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -559,7 +557,7 @@ public int compareTo(ColumnStatisticsDesc other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartName()).compareTo(other.isSetPartName()); + lastComparison = java.lang.Boolean.compare(isSetPartName(), other.isSetPartName()); if (lastComparison != 0) { return lastComparison; } @@ -569,7 +567,7 @@ public int compareTo(ColumnStatisticsDesc other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLastAnalyzed()).compareTo(other.isSetLastAnalyzed()); + lastComparison = java.lang.Boolean.compare(isSetLastAnalyzed(), other.isSetLastAnalyzed()); if (lastComparison != 0) { return lastComparison; } @@ -579,7 +577,7 @@ public int compareTo(ColumnStatisticsDesc other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatisticsObj.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatisticsObj.java index d412170d48c7..54a361ec311b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatisticsObj.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ColumnStatisticsObj.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ColumnStatisticsObj 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("ColumnStatisticsObj"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ColumnStatisticsObj) return this.equals((ColumnStatisticsObj)that); return false; @@ -348,7 +346,7 @@ public int compareTo(ColumnStatisticsObj other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetColName()).compareTo(other.isSetColName()); + lastComparison = java.lang.Boolean.compare(isSetColName(), other.isSetColName()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(ColumnStatisticsObj other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColType()).compareTo(other.isSetColType()); + lastComparison = java.lang.Boolean.compare(isSetColType(), other.isSetColType()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(ColumnStatisticsObj other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStatsData()).compareTo(other.isSetStatsData()); + lastComparison = java.lang.Boolean.compare(isSetStatsData(), other.isSetStatsData()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnKeyValue.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnKeyValue.java index 017aa8e5c685..37578ceb017e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnKeyValue.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnKeyValue.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CommitTxnKeyValue 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("CommitTxnKeyValue"); @@ -279,8 +279,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CommitTxnKeyValue) return this.equals((CommitTxnKeyValue)that); return false; @@ -347,7 +345,7 @@ public int compareTo(CommitTxnKeyValue other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTableId()).compareTo(other.isSetTableId()); + lastComparison = java.lang.Boolean.compare(isSetTableId(), other.isSetTableId()); if (lastComparison != 0) { return lastComparison; } @@ -357,7 +355,7 @@ public int compareTo(CommitTxnKeyValue other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetKey()).compareTo(other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } @@ -367,7 +365,7 @@ public int compareTo(CommitTxnKeyValue other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValue()).compareTo(other.isSetValue()); + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnRequest.java index bd4b35a079b3..7bce8b6154d1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CommitTxnRequest 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("CommitTxnRequest"); @@ -501,8 +501,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CommitTxnRequest) return this.equals((CommitTxnRequest)that); return false; @@ -621,7 +619,7 @@ public int compareTo(CommitTxnRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTxnid()).compareTo(other.isSetTxnid()); + lastComparison = java.lang.Boolean.compare(isSetTxnid(), other.isSetTxnid()); if (lastComparison != 0) { return lastComparison; } @@ -631,7 +629,7 @@ public int compareTo(CommitTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetReplPolicy()).compareTo(other.isSetReplPolicy()); + lastComparison = java.lang.Boolean.compare(isSetReplPolicy(), other.isSetReplPolicy()); if (lastComparison != 0) { return lastComparison; } @@ -641,7 +639,7 @@ public int compareTo(CommitTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteEventInfos()).compareTo(other.isSetWriteEventInfos()); + lastComparison = java.lang.Boolean.compare(isSetWriteEventInfos(), other.isSetWriteEventInfos()); if (lastComparison != 0) { return lastComparison; } @@ -651,7 +649,7 @@ public int compareTo(CommitTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetReplLastIdInfo()).compareTo(other.isSetReplLastIdInfo()); + lastComparison = java.lang.Boolean.compare(isSetReplLastIdInfo(), other.isSetReplLastIdInfo()); if (lastComparison != 0) { return lastComparison; } @@ -661,7 +659,7 @@ public int compareTo(CommitTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetKeyValue()).compareTo(other.isSetKeyValue()); + lastComparison = java.lang.Boolean.compare(isSetKeyValue(), other.isSetKeyValue()); if (lastComparison != 0) { return lastComparison; } @@ -671,7 +669,7 @@ public int compareTo(CommitTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetExclWriteEnabled()).compareTo(other.isSetExclWriteEnabled()); + lastComparison = java.lang.Boolean.compare(isSetExclWriteEnabled(), other.isSetExclWriteEnabled()); if (lastComparison != 0) { return lastComparison; } @@ -681,7 +679,7 @@ public int compareTo(CommitTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxn_type()).compareTo(other.isSetTxn_type()); + lastComparison = java.lang.Boolean.compare(isSetTxn_type(), other.isSetTxn_type()); if (lastComparison != 0) { return lastComparison; } @@ -1034,7 +1032,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CommitTxnRequest str } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list729 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list729 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.writeEventInfos = new java.util.ArrayList(_list729.size); @org.apache.thrift.annotation.Nullable WriteEventInfo _elem730; for (int _i731 = 0; _i731 < _list729.size; ++_i731) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionInfoStruct.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionInfoStruct.java index ebe38604b01e..b8a175306043 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionInfoStruct.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionInfoStruct.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CompactionInfoStruct 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("CompactionInfoStruct"); @@ -860,8 +860,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CompactionInfoStruct) return this.equals((CompactionInfoStruct)that); return false; @@ -1084,7 +1082,7 @@ public int compareTo(CompactionInfoStruct other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } @@ -1094,7 +1092,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -1104,7 +1102,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTablename()).compareTo(other.isSetTablename()); + lastComparison = java.lang.Boolean.compare(isSetTablename(), other.isSetTablename()); if (lastComparison != 0) { return lastComparison; } @@ -1114,7 +1112,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionname()).compareTo(other.isSetPartitionname()); + lastComparison = java.lang.Boolean.compare(isSetPartitionname(), other.isSetPartitionname()); if (lastComparison != 0) { return lastComparison; } @@ -1124,7 +1122,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -1134,7 +1132,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRunas()).compareTo(other.isSetRunas()); + lastComparison = java.lang.Boolean.compare(isSetRunas(), other.isSetRunas()); if (lastComparison != 0) { return lastComparison; } @@ -1144,7 +1142,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProperties()).compareTo(other.isSetProperties()); + lastComparison = java.lang.Boolean.compare(isSetProperties(), other.isSetProperties()); if (lastComparison != 0) { return lastComparison; } @@ -1154,7 +1152,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetToomanyaborts()).compareTo(other.isSetToomanyaborts()); + lastComparison = java.lang.Boolean.compare(isSetToomanyaborts(), other.isSetToomanyaborts()); if (lastComparison != 0) { return lastComparison; } @@ -1164,7 +1162,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetState()).compareTo(other.isSetState()); + lastComparison = java.lang.Boolean.compare(isSetState(), other.isSetState()); if (lastComparison != 0) { return lastComparison; } @@ -1174,7 +1172,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWorkerId()).compareTo(other.isSetWorkerId()); + lastComparison = java.lang.Boolean.compare(isSetWorkerId(), other.isSetWorkerId()); if (lastComparison != 0) { return lastComparison; } @@ -1184,7 +1182,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStart()).compareTo(other.isSetStart()); + lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); if (lastComparison != 0) { return lastComparison; } @@ -1194,7 +1192,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHighestWriteId()).compareTo(other.isSetHighestWriteId()); + lastComparison = java.lang.Boolean.compare(isSetHighestWriteId(), other.isSetHighestWriteId()); if (lastComparison != 0) { return lastComparison; } @@ -1204,7 +1202,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetErrorMessage()).compareTo(other.isSetErrorMessage()); + lastComparison = java.lang.Boolean.compare(isSetErrorMessage(), other.isSetErrorMessage()); if (lastComparison != 0) { return lastComparison; } @@ -1214,7 +1212,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHasoldabort()).compareTo(other.isSetHasoldabort()); + lastComparison = java.lang.Boolean.compare(isSetHasoldabort(), other.isSetHasoldabort()); if (lastComparison != 0) { return lastComparison; } @@ -1224,7 +1222,7 @@ public int compareTo(CompactionInfoStruct other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnqueueTime()).compareTo(other.isSetEnqueueTime()); + lastComparison = java.lang.Boolean.compare(isSetEnqueueTime(), other.isSetEnqueueTime()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java index 51d460a08dfe..05422c1111a4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CompactionRequest 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("CompactionRequest"); @@ -545,8 +545,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CompactionRequest) return this.equals((CompactionRequest)that); return false; @@ -680,7 +678,7 @@ public int compareTo(CompactionRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -690,7 +688,7 @@ public int compareTo(CompactionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTablename()).compareTo(other.isSetTablename()); + lastComparison = java.lang.Boolean.compare(isSetTablename(), other.isSetTablename()); if (lastComparison != 0) { return lastComparison; } @@ -700,7 +698,7 @@ public int compareTo(CompactionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionname()).compareTo(other.isSetPartitionname()); + lastComparison = java.lang.Boolean.compare(isSetPartitionname(), other.isSetPartitionname()); if (lastComparison != 0) { return lastComparison; } @@ -710,7 +708,7 @@ public int compareTo(CompactionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -720,7 +718,7 @@ public int compareTo(CompactionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRunas()).compareTo(other.isSetRunas()); + lastComparison = java.lang.Boolean.compare(isSetRunas(), other.isSetRunas()); if (lastComparison != 0) { return lastComparison; } @@ -730,7 +728,7 @@ public int compareTo(CompactionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProperties()).compareTo(other.isSetProperties()); + lastComparison = java.lang.Boolean.compare(isSetProperties(), other.isSetProperties()); if (lastComparison != 0) { return lastComparison; } @@ -740,7 +738,7 @@ public int compareTo(CompactionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetInitiatorId()).compareTo(other.isSetInitiatorId()); + lastComparison = java.lang.Boolean.compare(isSetInitiatorId(), other.isSetInitiatorId()); if (lastComparison != 0) { return lastComparison; } @@ -750,7 +748,7 @@ public int compareTo(CompactionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetInitiatorVersion()).compareTo(other.isSetInitiatorVersion()); + lastComparison = java.lang.Boolean.compare(isSetInitiatorVersion(), other.isSetInitiatorVersion()); if (lastComparison != 0) { return lastComparison; } @@ -1137,7 +1135,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CompactionRequest st } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map826 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map826 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.properties = new java.util.HashMap(2*_map826.size); @org.apache.thrift.annotation.Nullable java.lang.String _key827; @org.apache.thrift.annotation.Nullable java.lang.String _val828; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionResponse.java index da9c0738f078..bf0e58d4144d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CompactionResponse 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("CompactionResponse"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CompactionResponse) return this.equals((CompactionResponse)that); return false; @@ -344,7 +342,7 @@ public int compareTo(CompactionResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } @@ -354,7 +352,7 @@ public int compareTo(CompactionResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetState()).compareTo(other.isSetState()); + lastComparison = java.lang.Boolean.compare(isSetState(), other.isSetState()); if (lastComparison != 0) { return lastComparison; } @@ -364,7 +362,7 @@ public int compareTo(CompactionResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAccepted()).compareTo(other.isSetAccepted()); + lastComparison = java.lang.Boolean.compare(isSetAccepted(), other.isSetAccepted()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionType.java index dc596a7bf074..11a9a7a591bb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum CompactionType implements org.apache.thrift.TEnum { MINOR(1), MAJOR(2); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ConfigValSecurityException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ConfigValSecurityException.java index 33f420546d1d..67941c8f8968 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ConfigValSecurityException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ConfigValSecurityException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ConfigValSecurityException 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("ConfigValSecurityException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ConfigValSecurityException) return this.equals((ConfigValSecurityException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(ConfigValSecurityException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateCatalogRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateCatalogRequest.java index 79b0f2342346..d0b95c652c1e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateCatalogRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CreateCatalogRequest 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("CreateCatalogRequest"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CreateCatalogRequest) return this.equals((CreateCatalogRequest)that); return false; @@ -222,7 +220,7 @@ public int compareTo(CreateCatalogRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatalog()).compareTo(other.isSetCatalog()); + lastComparison = java.lang.Boolean.compare(isSetCatalog(), other.isSetCatalog()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateDataConnectorRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateDataConnectorRequest.java index 51824570860c..34339dcb7457 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateDataConnectorRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateDataConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CreateDataConnectorRequest 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("CreateDataConnectorRequest"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CreateDataConnectorRequest) return this.equals((CreateDataConnectorRequest)that); return false; @@ -222,7 +220,7 @@ public int compareTo(CreateDataConnectorRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetConnector()).compareTo(other.isSetConnector()); + lastComparison = java.lang.Boolean.compare(isSetConnector(), other.isSetConnector()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateDatabaseRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateDatabaseRequest.java index 2ccf432f663a..96be6c140fd1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateDatabaseRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CreateDatabaseRequest 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("CreateDatabaseRequest"); @@ -733,8 +733,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CreateDatabaseRequest) return this.equals((CreateDatabaseRequest)that); return false; @@ -920,7 +918,7 @@ public int compareTo(CreateDatabaseRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDatabaseName()).compareTo(other.isSetDatabaseName()); + lastComparison = java.lang.Boolean.compare(isSetDatabaseName(), other.isSetDatabaseName()); if (lastComparison != 0) { return lastComparison; } @@ -930,7 +928,7 @@ public int compareTo(CreateDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDescription()).compareTo(other.isSetDescription()); + lastComparison = java.lang.Boolean.compare(isSetDescription(), other.isSetDescription()); if (lastComparison != 0) { return lastComparison; } @@ -940,7 +938,7 @@ public int compareTo(CreateDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLocationUri()).compareTo(other.isSetLocationUri()); + lastComparison = java.lang.Boolean.compare(isSetLocationUri(), other.isSetLocationUri()); if (lastComparison != 0) { return lastComparison; } @@ -950,7 +948,7 @@ public int compareTo(CreateDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParameters()).compareTo(other.isSetParameters()); + lastComparison = java.lang.Boolean.compare(isSetParameters(), other.isSetParameters()); if (lastComparison != 0) { return lastComparison; } @@ -960,7 +958,7 @@ public int compareTo(CreateDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrivileges()).compareTo(other.isSetPrivileges()); + lastComparison = java.lang.Boolean.compare(isSetPrivileges(), other.isSetPrivileges()); if (lastComparison != 0) { return lastComparison; } @@ -970,7 +968,7 @@ public int compareTo(CreateDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerName()).compareTo(other.isSetOwnerName()); + lastComparison = java.lang.Boolean.compare(isSetOwnerName(), other.isSetOwnerName()); if (lastComparison != 0) { return lastComparison; } @@ -980,7 +978,7 @@ public int compareTo(CreateDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerType()).compareTo(other.isSetOwnerType()); + lastComparison = java.lang.Boolean.compare(isSetOwnerType(), other.isSetOwnerType()); if (lastComparison != 0) { return lastComparison; } @@ -990,7 +988,7 @@ public int compareTo(CreateDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatalogName()).compareTo(other.isSetCatalogName()); + lastComparison = java.lang.Boolean.compare(isSetCatalogName(), other.isSetCatalogName()); if (lastComparison != 0) { return lastComparison; } @@ -1000,7 +998,7 @@ public int compareTo(CreateDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreateTime()).compareTo(other.isSetCreateTime()); + lastComparison = java.lang.Boolean.compare(isSetCreateTime(), other.isSetCreateTime()); if (lastComparison != 0) { return lastComparison; } @@ -1010,7 +1008,7 @@ public int compareTo(CreateDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetManagedLocationUri()).compareTo(other.isSetManagedLocationUri()); + lastComparison = java.lang.Boolean.compare(isSetManagedLocationUri(), other.isSetManagedLocationUri()); if (lastComparison != 0) { return lastComparison; } @@ -1020,7 +1018,7 @@ public int compareTo(CreateDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -1030,7 +1028,7 @@ public int compareTo(CreateDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDataConnectorName()).compareTo(other.isSetDataConnectorName()); + lastComparison = java.lang.Boolean.compare(isSetDataConnectorName(), other.isSetDataConnectorName()); if (lastComparison != 0) { return lastComparison; } @@ -1547,7 +1545,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CreateDatabaseReques } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map1232 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map1232 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.parameters = new java.util.HashMap(2*_map1232.size); @org.apache.thrift.annotation.Nullable java.lang.String _key1233; @org.apache.thrift.annotation.Nullable java.lang.String _val1234; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateTableRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateTableRequest.java index 4f1232871cd2..f0c0d42323a6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateTableRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreateTableRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CreateTableRequest 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("CreateTableRequest"); @@ -755,8 +755,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CreateTableRequest) return this.equals((CreateTableRequest)that); return false; @@ -916,7 +914,7 @@ public int compareTo(CreateTableRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTable()).compareTo(other.isSetTable()); + lastComparison = java.lang.Boolean.compare(isSetTable(), other.isSetTable()); if (lastComparison != 0) { return lastComparison; } @@ -926,7 +924,7 @@ public int compareTo(CreateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvContext()).compareTo(other.isSetEnvContext()); + lastComparison = java.lang.Boolean.compare(isSetEnvContext(), other.isSetEnvContext()); if (lastComparison != 0) { return lastComparison; } @@ -936,7 +934,7 @@ public int compareTo(CreateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrimaryKeys()).compareTo(other.isSetPrimaryKeys()); + lastComparison = java.lang.Boolean.compare(isSetPrimaryKeys(), other.isSetPrimaryKeys()); if (lastComparison != 0) { return lastComparison; } @@ -946,7 +944,7 @@ public int compareTo(CreateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetForeignKeys()).compareTo(other.isSetForeignKeys()); + lastComparison = java.lang.Boolean.compare(isSetForeignKeys(), other.isSetForeignKeys()); if (lastComparison != 0) { return lastComparison; } @@ -956,7 +954,7 @@ public int compareTo(CreateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUniqueConstraints()).compareTo(other.isSetUniqueConstraints()); + lastComparison = java.lang.Boolean.compare(isSetUniqueConstraints(), other.isSetUniqueConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -966,7 +964,7 @@ public int compareTo(CreateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNotNullConstraints()).compareTo(other.isSetNotNullConstraints()); + lastComparison = java.lang.Boolean.compare(isSetNotNullConstraints(), other.isSetNotNullConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -976,7 +974,7 @@ public int compareTo(CreateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDefaultConstraints()).compareTo(other.isSetDefaultConstraints()); + lastComparison = java.lang.Boolean.compare(isSetDefaultConstraints(), other.isSetDefaultConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -986,7 +984,7 @@ public int compareTo(CreateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCheckConstraints()).compareTo(other.isSetCheckConstraints()); + lastComparison = java.lang.Boolean.compare(isSetCheckConstraints(), other.isSetCheckConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -996,7 +994,7 @@ public int compareTo(CreateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorCapabilities()).compareTo(other.isSetProcessorCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetProcessorCapabilities(), other.isSetProcessorCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -1006,7 +1004,7 @@ public int compareTo(CreateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorIdentifier()).compareTo(other.isSetProcessorIdentifier()); + lastComparison = java.lang.Boolean.compare(isSetProcessorIdentifier(), other.isSetProcessorIdentifier()); if (lastComparison != 0) { return lastComparison; } @@ -1607,7 +1605,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CreateTableRequest s } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1205 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1205 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.primaryKeys = new java.util.ArrayList(_list1205.size); @org.apache.thrift.annotation.Nullable SQLPrimaryKey _elem1206; for (int _i1207 = 0; _i1207 < _list1205.size; ++_i1207) @@ -1621,7 +1619,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CreateTableRequest s } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1208 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1208 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.foreignKeys = new java.util.ArrayList(_list1208.size); @org.apache.thrift.annotation.Nullable SQLForeignKey _elem1209; for (int _i1210 = 0; _i1210 < _list1208.size; ++_i1210) @@ -1635,7 +1633,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CreateTableRequest s } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list1211 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1211 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.uniqueConstraints = new java.util.ArrayList(_list1211.size); @org.apache.thrift.annotation.Nullable SQLUniqueConstraint _elem1212; for (int _i1213 = 0; _i1213 < _list1211.size; ++_i1213) @@ -1649,7 +1647,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CreateTableRequest s } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1214 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1214 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.notNullConstraints = new java.util.ArrayList(_list1214.size); @org.apache.thrift.annotation.Nullable SQLNotNullConstraint _elem1215; for (int _i1216 = 0; _i1216 < _list1214.size; ++_i1216) @@ -1663,7 +1661,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CreateTableRequest s } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list1217 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1217 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.defaultConstraints = new java.util.ArrayList(_list1217.size); @org.apache.thrift.annotation.Nullable SQLDefaultConstraint _elem1218; for (int _i1219 = 0; _i1219 < _list1217.size; ++_i1219) @@ -1677,7 +1675,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CreateTableRequest s } if (incoming.get(6)) { { - org.apache.thrift.protocol.TList _list1220 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1220 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.checkConstraints = new java.util.ArrayList(_list1220.size); @org.apache.thrift.annotation.Nullable SQLCheckConstraint _elem1221; for (int _i1222 = 0; _i1222 < _list1220.size; ++_i1222) @@ -1691,7 +1689,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CreateTableRequest s } if (incoming.get(7)) { { - org.apache.thrift.protocol.TList _list1223 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1223 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.processorCapabilities = new java.util.ArrayList(_list1223.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1224; for (int _i1225 = 0; _i1225 < _list1223.size; ++_i1225) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java index 4af301de9d7a..bc1b8b909a7a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CreationMetadata 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("CreationMetadata"); @@ -443,8 +443,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CreationMetadata) return this.equals((CreationMetadata)that); return false; @@ -552,7 +550,7 @@ public int compareTo(CreationMetadata other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -562,7 +560,7 @@ public int compareTo(CreationMetadata other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -572,7 +570,7 @@ public int compareTo(CreationMetadata other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -582,7 +580,7 @@ public int compareTo(CreationMetadata other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTablesUsed()).compareTo(other.isSetTablesUsed()); + lastComparison = java.lang.Boolean.compare(isSetTablesUsed(), other.isSetTablesUsed()); if (lastComparison != 0) { return lastComparison; } @@ -592,7 +590,7 @@ public int compareTo(CreationMetadata other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidTxnList()).compareTo(other.isSetValidTxnList()); + lastComparison = java.lang.Boolean.compare(isSetValidTxnList(), other.isSetValidTxnList()); if (lastComparison != 0) { return lastComparison; } @@ -602,7 +600,7 @@ public int compareTo(CreationMetadata other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMaterializationTime()).compareTo(other.isSetMaterializationTime()); + lastComparison = java.lang.Boolean.compare(isSetMaterializationTime(), other.isSetMaterializationTime()); if (lastComparison != 0) { return lastComparison; } @@ -904,7 +902,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CreationMetadata str struct.tblName = iprot.readString(); struct.setTblNameIsSet(true); { - org.apache.thrift.protocol.TSet _set259 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TSet _set259 = iprot.readSetBegin(org.apache.thrift.protocol.TType.STRING); struct.tablesUsed = new java.util.HashSet(2*_set259.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem260; for (int _i261 = 0; _i261 < _set259.size; ++_i261) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CurrentNotificationEventId.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CurrentNotificationEventId.java index 1df72f5a6d76..5b4756bc5410 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CurrentNotificationEventId.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CurrentNotificationEventId.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class CurrentNotificationEventId 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("CurrentNotificationEventId"); @@ -179,8 +179,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof CurrentNotificationEventId) return this.equals((CurrentNotificationEventId)that); return false; @@ -221,7 +219,7 @@ public int compareTo(CurrentNotificationEventId other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetEventId()).compareTo(other.isSetEventId()); + lastComparison = java.lang.Boolean.compare(isSetEventId(), other.isSetEventId()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DataConnector.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DataConnector.java index bf06a262f637..204857c46924 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DataConnector.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DataConnector.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class DataConnector 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("DataConnector"); @@ -545,8 +545,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof DataConnector) return this.equals((DataConnector)that); return false; @@ -680,7 +678,7 @@ public int compareTo(DataConnector other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -690,7 +688,7 @@ public int compareTo(DataConnector other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -700,7 +698,7 @@ public int compareTo(DataConnector other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUrl()).compareTo(other.isSetUrl()); + lastComparison = java.lang.Boolean.compare(isSetUrl(), other.isSetUrl()); if (lastComparison != 0) { return lastComparison; } @@ -710,7 +708,7 @@ public int compareTo(DataConnector other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDescription()).compareTo(other.isSetDescription()); + lastComparison = java.lang.Boolean.compare(isSetDescription(), other.isSetDescription()); if (lastComparison != 0) { return lastComparison; } @@ -720,7 +718,7 @@ public int compareTo(DataConnector other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParameters()).compareTo(other.isSetParameters()); + lastComparison = java.lang.Boolean.compare(isSetParameters(), other.isSetParameters()); if (lastComparison != 0) { return lastComparison; } @@ -730,7 +728,7 @@ public int compareTo(DataConnector other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerName()).compareTo(other.isSetOwnerName()); + lastComparison = java.lang.Boolean.compare(isSetOwnerName(), other.isSetOwnerName()); if (lastComparison != 0) { return lastComparison; } @@ -740,7 +738,7 @@ public int compareTo(DataConnector other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerType()).compareTo(other.isSetOwnerType()); + lastComparison = java.lang.Boolean.compare(isSetOwnerType(), other.isSetOwnerType()); if (lastComparison != 0) { return lastComparison; } @@ -750,7 +748,7 @@ public int compareTo(DataConnector other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreateTime()).compareTo(other.isSetCreateTime()); + lastComparison = java.lang.Boolean.compare(isSetCreateTime(), other.isSetCreateTime()); if (lastComparison != 0) { return lastComparison; } @@ -1138,7 +1136,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, DataConnector struct } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map664 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map664 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.parameters = new java.util.HashMap(2*_map664.size); @org.apache.thrift.annotation.Nullable java.lang.String _key665; @org.apache.thrift.annotation.Nullable java.lang.String _val666; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DataOperationType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DataOperationType.java index 6f3f7596f1da..2b32800f5f8a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DataOperationType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DataOperationType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum DataOperationType implements org.apache.thrift.TEnum { SELECT(1), INSERT(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Database.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Database.java index 5987cb0692b2..2ca0aa0807b9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Database.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Database.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Database 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("Database"); @@ -799,8 +799,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Database) return this.equals((Database)that); return false; @@ -999,7 +997,7 @@ public int compareTo(Database other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -1009,7 +1007,7 @@ public int compareTo(Database other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDescription()).compareTo(other.isSetDescription()); + lastComparison = java.lang.Boolean.compare(isSetDescription(), other.isSetDescription()); if (lastComparison != 0) { return lastComparison; } @@ -1019,7 +1017,7 @@ public int compareTo(Database other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLocationUri()).compareTo(other.isSetLocationUri()); + lastComparison = java.lang.Boolean.compare(isSetLocationUri(), other.isSetLocationUri()); if (lastComparison != 0) { return lastComparison; } @@ -1029,7 +1027,7 @@ public int compareTo(Database other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParameters()).compareTo(other.isSetParameters()); + lastComparison = java.lang.Boolean.compare(isSetParameters(), other.isSetParameters()); if (lastComparison != 0) { return lastComparison; } @@ -1039,7 +1037,7 @@ public int compareTo(Database other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrivileges()).compareTo(other.isSetPrivileges()); + lastComparison = java.lang.Boolean.compare(isSetPrivileges(), other.isSetPrivileges()); if (lastComparison != 0) { return lastComparison; } @@ -1049,7 +1047,7 @@ public int compareTo(Database other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerName()).compareTo(other.isSetOwnerName()); + lastComparison = java.lang.Boolean.compare(isSetOwnerName(), other.isSetOwnerName()); if (lastComparison != 0) { return lastComparison; } @@ -1059,7 +1057,7 @@ public int compareTo(Database other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerType()).compareTo(other.isSetOwnerType()); + lastComparison = java.lang.Boolean.compare(isSetOwnerType(), other.isSetOwnerType()); if (lastComparison != 0) { return lastComparison; } @@ -1069,7 +1067,7 @@ public int compareTo(Database other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatalogName()).compareTo(other.isSetCatalogName()); + lastComparison = java.lang.Boolean.compare(isSetCatalogName(), other.isSetCatalogName()); if (lastComparison != 0) { return lastComparison; } @@ -1079,7 +1077,7 @@ public int compareTo(Database other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreateTime()).compareTo(other.isSetCreateTime()); + lastComparison = java.lang.Boolean.compare(isSetCreateTime(), other.isSetCreateTime()); if (lastComparison != 0) { return lastComparison; } @@ -1089,7 +1087,7 @@ public int compareTo(Database other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetManagedLocationUri()).compareTo(other.isSetManagedLocationUri()); + lastComparison = java.lang.Boolean.compare(isSetManagedLocationUri(), other.isSetManagedLocationUri()); if (lastComparison != 0) { return lastComparison; } @@ -1099,7 +1097,7 @@ public int compareTo(Database other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -1109,7 +1107,7 @@ public int compareTo(Database other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetConnector_name()).compareTo(other.isSetConnector_name()); + lastComparison = java.lang.Boolean.compare(isSetConnector_name(), other.isSetConnector_name()); if (lastComparison != 0) { return lastComparison; } @@ -1119,7 +1117,7 @@ public int compareTo(Database other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRemote_dbname()).compareTo(other.isSetRemote_dbname()); + lastComparison = java.lang.Boolean.compare(isSetRemote_dbname(), other.isSetRemote_dbname()); if (lastComparison != 0) { return lastComparison; } @@ -1658,7 +1656,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Database struct) thr } if (incoming.get(3)) { { - org.apache.thrift.protocol.TMap _map164 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map164 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.parameters = new java.util.HashMap(2*_map164.size); @org.apache.thrift.annotation.Nullable java.lang.String _key165; @org.apache.thrift.annotation.Nullable java.lang.String _val166; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DatabaseType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DatabaseType.java index ad6e97fc0e58..256ff206c726 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DatabaseType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DatabaseType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum DatabaseType implements org.apache.thrift.TEnum { NATIVE(1), REMOTE(2); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Date.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Date.java index 39c36d59b51e..8c0627519a4e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Date.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Date.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Date 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("Date"); @@ -179,8 +179,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Date) return this.equals((Date)that); return false; @@ -221,7 +219,7 @@ public int compareTo(Date other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDaysSinceEpoch()).compareTo(other.isSetDaysSinceEpoch()); + lastComparison = java.lang.Boolean.compare(isSetDaysSinceEpoch(), other.isSetDaysSinceEpoch()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DateColumnStatsData.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DateColumnStatsData.java index 92029505469b..a38a4f9e0fb7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DateColumnStatsData.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DateColumnStatsData.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class DateColumnStatsData 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("DateColumnStatsData"); @@ -385,8 +385,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof DateColumnStatsData) return this.equals((DateColumnStatsData)that); return false; @@ -477,7 +475,7 @@ public int compareTo(DateColumnStatsData other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetLowValue()).compareTo(other.isSetLowValue()); + lastComparison = java.lang.Boolean.compare(isSetLowValue(), other.isSetLowValue()); if (lastComparison != 0) { return lastComparison; } @@ -487,7 +485,7 @@ public int compareTo(DateColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHighValue()).compareTo(other.isSetHighValue()); + lastComparison = java.lang.Boolean.compare(isSetHighValue(), other.isSetHighValue()); if (lastComparison != 0) { return lastComparison; } @@ -497,7 +495,7 @@ public int compareTo(DateColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumNulls()).compareTo(other.isSetNumNulls()); + lastComparison = java.lang.Boolean.compare(isSetNumNulls(), other.isSetNumNulls()); if (lastComparison != 0) { return lastComparison; } @@ -507,7 +505,7 @@ public int compareTo(DateColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumDVs()).compareTo(other.isSetNumDVs()); + lastComparison = java.lang.Boolean.compare(isSetNumDVs(), other.isSetNumDVs()); if (lastComparison != 0) { return lastComparison; } @@ -517,7 +515,7 @@ public int compareTo(DateColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBitVectors()).compareTo(other.isSetBitVectors()); + lastComparison = java.lang.Boolean.compare(isSetBitVectors(), other.isSetBitVectors()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Decimal.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Decimal.java index 3a2d15d6aa66..b247986a1ea2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Decimal.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Decimal.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Decimal 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("Decimal"); @@ -241,8 +241,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Decimal) return this.equals((Decimal)that); return false; @@ -296,7 +294,7 @@ public int compareTo(Decimal other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetScale()).compareTo(other.isSetScale()); + lastComparison = java.lang.Boolean.compare(isSetScale(), other.isSetScale()); if (lastComparison != 0) { return lastComparison; } @@ -306,7 +304,7 @@ public int compareTo(Decimal other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUnscaled()).compareTo(other.isSetUnscaled()); + lastComparison = java.lang.Boolean.compare(isSetUnscaled(), other.isSetUnscaled()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DecimalColumnStatsData.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DecimalColumnStatsData.java index 0f84df600800..2ed786bdfd07 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DecimalColumnStatsData.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DecimalColumnStatsData.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class DecimalColumnStatsData 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("DecimalColumnStatsData"); @@ -385,8 +385,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof DecimalColumnStatsData) return this.equals((DecimalColumnStatsData)that); return false; @@ -477,7 +475,7 @@ public int compareTo(DecimalColumnStatsData other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetLowValue()).compareTo(other.isSetLowValue()); + lastComparison = java.lang.Boolean.compare(isSetLowValue(), other.isSetLowValue()); if (lastComparison != 0) { return lastComparison; } @@ -487,7 +485,7 @@ public int compareTo(DecimalColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHighValue()).compareTo(other.isSetHighValue()); + lastComparison = java.lang.Boolean.compare(isSetHighValue(), other.isSetHighValue()); if (lastComparison != 0) { return lastComparison; } @@ -497,7 +495,7 @@ public int compareTo(DecimalColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumNulls()).compareTo(other.isSetNumNulls()); + lastComparison = java.lang.Boolean.compare(isSetNumNulls(), other.isSetNumNulls()); if (lastComparison != 0) { return lastComparison; } @@ -507,7 +505,7 @@ public int compareTo(DecimalColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumDVs()).compareTo(other.isSetNumDVs()); + lastComparison = java.lang.Boolean.compare(isSetNumDVs(), other.isSetNumDVs()); if (lastComparison != 0) { return lastComparison; } @@ -517,7 +515,7 @@ public int compareTo(DecimalColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBitVectors()).compareTo(other.isSetBitVectors()); + lastComparison = java.lang.Boolean.compare(isSetBitVectors(), other.isSetBitVectors()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DefaultConstraintsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DefaultConstraintsRequest.java index 439ad6b359d7..83eaee0e5caa 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DefaultConstraintsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DefaultConstraintsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class DefaultConstraintsRequest 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("DefaultConstraintsRequest"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof DefaultConstraintsRequest) return this.equals((DefaultConstraintsRequest)that); return false; @@ -348,7 +346,7 @@ public int compareTo(DefaultConstraintsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(DefaultConstraintsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(DefaultConstraintsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DefaultConstraintsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DefaultConstraintsResponse.java index 5ecfb247014e..1a3ff1f5c33f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DefaultConstraintsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DefaultConstraintsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class DefaultConstraintsResponse 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("DefaultConstraintsResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof DefaultConstraintsResponse) return this.equals((DefaultConstraintsResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(DefaultConstraintsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDefaultConstraints()).compareTo(other.isSetDefaultConstraints()); + lastComparison = java.lang.Boolean.compare(isSetDefaultConstraints(), other.isSetDefaultConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, DefaultConstraintsR public void read(org.apache.thrift.protocol.TProtocol prot, DefaultConstraintsResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list437 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list437 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.defaultConstraints = new java.util.ArrayList(_list437.size); @org.apache.thrift.annotation.Nullable SQLDefaultConstraint _elem438; for (int _i439 = 0; _i439 < _list437.size; ++_i439) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DoubleColumnStatsData.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DoubleColumnStatsData.java index d8aa1cbba1ee..4d2c1f109548 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DoubleColumnStatsData.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DoubleColumnStatsData.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class DoubleColumnStatsData 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("DoubleColumnStatsData"); @@ -381,8 +381,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof DoubleColumnStatsData) return this.equals((DoubleColumnStatsData)that); return false; @@ -473,7 +471,7 @@ public int compareTo(DoubleColumnStatsData other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetLowValue()).compareTo(other.isSetLowValue()); + lastComparison = java.lang.Boolean.compare(isSetLowValue(), other.isSetLowValue()); if (lastComparison != 0) { return lastComparison; } @@ -483,7 +481,7 @@ public int compareTo(DoubleColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHighValue()).compareTo(other.isSetHighValue()); + lastComparison = java.lang.Boolean.compare(isSetHighValue(), other.isSetHighValue()); if (lastComparison != 0) { return lastComparison; } @@ -493,7 +491,7 @@ public int compareTo(DoubleColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumNulls()).compareTo(other.isSetNumNulls()); + lastComparison = java.lang.Boolean.compare(isSetNumNulls(), other.isSetNumNulls()); if (lastComparison != 0) { return lastComparison; } @@ -503,7 +501,7 @@ public int compareTo(DoubleColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumDVs()).compareTo(other.isSetNumDVs()); + lastComparison = java.lang.Boolean.compare(isSetNumDVs(), other.isSetNumDVs()); if (lastComparison != 0) { return lastComparison; } @@ -513,7 +511,7 @@ public int compareTo(DoubleColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBitVectors()).compareTo(other.isSetBitVectors()); + lastComparison = java.lang.Boolean.compare(isSetBitVectors(), other.isSetBitVectors()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropCatalogRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropCatalogRequest.java index 7bc5eb5e8cd5..ec0bcde03986 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropCatalogRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class DropCatalogRequest 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("DropCatalogRequest"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof DropCatalogRequest) return this.equals((DropCatalogRequest)that); return false; @@ -222,7 +220,7 @@ public int compareTo(DropCatalogRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropConstraintRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropConstraintRequest.java index 7d6e76771dac..95aa8e6ce17d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropConstraintRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropConstraintRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class DropConstraintRequest 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("DropConstraintRequest"); @@ -327,8 +327,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof DropConstraintRequest) return this.equals((DropConstraintRequest)that); return false; @@ -410,7 +408,7 @@ public int compareTo(DropConstraintRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -420,7 +418,7 @@ public int compareTo(DropConstraintRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTablename()).compareTo(other.isSetTablename()); + lastComparison = java.lang.Boolean.compare(isSetTablename(), other.isSetTablename()); if (lastComparison != 0) { return lastComparison; } @@ -430,7 +428,7 @@ public int compareTo(DropConstraintRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetConstraintname()).compareTo(other.isSetConstraintname()); + lastComparison = java.lang.Boolean.compare(isSetConstraintname(), other.isSetConstraintname()); if (lastComparison != 0) { return lastComparison; } @@ -440,7 +438,7 @@ public int compareTo(DropConstraintRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPackageRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPackageRequest.java index bc109babd4c4..c44a4b451145 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPackageRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPackageRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class DropPackageRequest 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("DropPackageRequest"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof DropPackageRequest) return this.equals((DropPackageRequest)that); return false; @@ -348,7 +346,7 @@ public int compareTo(DropPackageRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(DropPackageRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(DropPackageRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPackageName()).compareTo(other.isSetPackageName()); + lastComparison = java.lang.Boolean.compare(isSetPackageName(), other.isSetPackageName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPartitionsExpr.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPartitionsExpr.java index 4b8e10220e62..e118f92a584a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPartitionsExpr.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPartitionsExpr.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class DropPartitionsExpr 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("DropPartitionsExpr"); @@ -239,8 +239,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof DropPartitionsExpr) return this.equals((DropPartitionsExpr)that); return false; @@ -296,7 +294,7 @@ public int compareTo(DropPartitionsExpr other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetExpr()).compareTo(other.isSetExpr()); + lastComparison = java.lang.Boolean.compare(isSetExpr(), other.isSetExpr()); if (lastComparison != 0) { return lastComparison; } @@ -306,7 +304,7 @@ public int compareTo(DropPartitionsExpr other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartArchiveLevel()).compareTo(other.isSetPartArchiveLevel()); + lastComparison = java.lang.Boolean.compare(isSetPartArchiveLevel(), other.isSetPartArchiveLevel()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPartitionsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPartitionsRequest.java index 5985cdb46d00..516fe1da74c5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPartitionsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPartitionsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class DropPartitionsRequest 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("DropPartitionsRequest"); @@ -565,8 +565,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof DropPartitionsRequest) return this.equals((DropPartitionsRequest)that); return false; @@ -713,7 +711,7 @@ public int compareTo(DropPartitionsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -723,7 +721,7 @@ public int compareTo(DropPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -733,7 +731,7 @@ public int compareTo(DropPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParts()).compareTo(other.isSetParts()); + lastComparison = java.lang.Boolean.compare(isSetParts(), other.isSetParts()); if (lastComparison != 0) { return lastComparison; } @@ -743,7 +741,7 @@ public int compareTo(DropPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDeleteData()).compareTo(other.isSetDeleteData()); + lastComparison = java.lang.Boolean.compare(isSetDeleteData(), other.isSetDeleteData()); if (lastComparison != 0) { return lastComparison; } @@ -753,7 +751,7 @@ public int compareTo(DropPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIfExists()).compareTo(other.isSetIfExists()); + lastComparison = java.lang.Boolean.compare(isSetIfExists(), other.isSetIfExists()); if (lastComparison != 0) { return lastComparison; } @@ -763,7 +761,7 @@ public int compareTo(DropPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIgnoreProtection()).compareTo(other.isSetIgnoreProtection()); + lastComparison = java.lang.Boolean.compare(isSetIgnoreProtection(), other.isSetIgnoreProtection()); if (lastComparison != 0) { return lastComparison; } @@ -773,7 +771,7 @@ public int compareTo(DropPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironmentContext()).compareTo(other.isSetEnvironmentContext()); + lastComparison = java.lang.Boolean.compare(isSetEnvironmentContext(), other.isSetEnvironmentContext()); if (lastComparison != 0) { return lastComparison; } @@ -783,7 +781,7 @@ public int compareTo(DropPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNeedResult()).compareTo(other.isSetNeedResult()); + lastComparison = java.lang.Boolean.compare(isSetNeedResult(), other.isSetNeedResult()); if (lastComparison != 0) { return lastComparison; } @@ -793,7 +791,7 @@ public int compareTo(DropPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPartitionsResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPartitionsResult.java index 89baf525d88f..6707a8d59d18 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPartitionsResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/DropPartitionsResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class DropPartitionsResult 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("DropPartitionsResult"); @@ -193,8 +193,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof DropPartitionsResult) return this.equals((DropPartitionsResult)that); return false; @@ -237,7 +235,7 @@ public int compareTo(DropPartitionsResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitions()).compareTo(other.isSetPartitions()); + lastComparison = java.lang.Boolean.compare(isSetPartitions(), other.isSetPartitions()); if (lastComparison != 0) { return lastComparison; } @@ -405,7 +403,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, DropPartitionsResult java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list583 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list583 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitions = new java.util.ArrayList(_list583.size); @org.apache.thrift.annotation.Nullable Partition _elem584; for (int _i585 = 0; _i585 < _list583.size; ++_i585) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/EnvironmentContext.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/EnvironmentContext.java index b9a51fc427cb..6cb1955d86d9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/EnvironmentContext.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/EnvironmentContext.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class EnvironmentContext 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("EnvironmentContext"); @@ -192,8 +192,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof EnvironmentContext) return this.equals((EnvironmentContext)that); return false; @@ -236,7 +234,7 @@ public int compareTo(EnvironmentContext other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetProperties()).compareTo(other.isSetProperties()); + lastComparison = java.lang.Boolean.compare(isSetProperties(), other.isSetProperties()); if (lastComparison != 0) { return lastComparison; } @@ -403,7 +401,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, EnvironmentContext s java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map396 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map396 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.properties = new java.util.HashMap(2*_map396.size); @org.apache.thrift.annotation.Nullable java.lang.String _key397; @org.apache.thrift.annotation.Nullable java.lang.String _val398; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/EventRequestType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/EventRequestType.java index 8c72447eb601..a0913b8db9fc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/EventRequestType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/EventRequestType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum EventRequestType implements org.apache.thrift.TEnum { INSERT(1), UPDATE(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ExtendedTableInfo.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ExtendedTableInfo.java index f2ac079894f7..de3d4ac01776 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ExtendedTableInfo.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ExtendedTableInfo.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ExtendedTableInfo 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("ExtendedTableInfo"); @@ -359,8 +359,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ExtendedTableInfo) return this.equals((ExtendedTableInfo)that); return false; @@ -442,7 +440,7 @@ public int compareTo(ExtendedTableInfo other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -452,7 +450,7 @@ public int compareTo(ExtendedTableInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAccessType()).compareTo(other.isSetAccessType()); + lastComparison = java.lang.Boolean.compare(isSetAccessType(), other.isSetAccessType()); if (lastComparison != 0) { return lastComparison; } @@ -462,7 +460,7 @@ public int compareTo(ExtendedTableInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRequiredReadCapabilities()).compareTo(other.isSetRequiredReadCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetRequiredReadCapabilities(), other.isSetRequiredReadCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -472,7 +470,7 @@ public int compareTo(ExtendedTableInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRequiredWriteCapabilities()).compareTo(other.isSetRequiredWriteCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetRequiredWriteCapabilities(), other.isSetRequiredWriteCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -752,7 +750,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, ExtendedTableInfo st } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1076 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1076 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.requiredReadCapabilities = new java.util.ArrayList(_list1076.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1077; for (int _i1078 = 0; _i1078 < _list1076.size; ++_i1078) @@ -765,7 +763,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, ExtendedTableInfo st } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1079 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1079 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.requiredWriteCapabilities = new java.util.ArrayList(_list1079.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1080; for (int _i1081 = 0; _i1081 < _list1079.size; ++_i1081) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FieldSchema.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FieldSchema.java index e664be9f66f3..113e94c0a13f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FieldSchema.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FieldSchema.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class FieldSchema 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("FieldSchema"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof FieldSchema) return this.equals((FieldSchema)that); return false; @@ -348,7 +346,7 @@ public int compareTo(FieldSchema other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(FieldSchema other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(FieldSchema other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetComment()).compareTo(other.isSetComment()); + lastComparison = java.lang.Boolean.compare(isSetComment(), other.isSetComment()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FileMetadataExprType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FileMetadataExprType.java index c5882d9493e6..e79635e2abc6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FileMetadataExprType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FileMetadataExprType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum FileMetadataExprType implements org.apache.thrift.TEnum { ORC_SARG(1); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java index 5c746d7f5f1e..51d79929b97e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class FindSchemasByColsResp 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("FindSchemasByColsResp"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof FindSchemasByColsResp) return this.equals((FindSchemasByColsResp)that); return false; @@ -243,7 +241,7 @@ public int compareTo(FindSchemasByColsResp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSchemaVersions()).compareTo(other.isSetSchemaVersions()); + lastComparison = java.lang.Boolean.compare(isSetSchemaVersions(), other.isSetSchemaVersions()); if (lastComparison != 0) { return lastComparison; } @@ -407,7 +405,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, FindSchemasByColsRes java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1167 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1167 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.schemaVersions = new java.util.ArrayList(_list1167.size); @org.apache.thrift.annotation.Nullable SchemaVersionDescriptor _elem1168; for (int _i1169 = 0; _i1169 < _list1167.size; ++_i1169) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsRqst.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsRqst.java index 5dd2fc0396a9..bfe9cd8b2b93 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsRqst.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsRqst.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class FindSchemasByColsRqst 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("FindSchemasByColsRqst"); @@ -268,8 +268,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof FindSchemasByColsRqst) return this.equals((FindSchemasByColsRqst)that); return false; @@ -338,7 +336,7 @@ public int compareTo(FindSchemasByColsRqst other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetColName()).compareTo(other.isSetColName()); + lastComparison = java.lang.Boolean.compare(isSetColName(), other.isSetColName()); if (lastComparison != 0) { return lastComparison; } @@ -348,7 +346,7 @@ public int compareTo(FindSchemasByColsRqst other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColNamespace()).compareTo(other.isSetColNamespace()); + lastComparison = java.lang.Boolean.compare(isSetColNamespace(), other.isSetColNamespace()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(FindSchemasByColsRqst other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java index 156086dbbb3e..e9c2a0c5f9ef 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class FireEventRequest 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("FireEventRequest"); @@ -440,8 +440,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof FireEventRequest) return this.equals((FireEventRequest)that); return false; @@ -547,7 +545,7 @@ public int compareTo(FireEventRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccessful()).compareTo(other.isSetSuccessful()); + lastComparison = java.lang.Boolean.compare(isSetSuccessful(), other.isSetSuccessful()); if (lastComparison != 0) { return lastComparison; } @@ -557,7 +555,7 @@ public int compareTo(FireEventRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetData()).compareTo(other.isSetData()); + lastComparison = java.lang.Boolean.compare(isSetData(), other.isSetData()); if (lastComparison != 0) { return lastComparison; } @@ -567,7 +565,7 @@ public int compareTo(FireEventRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -577,7 +575,7 @@ public int compareTo(FireEventRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -587,7 +585,7 @@ public int compareTo(FireEventRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionVals()).compareTo(other.isSetPartitionVals()); + lastComparison = java.lang.Boolean.compare(isSetPartitionVals(), other.isSetPartitionVals()); if (lastComparison != 0) { return lastComparison; } @@ -597,7 +595,7 @@ public int compareTo(FireEventRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -919,7 +917,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, FireEventRequest str } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list923 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list923 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partitionVals = new java.util.ArrayList(_list923.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem924; for (int _i925 = 0; _i925 < _list923.size; ++_i925) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequestData.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequestData.java index d86597c0865f..f4701b62d880 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequestData.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequestData.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class FireEventRequestData extends org.apache.thrift.TUnion { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("FireEventRequestData"); private static final org.apache.thrift.protocol.TField INSERT_DATA_FIELD_DESC = new org.apache.thrift.protocol.TField("insertData", org.apache.thrift.protocol.TType.STRUCT, (short)1); @@ -294,9 +294,8 @@ public InsertEventRequestData getInsertData() { } public void setInsertData(InsertEventRequestData value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.INSERT_DATA; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.INSERT_DATA"); } public java.util.List getInsertDatas() { @@ -308,9 +307,8 @@ public java.util.List getInsertDatas() { } public void setInsertDatas(java.util.List value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.INSERT_DATAS; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.INSERT_DATAS"); } public boolean isSetInsertData() { diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventResponse.java index 025dcebb37b5..a0a7b7b528c3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class FireEventResponse 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("FireEventResponse"); @@ -196,8 +196,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof FireEventResponse) return this.equals((FireEventResponse)that); return false; @@ -240,7 +238,7 @@ public int compareTo(FireEventResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetEventIds()).compareTo(other.isSetEventIds()); + lastComparison = java.lang.Boolean.compare(isSetEventIds(), other.isSetEventIds()); if (lastComparison != 0) { return lastComparison; } @@ -403,7 +401,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, FireEventResponse st java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list931 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TList _list931 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); struct.eventIds = new java.util.ArrayList(_list931.size); long _elem932; for (int _i933 = 0; _i933 < _list931.size; ++_i933) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ForeignKeysRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ForeignKeysRequest.java index f0999cb7d7ee..8b44ef5f8235 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ForeignKeysRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ForeignKeysRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ForeignKeysRequest 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("ForeignKeysRequest"); @@ -377,8 +377,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ForeignKeysRequest) return this.equals((ForeignKeysRequest)that); return false; @@ -473,7 +471,7 @@ public int compareTo(ForeignKeysRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetParent_db_name()).compareTo(other.isSetParent_db_name()); + lastComparison = java.lang.Boolean.compare(isSetParent_db_name(), other.isSetParent_db_name()); if (lastComparison != 0) { return lastComparison; } @@ -483,7 +481,7 @@ public int compareTo(ForeignKeysRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParent_tbl_name()).compareTo(other.isSetParent_tbl_name()); + lastComparison = java.lang.Boolean.compare(isSetParent_tbl_name(), other.isSetParent_tbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -493,7 +491,7 @@ public int compareTo(ForeignKeysRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetForeign_db_name()).compareTo(other.isSetForeign_db_name()); + lastComparison = java.lang.Boolean.compare(isSetForeign_db_name(), other.isSetForeign_db_name()); if (lastComparison != 0) { return lastComparison; } @@ -503,7 +501,7 @@ public int compareTo(ForeignKeysRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetForeign_tbl_name()).compareTo(other.isSetForeign_tbl_name()); + lastComparison = java.lang.Boolean.compare(isSetForeign_tbl_name(), other.isSetForeign_tbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -513,7 +511,7 @@ public int compareTo(ForeignKeysRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ForeignKeysResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ForeignKeysResponse.java index 4552e84d4001..bdf1ac2f0d9e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ForeignKeysResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ForeignKeysResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ForeignKeysResponse 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("ForeignKeysResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ForeignKeysResponse) return this.equals((ForeignKeysResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(ForeignKeysResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetForeignKeys()).compareTo(other.isSetForeignKeys()); + lastComparison = java.lang.Boolean.compare(isSetForeignKeys(), other.isSetForeignKeys()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ForeignKeysResponse public void read(org.apache.thrift.protocol.TProtocol prot, ForeignKeysResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list413 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list413 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.foreignKeys = new java.util.ArrayList(_list413.size); @org.apache.thrift.annotation.Nullable SQLForeignKey _elem414; for (int _i415 = 0; _i415 < _list413.size; ++_i415) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Function.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Function.java index 4d410c3b5315..6f319a6a1647 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Function.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Function.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Function 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("Function"); @@ -623,8 +623,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Function) return this.equals((Function)that); return false; @@ -769,7 +767,7 @@ public int compareTo(Function other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFunctionName()).compareTo(other.isSetFunctionName()); + lastComparison = java.lang.Boolean.compare(isSetFunctionName(), other.isSetFunctionName()); if (lastComparison != 0) { return lastComparison; } @@ -779,7 +777,7 @@ public int compareTo(Function other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -789,7 +787,7 @@ public int compareTo(Function other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetClassName()).compareTo(other.isSetClassName()); + lastComparison = java.lang.Boolean.compare(isSetClassName(), other.isSetClassName()); if (lastComparison != 0) { return lastComparison; } @@ -799,7 +797,7 @@ public int compareTo(Function other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerName()).compareTo(other.isSetOwnerName()); + lastComparison = java.lang.Boolean.compare(isSetOwnerName(), other.isSetOwnerName()); if (lastComparison != 0) { return lastComparison; } @@ -809,7 +807,7 @@ public int compareTo(Function other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerType()).compareTo(other.isSetOwnerType()); + lastComparison = java.lang.Boolean.compare(isSetOwnerType(), other.isSetOwnerType()); if (lastComparison != 0) { return lastComparison; } @@ -819,7 +817,7 @@ public int compareTo(Function other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreateTime()).compareTo(other.isSetCreateTime()); + lastComparison = java.lang.Boolean.compare(isSetCreateTime(), other.isSetCreateTime()); if (lastComparison != 0) { return lastComparison; } @@ -829,7 +827,7 @@ public int compareTo(Function other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFunctionType()).compareTo(other.isSetFunctionType()); + lastComparison = java.lang.Boolean.compare(isSetFunctionType(), other.isSetFunctionType()); if (lastComparison != 0) { return lastComparison; } @@ -839,7 +837,7 @@ public int compareTo(Function other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetResourceUris()).compareTo(other.isSetResourceUris()); + lastComparison = java.lang.Boolean.compare(isSetResourceUris(), other.isSetResourceUris()); if (lastComparison != 0) { return lastComparison; } @@ -849,7 +847,7 @@ public int compareTo(Function other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -1257,7 +1255,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Function struct) thr } if (incoming.get(7)) { { - org.apache.thrift.protocol.TList _list673 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list673 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.resourceUris = new java.util.ArrayList(_list673.size); @org.apache.thrift.annotation.Nullable ResourceUri _elem674; for (int _i675 = 0; _i675 < _list673.size; ++_i675) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FunctionType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FunctionType.java index babaf1201891..361c788d4219 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FunctionType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FunctionType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum FunctionType implements org.apache.thrift.TEnum { JAVA(1); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java index 33984710b3ca..75db55ed6bb9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetAllFunctionsResponse 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("GetAllFunctionsResponse"); @@ -193,8 +193,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetAllFunctionsResponse) return this.equals((GetAllFunctionsResponse)that); return false; @@ -237,7 +235,7 @@ public int compareTo(GetAllFunctionsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFunctions()).compareTo(other.isSetFunctions()); + lastComparison = java.lang.Boolean.compare(isSetFunctions(), other.isSetFunctions()); if (lastComparison != 0) { return lastComparison; } @@ -405,7 +403,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetAllFunctionsRespo java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1007 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1007 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.functions = new java.util.ArrayList(_list1007.size); @org.apache.thrift.annotation.Nullable Function _elem1008; for (int _i1009 = 0; _i1009 < _list1007.size; ++_i1009) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetCatalogRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetCatalogRequest.java index 9a0a07e73da9..89f8d2ca961d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetCatalogRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetCatalogRequest 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("GetCatalogRequest"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetCatalogRequest) return this.equals((GetCatalogRequest)that); return false; @@ -222,7 +220,7 @@ public int compareTo(GetCatalogRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetCatalogResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetCatalogResponse.java index 28b98c9cea73..93aaa6a9c5eb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetCatalogResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetCatalogResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetCatalogResponse 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("GetCatalogResponse"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetCatalogResponse) return this.equals((GetCatalogResponse)that); return false; @@ -222,7 +220,7 @@ public int compareTo(GetCatalogResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatalog()).compareTo(other.isSetCatalog()); + lastComparison = java.lang.Boolean.compare(isSetCatalog(), other.isSetCatalog()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetCatalogsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetCatalogsResponse.java index 850dceb2da12..3c1224c1f5c2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetCatalogsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetCatalogsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetCatalogsResponse 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("GetCatalogsResponse"); @@ -196,8 +196,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetCatalogsResponse) return this.equals((GetCatalogsResponse)that); return false; @@ -240,7 +238,7 @@ public int compareTo(GetCatalogsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNames()).compareTo(other.isSetNames()); + lastComparison = java.lang.Boolean.compare(isSetNames(), other.isSetNames()); if (lastComparison != 0) { return lastComparison; } @@ -403,7 +401,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetCatalogsResponse java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list155 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list155 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.names = new java.util.ArrayList(_list155.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem156; for (int _i157 = 0; _i157 < _list155.size; ++_i157) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetDataConnectorRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetDataConnectorRequest.java index 1514c5329a52..b76fc4eba0ec 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetDataConnectorRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetDataConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetDataConnectorRequest 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("GetDataConnectorRequest"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetDataConnectorRequest) return this.equals((GetDataConnectorRequest)that); return false; @@ -222,7 +220,7 @@ public int compareTo(GetDataConnectorRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetConnectorName()).compareTo(other.isSetConnectorName()); + lastComparison = java.lang.Boolean.compare(isSetConnectorName(), other.isSetConnectorName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetDatabaseRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetDatabaseRequest.java index 0f481d2dd8bf..dfccd5bd799e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetDatabaseRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetDatabaseRequest 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("GetDatabaseRequest"); @@ -334,8 +334,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetDatabaseRequest) return this.equals((GetDatabaseRequest)that); return false; @@ -417,7 +415,7 @@ public int compareTo(GetDatabaseRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -427,7 +425,7 @@ public int compareTo(GetDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatalogName()).compareTo(other.isSetCatalogName()); + lastComparison = java.lang.Boolean.compare(isSetCatalogName(), other.isSetCatalogName()); if (lastComparison != 0) { return lastComparison; } @@ -437,7 +435,7 @@ public int compareTo(GetDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorCapabilities()).compareTo(other.isSetProcessorCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetProcessorCapabilities(), other.isSetProcessorCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -447,7 +445,7 @@ public int compareTo(GetDatabaseRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorIdentifier()).compareTo(other.isSetProcessorIdentifier()); + lastComparison = java.lang.Boolean.compare(isSetProcessorIdentifier(), other.isSetProcessorIdentifier()); if (lastComparison != 0) { return lastComparison; } @@ -715,7 +713,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetDatabaseRequest s } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1087 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1087 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.processorCapabilities = new java.util.ArrayList(_list1087.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1088; for (int _i1089 = 0; _i1089 < _list1087.size; ++_i1089) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFieldsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFieldsRequest.java index b7f7c99ec0dd..244e60bd64cb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFieldsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFieldsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetFieldsRequest 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("GetFieldsRequest"); @@ -423,8 +423,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetFieldsRequest) return this.equals((GetFieldsRequest)that); return false; @@ -532,7 +530,7 @@ public int compareTo(GetFieldsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -542,7 +540,7 @@ public int compareTo(GetFieldsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -552,7 +550,7 @@ public int compareTo(GetFieldsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -562,7 +560,7 @@ public int compareTo(GetFieldsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvContext()).compareTo(other.isSetEnvContext()); + lastComparison = java.lang.Boolean.compare(isSetEnvContext(), other.isSetEnvContext()); if (lastComparison != 0) { return lastComparison; } @@ -572,7 +570,7 @@ public int compareTo(GetFieldsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -582,7 +580,7 @@ public int compareTo(GetFieldsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFieldsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFieldsResponse.java index 669d4991814f..19c5cc0df4fc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFieldsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFieldsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetFieldsResponse 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("GetFieldsResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetFieldsResponse) return this.equals((GetFieldsResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(GetFieldsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFields()).compareTo(other.isSetFields()); + lastComparison = java.lang.Boolean.compare(isSetFields(), other.isSetFields()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFieldsResponse s public void read(org.apache.thrift.protocol.TProtocol prot, GetFieldsResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list1297 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1297 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.fields = new java.util.ArrayList(_list1297.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem1298; for (int _i1299 = 0; _i1299 < _list1297.size; ++_i1299) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java index 1d30a5efb600..870c1bbd9b47 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetFileMetadataByExprRequest 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("GetFileMetadataByExprRequest"); @@ -367,8 +367,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetFileMetadataByExprRequest) return this.equals((GetFileMetadataByExprRequest)that); return false; @@ -450,7 +448,7 @@ public int compareTo(GetFileMetadataByExprRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFileIds()).compareTo(other.isSetFileIds()); + lastComparison = java.lang.Boolean.compare(isSetFileIds(), other.isSetFileIds()); if (lastComparison != 0) { return lastComparison; } @@ -460,7 +458,7 @@ public int compareTo(GetFileMetadataByExprRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetExpr()).compareTo(other.isSetExpr()); + lastComparison = java.lang.Boolean.compare(isSetExpr(), other.isSetExpr()); if (lastComparison != 0) { return lastComparison; } @@ -470,7 +468,7 @@ public int compareTo(GetFileMetadataByExprRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDoGetFooters()).compareTo(other.isSetDoGetFooters()); + lastComparison = java.lang.Boolean.compare(isSetDoGetFooters(), other.isSetDoGetFooters()); if (lastComparison != 0) { return lastComparison; } @@ -480,7 +478,7 @@ public int compareTo(GetFileMetadataByExprRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -724,7 +722,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataByEx public void read(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataByExprRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list957 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TList _list957 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); struct.fileIds = new java.util.ArrayList(_list957.size); long _elem958; for (int _i959 = 0; _i959 < _list957.size; ++_i959) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java index b776fd177720..92e5f7491fd6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetFileMetadataByExprResult 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("GetFileMetadataByExprResult"); @@ -254,8 +254,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetFileMetadataByExprResult) return this.equals((GetFileMetadataByExprResult)that); return false; @@ -309,7 +307,7 @@ public int compareTo(GetFileMetadataByExprResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMetadata()).compareTo(other.isSetMetadata()); + lastComparison = java.lang.Boolean.compare(isSetMetadata(), other.isSetMetadata()); if (lastComparison != 0) { return lastComparison; } @@ -319,7 +317,7 @@ public int compareTo(GetFileMetadataByExprResult other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsSupported()).compareTo(other.isSetIsSupported()); + lastComparison = java.lang.Boolean.compare(isSetIsSupported(), other.isSetIsSupported()); if (lastComparison != 0) { return lastComparison; } @@ -504,7 +502,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataByEx public void read(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataByExprResult struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TMap _map948 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TMap _map948 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT); struct.metadata = new java.util.HashMap(2*_map948.size); long _key949; @org.apache.thrift.annotation.Nullable MetadataPpdResult _val950; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java index e9445e8634c3..9bbcf2da7daa 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetFileMetadataRequest 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("GetFileMetadataRequest"); @@ -196,8 +196,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetFileMetadataRequest) return this.equals((GetFileMetadataRequest)that); return false; @@ -240,7 +238,7 @@ public int compareTo(GetFileMetadataRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFileIds()).compareTo(other.isSetFileIds()); + lastComparison = java.lang.Boolean.compare(isSetFileIds(), other.isSetFileIds()); if (lastComparison != 0) { return lastComparison; } @@ -398,7 +396,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataRequ public void read(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list975 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TList _list975 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); struct.fileIds = new java.util.ArrayList(_list975.size); long _elem976; for (int _i977 = 0; _i977 < _list975.size; ++_i977) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java index 0ab79ad706aa..2c7abf406ed1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetFileMetadataResult 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("GetFileMetadataResult"); @@ -243,8 +243,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetFileMetadataResult) return this.equals((GetFileMetadataResult)that); return false; @@ -298,7 +296,7 @@ public int compareTo(GetFileMetadataResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMetadata()).compareTo(other.isSetMetadata()); + lastComparison = java.lang.Boolean.compare(isSetMetadata(), other.isSetMetadata()); if (lastComparison != 0) { return lastComparison; } @@ -308,7 +306,7 @@ public int compareTo(GetFileMetadataResult other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsSupported()).compareTo(other.isSetIsSupported()); + lastComparison = java.lang.Boolean.compare(isSetIsSupported(), other.isSetIsSupported()); if (lastComparison != 0) { return lastComparison; } @@ -492,7 +490,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataResu public void read(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataResult struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TMap _map966 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map966 = iprot.readMapBegin(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRING); struct.metadata = new java.util.HashMap(2*_map966.size); long _key967; @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _val968; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetLatestCommittedCompactionInfoRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetLatestCommittedCompactionInfoRequest.java index edd436bf081c..2b7278d57068 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetLatestCommittedCompactionInfoRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetLatestCommittedCompactionInfoRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetLatestCommittedCompactionInfoRequest 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("GetLatestCommittedCompactionInfoRequest"); @@ -295,8 +295,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetLatestCommittedCompactionInfoRequest) return this.equals((GetLatestCommittedCompactionInfoRequest)that); return false; @@ -365,7 +363,7 @@ public int compareTo(GetLatestCommittedCompactionInfoRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -375,7 +373,7 @@ public int compareTo(GetLatestCommittedCompactionInfoRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTablename()).compareTo(other.isSetTablename()); + lastComparison = java.lang.Boolean.compare(isSetTablename(), other.isSetTablename()); if (lastComparison != 0) { return lastComparison; } @@ -385,7 +383,7 @@ public int compareTo(GetLatestCommittedCompactionInfoRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionnames()).compareTo(other.isSetPartitionnames()); + lastComparison = java.lang.Boolean.compare(isSetPartitionnames(), other.isSetPartitionnames()); if (lastComparison != 0) { return lastComparison; } @@ -608,7 +606,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetLatestCommittedCo java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list843 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list843 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partitionnames = new java.util.ArrayList(_list843.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem844; for (int _i845 = 0; _i845 < _list843.size; ++_i845) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetLatestCommittedCompactionInfoResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetLatestCommittedCompactionInfoResponse.java index 529428afb826..87aa090b0085 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetLatestCommittedCompactionInfoResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetLatestCommittedCompactionInfoResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetLatestCommittedCompactionInfoResponse 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("GetLatestCommittedCompactionInfoResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetLatestCommittedCompactionInfoResponse) return this.equals((GetLatestCommittedCompactionInfoResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(GetLatestCommittedCompactionInfoResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCompactions()).compareTo(other.isSetCompactions()); + lastComparison = java.lang.Boolean.compare(isSetCompactions(), other.isSetCompactions()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetLatestCommittedC public void read(org.apache.thrift.protocol.TProtocol prot, GetLatestCommittedCompactionInfoResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list851 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list851 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.compactions = new java.util.ArrayList(_list851.size); @org.apache.thrift.annotation.Nullable CompactionInfoStruct _elem852; for (int _i853 = 0; _i853 < _list851.size; ++_i853) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetOpenTxnsInfoResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetOpenTxnsInfoResponse.java index d8f75c04e6b8..e6ddc75e74cf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetOpenTxnsInfoResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetOpenTxnsInfoResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetOpenTxnsInfoResponse 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("GetOpenTxnsInfoResponse"); @@ -250,8 +250,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetOpenTxnsInfoResponse) return this.equals((GetOpenTxnsInfoResponse)that); return false; @@ -305,7 +303,7 @@ public int compareTo(GetOpenTxnsInfoResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTxn_high_water_mark()).compareTo(other.isSetTxn_high_water_mark()); + lastComparison = java.lang.Boolean.compare(isSetTxn_high_water_mark(), other.isSetTxn_high_water_mark()); if (lastComparison != 0) { return lastComparison; } @@ -315,7 +313,7 @@ public int compareTo(GetOpenTxnsInfoResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOpen_txns()).compareTo(other.isSetOpen_txns()); + lastComparison = java.lang.Boolean.compare(isSetOpen_txns(), other.isSetOpen_txns()); if (lastComparison != 0) { return lastComparison; } @@ -498,7 +496,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetOpenTxnsInfoRespo struct.txn_high_water_mark = iprot.readI64(); struct.setTxn_high_water_markIsSet(true); { - org.apache.thrift.protocol.TList _list681 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list681 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.open_txns = new java.util.ArrayList(_list681.size); @org.apache.thrift.annotation.Nullable TxnInfo _elem682; for (int _i683 = 0; _i683 < _list681.size; ++_i683) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetOpenTxnsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetOpenTxnsRequest.java index a0fd8863d942..cc36dd7fde9c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetOpenTxnsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetOpenTxnsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetOpenTxnsRequest 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("GetOpenTxnsRequest"); @@ -193,8 +193,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetOpenTxnsRequest) return this.equals((GetOpenTxnsRequest)that); return false; @@ -237,7 +235,7 @@ public int compareTo(GetOpenTxnsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetExcludeTxnTypes()).compareTo(other.isSetExcludeTxnTypes()); + lastComparison = java.lang.Boolean.compare(isSetExcludeTxnTypes(), other.isSetExcludeTxnTypes()); if (lastComparison != 0) { return lastComparison; } @@ -407,7 +405,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetOpenTxnsRequest s java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1377 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, iprot.readI32()); + org.apache.thrift.protocol.TList _list1377 = iprot.readListBegin(org.apache.thrift.protocol.TType.I32); struct.excludeTxnTypes = new java.util.ArrayList(_list1377.size); @org.apache.thrift.annotation.Nullable TxnType _elem1378; for (int _i1379 = 0; _i1379 < _list1377.size; ++_i1379) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetOpenTxnsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetOpenTxnsResponse.java index c998151f9dcd..19c5174e7041 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetOpenTxnsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetOpenTxnsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetOpenTxnsResponse 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("GetOpenTxnsResponse"); @@ -356,8 +356,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetOpenTxnsResponse) return this.equals((GetOpenTxnsResponse)that); return false; @@ -437,7 +435,7 @@ public int compareTo(GetOpenTxnsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTxn_high_water_mark()).compareTo(other.isSetTxn_high_water_mark()); + lastComparison = java.lang.Boolean.compare(isSetTxn_high_water_mark(), other.isSetTxn_high_water_mark()); if (lastComparison != 0) { return lastComparison; } @@ -447,7 +445,7 @@ public int compareTo(GetOpenTxnsResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOpen_txns()).compareTo(other.isSetOpen_txns()); + lastComparison = java.lang.Boolean.compare(isSetOpen_txns(), other.isSetOpen_txns()); if (lastComparison != 0) { return lastComparison; } @@ -457,7 +455,7 @@ public int compareTo(GetOpenTxnsResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMin_open_txn()).compareTo(other.isSetMin_open_txn()); + lastComparison = java.lang.Boolean.compare(isSetMin_open_txn(), other.isSetMin_open_txn()); if (lastComparison != 0) { return lastComparison; } @@ -467,7 +465,7 @@ public int compareTo(GetOpenTxnsResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAbortedBits()).compareTo(other.isSetAbortedBits()); + lastComparison = java.lang.Boolean.compare(isSetAbortedBits(), other.isSetAbortedBits()); if (lastComparison != 0) { return lastComparison; } @@ -702,7 +700,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetOpenTxnsResponse struct.txn_high_water_mark = iprot.readI64(); struct.setTxn_high_water_markIsSet(true); { - org.apache.thrift.protocol.TList _list689 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TList _list689 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); struct.open_txns = new java.util.ArrayList(_list689.size); long _elem690; for (int _i691 = 0; _i691 < _list689.size; ++_i691) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPackageRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPackageRequest.java index 696a975d6010..03a3dc082937 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPackageRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPackageRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPackageRequest 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("GetPackageRequest"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPackageRequest) return this.equals((GetPackageRequest)that); return false; @@ -348,7 +346,7 @@ public int compareTo(GetPackageRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(GetPackageRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(GetPackageRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPackageName()).compareTo(other.isSetPackageName()); + lastComparison = java.lang.Boolean.compare(isSetPackageName(), other.isSetPackageName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionNamesPsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionNamesPsRequest.java index 7b78fb3f550e..4bdd673fb809 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionNamesPsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionNamesPsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPartitionNamesPsRequest 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("GetPartitionNamesPsRequest"); @@ -489,8 +489,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPartitionNamesPsRequest) return this.equals((GetPartitionNamesPsRequest)that); return false; @@ -611,7 +609,7 @@ public int compareTo(GetPartitionNamesPsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -621,7 +619,7 @@ public int compareTo(GetPartitionNamesPsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -631,7 +629,7 @@ public int compareTo(GetPartitionNamesPsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -641,7 +639,7 @@ public int compareTo(GetPartitionNamesPsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartValues()).compareTo(other.isSetPartValues()); + lastComparison = java.lang.Boolean.compare(isSetPartValues(), other.isSetPartValues()); if (lastComparison != 0) { return lastComparison; } @@ -651,7 +649,7 @@ public int compareTo(GetPartitionNamesPsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMaxParts()).compareTo(other.isSetMaxParts()); + lastComparison = java.lang.Boolean.compare(isSetMaxParts(), other.isSetMaxParts()); if (lastComparison != 0) { return lastComparison; } @@ -661,7 +659,7 @@ public int compareTo(GetPartitionNamesPsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -671,7 +669,7 @@ public int compareTo(GetPartitionNamesPsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } @@ -1012,7 +1010,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionNamesPsR } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1329 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1329 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partValues = new java.util.ArrayList(_list1329.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1330; for (int _i1331 = 0; _i1331 < _list1329.size; ++_i1331) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionNamesPsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionNamesPsResponse.java index 95fb23fbca37..864cb7acafc2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionNamesPsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionNamesPsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPartitionNamesPsResponse 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("GetPartitionNamesPsResponse"); @@ -196,8 +196,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPartitionNamesPsResponse) return this.equals((GetPartitionNamesPsResponse)that); return false; @@ -240,7 +238,7 @@ public int compareTo(GetPartitionNamesPsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNames()).compareTo(other.isSetNames()); + lastComparison = java.lang.Boolean.compare(isSetNames(), other.isSetNames()); if (lastComparison != 0) { return lastComparison; } @@ -398,7 +396,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetPartitionNamesPs public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionNamesPsResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list1337 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1337 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.names = new java.util.ArrayList(_list1337.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1338; for (int _i1339 = 0; _i1339 < _list1337.size; ++_i1339) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionRequest.java index 0098b553c972..dc28770654ce 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPartitionRequest 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("GetPartitionRequest"); @@ -443,8 +443,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPartitionRequest) return this.equals((GetPartitionRequest)that); return false; @@ -552,7 +550,7 @@ public int compareTo(GetPartitionRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -562,7 +560,7 @@ public int compareTo(GetPartitionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -572,7 +570,7 @@ public int compareTo(GetPartitionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -582,7 +580,7 @@ public int compareTo(GetPartitionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartVals()).compareTo(other.isSetPartVals()); + lastComparison = java.lang.Boolean.compare(isSetPartVals(), other.isSetPartVals()); if (lastComparison != 0) { return lastComparison; } @@ -592,7 +590,7 @@ public int compareTo(GetPartitionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -602,7 +600,7 @@ public int compareTo(GetPartitionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } @@ -907,7 +905,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionRequest struct.tblName = iprot.readString(); struct.setTblNameIsSet(true); { - org.apache.thrift.protocol.TList _list1313 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1313 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partVals = new java.util.ArrayList(_list1313.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1314; for (int _i1315 = 0; _i1315 < _list1313.size; ++_i1315) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionResponse.java index ec10c2d9915a..16f31ad5ab21 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPartitionResponse 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("GetPartitionResponse"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPartitionResponse) return this.equals((GetPartitionResponse)that); return false; @@ -222,7 +220,7 @@ public int compareTo(GetPartitionResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartition()).compareTo(other.isSetPartition()); + lastComparison = java.lang.Boolean.compare(isSetPartition(), other.isSetPartition()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsByNamesRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsByNamesRequest.java index 08e34c21671c..506490658e91 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsByNamesRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsByNamesRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPartitionsByNamesRequest 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("GetPartitionsByNamesRequest"); @@ -647,8 +647,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPartitionsByNamesRequest) return this.equals((GetPartitionsByNamesRequest)that); return false; @@ -808,7 +806,7 @@ public int compareTo(GetPartitionsByNamesRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -818,7 +816,7 @@ public int compareTo(GetPartitionsByNamesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -828,7 +826,7 @@ public int compareTo(GetPartitionsByNamesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNames()).compareTo(other.isSetNames()); + lastComparison = java.lang.Boolean.compare(isSetNames(), other.isSetNames()); if (lastComparison != 0) { return lastComparison; } @@ -838,7 +836,7 @@ public int compareTo(GetPartitionsByNamesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGet_col_stats()).compareTo(other.isSetGet_col_stats()); + lastComparison = java.lang.Boolean.compare(isSetGet_col_stats(), other.isSetGet_col_stats()); if (lastComparison != 0) { return lastComparison; } @@ -848,7 +846,7 @@ public int compareTo(GetPartitionsByNamesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorCapabilities()).compareTo(other.isSetProcessorCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetProcessorCapabilities(), other.isSetProcessorCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -858,7 +856,7 @@ public int compareTo(GetPartitionsByNamesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorIdentifier()).compareTo(other.isSetProcessorIdentifier()); + lastComparison = java.lang.Boolean.compare(isSetProcessorIdentifier(), other.isSetProcessorIdentifier()); if (lastComparison != 0) { return lastComparison; } @@ -868,7 +866,7 @@ public int compareTo(GetPartitionsByNamesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEngine()).compareTo(other.isSetEngine()); + lastComparison = java.lang.Boolean.compare(isSetEngine(), other.isSetEngine()); if (lastComparison != 0) { return lastComparison; } @@ -878,7 +876,7 @@ public int compareTo(GetPartitionsByNamesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -888,7 +886,7 @@ public int compareTo(GetPartitionsByNamesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGetFileMetadata()).compareTo(other.isSetGetFileMetadata()); + lastComparison = java.lang.Boolean.compare(isSetGetFileMetadata(), other.isSetGetFileMetadata()); if (lastComparison != 0) { return lastComparison; } @@ -898,7 +896,7 @@ public int compareTo(GetPartitionsByNamesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } @@ -1345,7 +1343,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsByNames java.util.BitSet incoming = iprot.readBitSet(8); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list644 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list644 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.names = new java.util.ArrayList(_list644.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem645; for (int _i646 = 0; _i646 < _list644.size; ++_i646) @@ -1362,7 +1360,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsByNames } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list647 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list647 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.processorCapabilities = new java.util.ArrayList(_list647.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem648; for (int _i649 = 0; _i649 < _list647.size; ++_i649) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsByNamesResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsByNamesResult.java index 0d44c94e563e..80fc958d921e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsByNamesResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsByNamesResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPartitionsByNamesResult 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("GetPartitionsByNamesResult"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPartitionsByNamesResult) return this.equals((GetPartitionsByNamesResult)that); return false; @@ -243,7 +241,7 @@ public int compareTo(GetPartitionsByNamesResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitions()).compareTo(other.isSetPartitions()); + lastComparison = java.lang.Boolean.compare(isSetPartitions(), other.isSetPartitions()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetPartitionsByName public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsByNamesResult struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list655 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list655 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitions = new java.util.ArrayList(_list655.size); @org.apache.thrift.annotation.Nullable Partition _elem656; for (int _i657 = 0; _i657 < _list655.size; ++_i657) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsFilterSpec.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsFilterSpec.java index 5454876da85a..0fbd9947da2c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsFilterSpec.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsFilterSpec.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPartitionsFilterSpec 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("GetPartitionsFilterSpec"); @@ -250,8 +250,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPartitionsFilterSpec) return this.equals((GetPartitionsFilterSpec)that); return false; @@ -307,7 +305,7 @@ public int compareTo(GetPartitionsFilterSpec other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFilterMode()).compareTo(other.isSetFilterMode()); + lastComparison = java.lang.Boolean.compare(isSetFilterMode(), other.isSetFilterMode()); if (lastComparison != 0) { return lastComparison; } @@ -317,7 +315,7 @@ public int compareTo(GetPartitionsFilterSpec other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFilters()).compareTo(other.isSetFilters()); + lastComparison = java.lang.Boolean.compare(isSetFilters(), other.isSetFilters()); if (lastComparison != 0) { return lastComparison; } @@ -519,7 +517,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsFilterS } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1265 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1265 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.filters = new java.util.ArrayList(_list1265.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1266; for (int _i1267 = 0; _i1267 < _list1265.size; ++_i1267) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsPsWithAuthRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsPsWithAuthRequest.java index 43b61274eab9..a3bfbe1864cb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsPsWithAuthRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsPsWithAuthRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPartitionsPsWithAuthRequest 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("GetPartitionsPsWithAuthRequest"); @@ -603,8 +603,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPartitionsPsWithAuthRequest) return this.equals((GetPartitionsPsWithAuthRequest)that); return false; @@ -751,7 +749,7 @@ public int compareTo(GetPartitionsPsWithAuthRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -761,7 +759,7 @@ public int compareTo(GetPartitionsPsWithAuthRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -771,7 +769,7 @@ public int compareTo(GetPartitionsPsWithAuthRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -781,7 +779,7 @@ public int compareTo(GetPartitionsPsWithAuthRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartVals()).compareTo(other.isSetPartVals()); + lastComparison = java.lang.Boolean.compare(isSetPartVals(), other.isSetPartVals()); if (lastComparison != 0) { return lastComparison; } @@ -791,7 +789,7 @@ public int compareTo(GetPartitionsPsWithAuthRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMaxParts()).compareTo(other.isSetMaxParts()); + lastComparison = java.lang.Boolean.compare(isSetMaxParts(), other.isSetMaxParts()); if (lastComparison != 0) { return lastComparison; } @@ -801,7 +799,7 @@ public int compareTo(GetPartitionsPsWithAuthRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUserName()).compareTo(other.isSetUserName()); + lastComparison = java.lang.Boolean.compare(isSetUserName(), other.isSetUserName()); if (lastComparison != 0) { return lastComparison; } @@ -811,7 +809,7 @@ public int compareTo(GetPartitionsPsWithAuthRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGroupNames()).compareTo(other.isSetGroupNames()); + lastComparison = java.lang.Boolean.compare(isSetGroupNames(), other.isSetGroupNames()); if (lastComparison != 0) { return lastComparison; } @@ -821,7 +819,7 @@ public int compareTo(GetPartitionsPsWithAuthRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -831,7 +829,7 @@ public int compareTo(GetPartitionsPsWithAuthRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } @@ -1257,7 +1255,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsPsWithA } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1350 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1350 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partVals = new java.util.ArrayList(_list1350.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1351; for (int _i1352 = 0; _i1352 < _list1350.size; ++_i1352) @@ -1278,7 +1276,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsPsWithA } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1353 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1353 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.groupNames = new java.util.ArrayList(_list1353.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1354; for (int _i1355 = 0; _i1355 < _list1353.size; ++_i1355) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsPsWithAuthResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsPsWithAuthResponse.java index 8e25548f9fe5..3318c0696bb1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsPsWithAuthResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsPsWithAuthResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPartitionsPsWithAuthResponse 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("GetPartitionsPsWithAuthResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPartitionsPsWithAuthResponse) return this.equals((GetPartitionsPsWithAuthResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(GetPartitionsPsWithAuthResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitions()).compareTo(other.isSetPartitions()); + lastComparison = java.lang.Boolean.compare(isSetPartitions(), other.isSetPartitions()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetPartitionsPsWith public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsPsWithAuthResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list1361 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1361 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitions = new java.util.ArrayList(_list1361.size); @org.apache.thrift.annotation.Nullable Partition _elem1362; for (int _i1363 = 0; _i1363 < _list1361.size; ++_i1363) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsRequest.java index 9ab31c9f4a54..0e8b2967fc79 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPartitionsRequest 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("GetPartitionsRequest"); @@ -701,8 +701,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPartitionsRequest) return this.equals((GetPartitionsRequest)that); return false; @@ -875,7 +873,7 @@ public int compareTo(GetPartitionsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -885,7 +883,7 @@ public int compareTo(GetPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -895,7 +893,7 @@ public int compareTo(GetPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -905,7 +903,7 @@ public int compareTo(GetPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWithAuth()).compareTo(other.isSetWithAuth()); + lastComparison = java.lang.Boolean.compare(isSetWithAuth(), other.isSetWithAuth()); if (lastComparison != 0) { return lastComparison; } @@ -915,7 +913,7 @@ public int compareTo(GetPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUser()).compareTo(other.isSetUser()); + lastComparison = java.lang.Boolean.compare(isSetUser(), other.isSetUser()); if (lastComparison != 0) { return lastComparison; } @@ -925,7 +923,7 @@ public int compareTo(GetPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGroupNames()).compareTo(other.isSetGroupNames()); + lastComparison = java.lang.Boolean.compare(isSetGroupNames(), other.isSetGroupNames()); if (lastComparison != 0) { return lastComparison; } @@ -935,7 +933,7 @@ public int compareTo(GetPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProjectionSpec()).compareTo(other.isSetProjectionSpec()); + lastComparison = java.lang.Boolean.compare(isSetProjectionSpec(), other.isSetProjectionSpec()); if (lastComparison != 0) { return lastComparison; } @@ -945,7 +943,7 @@ public int compareTo(GetPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFilterSpec()).compareTo(other.isSetFilterSpec()); + lastComparison = java.lang.Boolean.compare(isSetFilterSpec(), other.isSetFilterSpec()); if (lastComparison != 0) { return lastComparison; } @@ -955,7 +953,7 @@ public int compareTo(GetPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorCapabilities()).compareTo(other.isSetProcessorCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetProcessorCapabilities(), other.isSetProcessorCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -965,7 +963,7 @@ public int compareTo(GetPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorIdentifier()).compareTo(other.isSetProcessorIdentifier()); + lastComparison = java.lang.Boolean.compare(isSetProcessorIdentifier(), other.isSetProcessorIdentifier()); if (lastComparison != 0) { return lastComparison; } @@ -975,7 +973,7 @@ public int compareTo(GetPartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -1483,7 +1481,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsRequest } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list1286 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1286 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.groupNames = new java.util.ArrayList(_list1286.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1287; for (int _i1288 = 0; _i1288 < _list1286.size; ++_i1288) @@ -1506,7 +1504,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsRequest } if (incoming.get(8)) { { - org.apache.thrift.protocol.TList _list1289 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1289 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.processorCapabilities = new java.util.ArrayList(_list1289.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1290; for (int _i1291 = 0; _i1291 < _list1289.size; ++_i1291) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsResponse.java index a203d5702075..9e104005ba73 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPartitionsResponse 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("GetPartitionsResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPartitionsResponse) return this.equals((GetPartitionsResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(GetPartitionsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitionSpec()).compareTo(other.isSetPartitionSpec()); + lastComparison = java.lang.Boolean.compare(isSetPartitionSpec(), other.isSetPartitionSpec()); if (lastComparison != 0) { return lastComparison; } @@ -407,7 +405,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsRespons java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1273 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1273 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitionSpec = new java.util.ArrayList(_list1273.size); @org.apache.thrift.annotation.Nullable PartitionSpec _elem1274; for (int _i1275 = 0; _i1275 < _list1273.size; ++_i1275) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPrincipalsInRoleRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPrincipalsInRoleRequest.java index 557548527a57..2df1c25aba28 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPrincipalsInRoleRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPrincipalsInRoleRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPrincipalsInRoleRequest 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("GetPrincipalsInRoleRequest"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPrincipalsInRoleRequest) return this.equals((GetPrincipalsInRoleRequest)that); return false; @@ -222,7 +220,7 @@ public int compareTo(GetPrincipalsInRoleRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRoleName()).compareTo(other.isSetRoleName()); + lastComparison = java.lang.Boolean.compare(isSetRoleName(), other.isSetRoleName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPrincipalsInRoleResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPrincipalsInRoleResponse.java index aebf4ab534de..921e9cde3914 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPrincipalsInRoleResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPrincipalsInRoleResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetPrincipalsInRoleResponse 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("GetPrincipalsInRoleResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetPrincipalsInRoleResponse) return this.equals((GetPrincipalsInRoleResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(GetPrincipalsInRoleResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPrincipalGrants()).compareTo(other.isSetPrincipalGrants()); + lastComparison = java.lang.Boolean.compare(isSetPrincipalGrants(), other.isSetPrincipalGrants()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetPrincipalsInRole public void read(org.apache.thrift.protocol.TProtocol prot, GetPrincipalsInRoleResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list147 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list147 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.principalGrants = new java.util.ArrayList(_list147.size); @org.apache.thrift.annotation.Nullable RolePrincipalGrant _elem148; for (int _i149 = 0; _i149 < _list147.size; ++_i149) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetProjectionsSpec.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetProjectionsSpec.java index 6aff233c3682..28dfd645de5a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetProjectionsSpec.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetProjectionsSpec.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetProjectionsSpec 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("GetProjectionsSpec"); @@ -296,8 +296,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetProjectionsSpec) return this.equals((GetProjectionsSpec)that); return false; @@ -366,7 +364,7 @@ public int compareTo(GetProjectionsSpec other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFieldList()).compareTo(other.isSetFieldList()); + lastComparison = java.lang.Boolean.compare(isSetFieldList(), other.isSetFieldList()); if (lastComparison != 0) { return lastComparison; } @@ -376,7 +374,7 @@ public int compareTo(GetProjectionsSpec other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIncludeParamKeyPattern()).compareTo(other.isSetIncludeParamKeyPattern()); + lastComparison = java.lang.Boolean.compare(isSetIncludeParamKeyPattern(), other.isSetIncludeParamKeyPattern()); if (lastComparison != 0) { return lastComparison; } @@ -386,7 +384,7 @@ public int compareTo(GetProjectionsSpec other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetExcludeParamKeyPattern()).compareTo(other.isSetExcludeParamKeyPattern()); + lastComparison = java.lang.Boolean.compare(isSetExcludeParamKeyPattern(), other.isSetExcludeParamKeyPattern()); if (lastComparison != 0) { return lastComparison; } @@ -603,7 +601,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetProjectionsSpec s java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1023 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1023 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.fieldList = new java.util.ArrayList(_list1023.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1024; for (int _i1025 = 0; _i1025 < _list1023.size; ++_i1025) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetReplicationMetricsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetReplicationMetricsRequest.java index 9d7754e943cd..7cbc87830e83 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetReplicationMetricsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetReplicationMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetReplicationMetricsRequest 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("GetReplicationMetricsRequest"); @@ -266,8 +266,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetReplicationMetricsRequest) return this.equals((GetReplicationMetricsRequest)that); return false; @@ -336,7 +334,7 @@ public int compareTo(GetReplicationMetricsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetScheduledExecutionId()).compareTo(other.isSetScheduledExecutionId()); + lastComparison = java.lang.Boolean.compare(isSetScheduledExecutionId(), other.isSetScheduledExecutionId()); if (lastComparison != 0) { return lastComparison; } @@ -346,7 +344,7 @@ public int compareTo(GetReplicationMetricsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPolicy()).compareTo(other.isSetPolicy()); + lastComparison = java.lang.Boolean.compare(isSetPolicy(), other.isSetPolicy()); if (lastComparison != 0) { return lastComparison; } @@ -356,7 +354,7 @@ public int compareTo(GetReplicationMetricsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDumpExecutionId()).compareTo(other.isSetDumpExecutionId()); + lastComparison = java.lang.Boolean.compare(isSetDumpExecutionId(), other.isSetDumpExecutionId()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetRoleGrantsForPrincipalRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetRoleGrantsForPrincipalRequest.java index 4a022df6a406..8d0e1a969b92 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetRoleGrantsForPrincipalRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetRoleGrantsForPrincipalRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetRoleGrantsForPrincipalRequest 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("GetRoleGrantsForPrincipalRequest"); @@ -240,8 +240,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetRoleGrantsForPrincipalRequest) return this.equals((GetRoleGrantsForPrincipalRequest)that); return false; @@ -297,7 +295,7 @@ public int compareTo(GetRoleGrantsForPrincipalRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPrincipal_name()).compareTo(other.isSetPrincipal_name()); + lastComparison = java.lang.Boolean.compare(isSetPrincipal_name(), other.isSetPrincipal_name()); if (lastComparison != 0) { return lastComparison; } @@ -307,7 +305,7 @@ public int compareTo(GetRoleGrantsForPrincipalRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipal_type()).compareTo(other.isSetPrincipal_type()); + lastComparison = java.lang.Boolean.compare(isSetPrincipal_type(), other.isSetPrincipal_type()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetRoleGrantsForPrincipalResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetRoleGrantsForPrincipalResponse.java index 4f20b3d99d51..43c8e61f0452 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetRoleGrantsForPrincipalResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetRoleGrantsForPrincipalResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetRoleGrantsForPrincipalResponse 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("GetRoleGrantsForPrincipalResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetRoleGrantsForPrincipalResponse) return this.equals((GetRoleGrantsForPrincipalResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(GetRoleGrantsForPrincipalResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPrincipalGrants()).compareTo(other.isSetPrincipalGrants()); + lastComparison = java.lang.Boolean.compare(isSetPrincipalGrants(), other.isSetPrincipalGrants()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetRoleGrantsForPri public void read(org.apache.thrift.protocol.TProtocol prot, GetRoleGrantsForPrincipalResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list139 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list139 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.principalGrants = new java.util.ArrayList(_list139.size); @org.apache.thrift.annotation.Nullable RolePrincipalGrant _elem140; for (int _i141 = 0; _i141 < _list139.size; ++_i141) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetRuntimeStatsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetRuntimeStatsRequest.java index d538deb3491e..35c06b883b87 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetRuntimeStatsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetRuntimeStatsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetRuntimeStatsRequest 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("GetRuntimeStatsRequest"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetRuntimeStatsRequest) return this.equals((GetRuntimeStatsRequest)that); return false; @@ -281,7 +279,7 @@ public int compareTo(GetRuntimeStatsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMaxWeight()).compareTo(other.isSetMaxWeight()); + lastComparison = java.lang.Boolean.compare(isSetMaxWeight(), other.isSetMaxWeight()); if (lastComparison != 0) { return lastComparison; } @@ -291,7 +289,7 @@ public int compareTo(GetRuntimeStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMaxCreateTime()).compareTo(other.isSetMaxCreateTime()); + lastComparison = java.lang.Boolean.compare(isSetMaxCreateTime(), other.isSetMaxCreateTime()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetSchemaRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetSchemaRequest.java index 5a694c0214f7..352fb78cb7bb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetSchemaRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetSchemaRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetSchemaRequest 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("GetSchemaRequest"); @@ -423,8 +423,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetSchemaRequest) return this.equals((GetSchemaRequest)that); return false; @@ -532,7 +530,7 @@ public int compareTo(GetSchemaRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -542,7 +540,7 @@ public int compareTo(GetSchemaRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -552,7 +550,7 @@ public int compareTo(GetSchemaRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -562,7 +560,7 @@ public int compareTo(GetSchemaRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvContext()).compareTo(other.isSetEnvContext()); + lastComparison = java.lang.Boolean.compare(isSetEnvContext(), other.isSetEnvContext()); if (lastComparison != 0) { return lastComparison; } @@ -572,7 +570,7 @@ public int compareTo(GetSchemaRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -582,7 +580,7 @@ public int compareTo(GetSchemaRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetSchemaResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetSchemaResponse.java index 097ca5b6a136..66be81636355 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetSchemaResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetSchemaResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetSchemaResponse 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("GetSchemaResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetSchemaResponse) return this.equals((GetSchemaResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(GetSchemaResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFields()).compareTo(other.isSetFields()); + lastComparison = java.lang.Boolean.compare(isSetFields(), other.isSetFields()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetSchemaResponse s public void read(org.apache.thrift.protocol.TProtocol prot, GetSchemaResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list1305 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1305 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.fields = new java.util.ArrayList(_list1305.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem1306; for (int _i1307 = 0; _i1307 < _list1305.size; ++_i1307) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetSerdeRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetSerdeRequest.java index 6735ada53d79..610848439198 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetSerdeRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetSerdeRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetSerdeRequest 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("GetSerdeRequest"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetSerdeRequest) return this.equals((GetSerdeRequest)that); return false; @@ -222,7 +220,7 @@ public int compareTo(GetSerdeRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSerdeName()).compareTo(other.isSetSerdeName()); + lastComparison = java.lang.Boolean.compare(isSetSerdeName(), other.isSetSerdeName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTableRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTableRequest.java index a34086993089..4828175788e9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTableRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTableRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetTableRequest 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("GetTableRequest"); @@ -631,8 +631,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetTableRequest) return this.equals((GetTableRequest)that); return false; @@ -792,7 +790,7 @@ public int compareTo(GetTableRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -802,7 +800,7 @@ public int compareTo(GetTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -812,7 +810,7 @@ public int compareTo(GetTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCapabilities()).compareTo(other.isSetCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetCapabilities(), other.isSetCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -822,7 +820,7 @@ public int compareTo(GetTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -832,7 +830,7 @@ public int compareTo(GetTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -842,7 +840,7 @@ public int compareTo(GetTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGetColumnStats()).compareTo(other.isSetGetColumnStats()); + lastComparison = java.lang.Boolean.compare(isSetGetColumnStats(), other.isSetGetColumnStats()); if (lastComparison != 0) { return lastComparison; } @@ -852,7 +850,7 @@ public int compareTo(GetTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorCapabilities()).compareTo(other.isSetProcessorCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetProcessorCapabilities(), other.isSetProcessorCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -862,7 +860,7 @@ public int compareTo(GetTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorIdentifier()).compareTo(other.isSetProcessorIdentifier()); + lastComparison = java.lang.Boolean.compare(isSetProcessorIdentifier(), other.isSetProcessorIdentifier()); if (lastComparison != 0) { return lastComparison; } @@ -872,7 +870,7 @@ public int compareTo(GetTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEngine()).compareTo(other.isSetEngine()); + lastComparison = java.lang.Boolean.compare(isSetEngine(), other.isSetEngine()); if (lastComparison != 0) { return lastComparison; } @@ -882,7 +880,7 @@ public int compareTo(GetTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } @@ -1333,7 +1331,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetTableRequest stru } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1031 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1031 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.processorCapabilities = new java.util.ArrayList(_list1031.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1032; for (int _i1033 = 0; _i1033 < _list1031.size; ++_i1033) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTableResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTableResult.java index 2f18f281f4fb..5060874c8608 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTableResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTableResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetTableResult 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("GetTableResult"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetTableResult) return this.equals((GetTableResult)that); return false; @@ -284,7 +282,7 @@ public int compareTo(GetTableResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTable()).compareTo(other.isSetTable()); + lastComparison = java.lang.Boolean.compare(isSetTable(), other.isSetTable()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(GetTableResult other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsStatsCompliant()).compareTo(other.isSetIsStatsCompliant()); + lastComparison = java.lang.Boolean.compare(isSetIsStatsCompliant(), other.isSetIsStatsCompliant()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesExtRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesExtRequest.java index 301709c53fbf..8a8967349aef 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesExtRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesExtRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetTablesExtRequest 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("GetTablesExtRequest"); @@ -490,8 +490,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetTablesExtRequest) return this.equals((GetTablesExtRequest)that); return false; @@ -610,7 +608,7 @@ public int compareTo(GetTablesExtRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatalog()).compareTo(other.isSetCatalog()); + lastComparison = java.lang.Boolean.compare(isSetCatalog(), other.isSetCatalog()); if (lastComparison != 0) { return lastComparison; } @@ -620,7 +618,7 @@ public int compareTo(GetTablesExtRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDatabase()).compareTo(other.isSetDatabase()); + lastComparison = java.lang.Boolean.compare(isSetDatabase(), other.isSetDatabase()); if (lastComparison != 0) { return lastComparison; } @@ -630,7 +628,7 @@ public int compareTo(GetTablesExtRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableNamePattern()).compareTo(other.isSetTableNamePattern()); + lastComparison = java.lang.Boolean.compare(isSetTableNamePattern(), other.isSetTableNamePattern()); if (lastComparison != 0) { return lastComparison; } @@ -640,7 +638,7 @@ public int compareTo(GetTablesExtRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRequestedFields()).compareTo(other.isSetRequestedFields()); + lastComparison = java.lang.Boolean.compare(isSetRequestedFields(), other.isSetRequestedFields()); if (lastComparison != 0) { return lastComparison; } @@ -650,7 +648,7 @@ public int compareTo(GetTablesExtRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLimit()).compareTo(other.isSetLimit()); + lastComparison = java.lang.Boolean.compare(isSetLimit(), other.isSetLimit()); if (lastComparison != 0) { return lastComparison; } @@ -660,7 +658,7 @@ public int compareTo(GetTablesExtRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorCapabilities()).compareTo(other.isSetProcessorCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetProcessorCapabilities(), other.isSetProcessorCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -670,7 +668,7 @@ public int compareTo(GetTablesExtRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorIdentifier()).compareTo(other.isSetProcessorIdentifier()); + lastComparison = java.lang.Boolean.compare(isSetProcessorIdentifier(), other.isSetProcessorIdentifier()); if (lastComparison != 0) { return lastComparison; } @@ -1005,7 +1003,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetTablesExtRequest } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1063 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1063 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.processorCapabilities = new java.util.ArrayList(_list1063.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1064; for (int _i1065 = 0; _i1065 < _list1063.size; ++_i1065) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesExtRequestFields.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesExtRequestFields.java index 4020dd29ebce..0b86934d3ac0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesExtRequestFields.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesExtRequestFields.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum GetTablesExtRequestFields implements org.apache.thrift.TEnum { ACCESS_TYPE(1), PROCESSOR_CAPABILITIES(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java index a8909f23d0fc..32386f0c35ef 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetTablesRequest 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("GetTablesRequest"); @@ -551,8 +551,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetTablesRequest) return this.equals((GetTablesRequest)that); return false; @@ -686,7 +684,7 @@ public int compareTo(GetTablesRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -696,7 +694,7 @@ public int compareTo(GetTablesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblNames()).compareTo(other.isSetTblNames()); + lastComparison = java.lang.Boolean.compare(isSetTblNames(), other.isSetTblNames()); if (lastComparison != 0) { return lastComparison; } @@ -706,7 +704,7 @@ public int compareTo(GetTablesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCapabilities()).compareTo(other.isSetCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetCapabilities(), other.isSetCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -716,7 +714,7 @@ public int compareTo(GetTablesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -726,7 +724,7 @@ public int compareTo(GetTablesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorCapabilities()).compareTo(other.isSetProcessorCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetProcessorCapabilities(), other.isSetProcessorCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -736,7 +734,7 @@ public int compareTo(GetTablesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcessorIdentifier()).compareTo(other.isSetProcessorIdentifier()); + lastComparison = java.lang.Boolean.compare(isSetProcessorIdentifier(), other.isSetProcessorIdentifier()); if (lastComparison != 0) { return lastComparison; } @@ -746,7 +744,7 @@ public int compareTo(GetTablesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProjectionSpec()).compareTo(other.isSetProjectionSpec()); + lastComparison = java.lang.Boolean.compare(isSetProjectionSpec(), other.isSetProjectionSpec()); if (lastComparison != 0) { return lastComparison; } @@ -756,7 +754,7 @@ public int compareTo(GetTablesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTablesPattern()).compareTo(other.isSetTablesPattern()); + lastComparison = java.lang.Boolean.compare(isSetTablesPattern(), other.isSetTablesPattern()); if (lastComparison != 0) { return lastComparison; } @@ -1168,7 +1166,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetTablesRequest str java.util.BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1044 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1044 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.tblNames = new java.util.ArrayList(_list1044.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1045; for (int _i1046 = 0; _i1046 < _list1044.size; ++_i1046) @@ -1190,7 +1188,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetTablesRequest str } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list1047 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1047 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.processorCapabilities = new java.util.ArrayList(_list1047.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1048; for (int _i1049 = 0; _i1049 < _list1047.size; ++_i1049) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java index 4f2e47ec8fba..6af18fd499f2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetTablesResult 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("GetTablesResult"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetTablesResult) return this.equals((GetTablesResult)that); return false; @@ -243,7 +241,7 @@ public int compareTo(GetTablesResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTables()).compareTo(other.isSetTables()); + lastComparison = java.lang.Boolean.compare(isSetTables(), other.isSetTables()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetTablesResult str public void read(org.apache.thrift.protocol.TProtocol prot, GetTablesResult struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list1055 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1055 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.tables = new java.util.ArrayList(_list1055.size); @org.apache.thrift.annotation.Nullable Table _elem1056; for (int _i1057 = 0; _i1057 < _list1055.size; ++_i1057) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsRequest.java index c119fccdf05d..09191e55f5dc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetValidWriteIdsRequest 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("GetValidWriteIdsRequest"); @@ -293,8 +293,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetValidWriteIdsRequest) return this.equals((GetValidWriteIdsRequest)that); return false; @@ -363,7 +361,7 @@ public int compareTo(GetValidWriteIdsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFullTableNames()).compareTo(other.isSetFullTableNames()); + lastComparison = java.lang.Boolean.compare(isSetFullTableNames(), other.isSetFullTableNames()); if (lastComparison != 0) { return lastComparison; } @@ -373,7 +371,7 @@ public int compareTo(GetValidWriteIdsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidTxnList()).compareTo(other.isSetValidTxnList()); + lastComparison = java.lang.Boolean.compare(isSetValidTxnList(), other.isSetValidTxnList()); if (lastComparison != 0) { return lastComparison; } @@ -383,7 +381,7 @@ public int compareTo(GetValidWriteIdsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteId()).compareTo(other.isSetWriteId()); + lastComparison = java.lang.Boolean.compare(isSetWriteId(), other.isSetWriteId()); if (lastComparison != 0) { return lastComparison; } @@ -601,7 +599,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetValidWriteIdsReq public void read(org.apache.thrift.protocol.TProtocol prot, GetValidWriteIdsRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list745 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list745 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.fullTableNames = new java.util.ArrayList(_list745.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem746; for (int _i747 = 0; _i747 < _list745.size; ++_i747) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsResponse.java index f36e642f9a10..5458f5c08268 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GetValidWriteIdsResponse 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("GetValidWriteIdsResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GetValidWriteIdsResponse) return this.equals((GetValidWriteIdsResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(GetValidWriteIdsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTblValidWriteIds()).compareTo(other.isSetTblValidWriteIds()); + lastComparison = java.lang.Boolean.compare(isSetTblValidWriteIds(), other.isSetTblValidWriteIds()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetValidWriteIdsRes public void read(org.apache.thrift.protocol.TProtocol prot, GetValidWriteIdsResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list761 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list761 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.tblValidWriteIds = new java.util.ArrayList(_list761.size); @org.apache.thrift.annotation.Nullable TableValidWriteIds _elem762; for (int _i763 = 0; _i763 < _list761.size; ++_i763) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokePrivilegeRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokePrivilegeRequest.java index 933bc4f8fdc6..97532822fc02 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokePrivilegeRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokePrivilegeRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GrantRevokePrivilegeRequest 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("GrantRevokePrivilegeRequest"); @@ -289,8 +289,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GrantRevokePrivilegeRequest) return this.equals((GrantRevokePrivilegeRequest)that); return false; @@ -359,7 +357,7 @@ public int compareTo(GrantRevokePrivilegeRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequestType()).compareTo(other.isSetRequestType()); + lastComparison = java.lang.Boolean.compare(isSetRequestType(), other.isSetRequestType()); if (lastComparison != 0) { return lastComparison; } @@ -369,7 +367,7 @@ public int compareTo(GrantRevokePrivilegeRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrivileges()).compareTo(other.isSetPrivileges()); + lastComparison = java.lang.Boolean.compare(isSetPrivileges(), other.isSetPrivileges()); if (lastComparison != 0) { return lastComparison; } @@ -379,7 +377,7 @@ public int compareTo(GrantRevokePrivilegeRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRevokeGrantOption()).compareTo(other.isSetRevokeGrantOption()); + lastComparison = java.lang.Boolean.compare(isSetRevokeGrantOption(), other.isSetRevokeGrantOption()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokePrivilegeResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokePrivilegeResponse.java index d020002e15c2..0cea2a07e1ef 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokePrivilegeResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokePrivilegeResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GrantRevokePrivilegeResponse 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("GrantRevokePrivilegeResponse"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GrantRevokePrivilegeResponse) return this.equals((GrantRevokePrivilegeResponse)that); return false; @@ -216,7 +214,7 @@ public int compareTo(GrantRevokePrivilegeResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokeRoleRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokeRoleRequest.java index 8011a676a91e..0761aa3a2853 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokeRoleRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokeRoleRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GrantRevokeRoleRequest 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("GrantRevokeRoleRequest"); @@ -509,8 +509,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GrantRevokeRoleRequest) return this.equals((GrantRevokeRoleRequest)that); return false; @@ -631,7 +629,7 @@ public int compareTo(GrantRevokeRoleRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequestType()).compareTo(other.isSetRequestType()); + lastComparison = java.lang.Boolean.compare(isSetRequestType(), other.isSetRequestType()); if (lastComparison != 0) { return lastComparison; } @@ -641,7 +639,7 @@ public int compareTo(GrantRevokeRoleRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRoleName()).compareTo(other.isSetRoleName()); + lastComparison = java.lang.Boolean.compare(isSetRoleName(), other.isSetRoleName()); if (lastComparison != 0) { return lastComparison; } @@ -651,7 +649,7 @@ public int compareTo(GrantRevokeRoleRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipalName()).compareTo(other.isSetPrincipalName()); + lastComparison = java.lang.Boolean.compare(isSetPrincipalName(), other.isSetPrincipalName()); if (lastComparison != 0) { return lastComparison; } @@ -661,7 +659,7 @@ public int compareTo(GrantRevokeRoleRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipalType()).compareTo(other.isSetPrincipalType()); + lastComparison = java.lang.Boolean.compare(isSetPrincipalType(), other.isSetPrincipalType()); if (lastComparison != 0) { return lastComparison; } @@ -671,7 +669,7 @@ public int compareTo(GrantRevokeRoleRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantor()).compareTo(other.isSetGrantor()); + lastComparison = java.lang.Boolean.compare(isSetGrantor(), other.isSetGrantor()); if (lastComparison != 0) { return lastComparison; } @@ -681,7 +679,7 @@ public int compareTo(GrantRevokeRoleRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantorType()).compareTo(other.isSetGrantorType()); + lastComparison = java.lang.Boolean.compare(isSetGrantorType(), other.isSetGrantorType()); if (lastComparison != 0) { return lastComparison; } @@ -691,7 +689,7 @@ public int compareTo(GrantRevokeRoleRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantOption()).compareTo(other.isSetGrantOption()); + lastComparison = java.lang.Boolean.compare(isSetGrantOption(), other.isSetGrantOption()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokeRoleResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokeRoleResponse.java index c1fe31f4c2ea..a931c8937aba 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokeRoleResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokeRoleResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class GrantRevokeRoleResponse 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("GrantRevokeRoleResponse"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof GrantRevokeRoleResponse) return this.equals((GrantRevokeRoleResponse)that); return false; @@ -216,7 +214,7 @@ public int compareTo(GrantRevokeRoleResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokeType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokeType.java index cfb8346a2abf..a252a6450dc6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokeType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GrantRevokeType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum GrantRevokeType implements org.apache.thrift.TEnum { GRANT(1), REVOKE(2); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatRequest.java index c2e8cc76b6d7..5a9b49ecf420 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class HeartbeatRequest 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("HeartbeatRequest"); @@ -218,8 +218,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof HeartbeatRequest) return this.equals((HeartbeatRequest)that); return false; @@ -275,7 +273,7 @@ public int compareTo(HeartbeatRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetLockid()).compareTo(other.isSetLockid()); + lastComparison = java.lang.Boolean.compare(isSetLockid(), other.isSetLockid()); if (lastComparison != 0) { return lastComparison; } @@ -285,7 +283,7 @@ public int compareTo(HeartbeatRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxnid()).compareTo(other.isSetTxnid()); + lastComparison = java.lang.Boolean.compare(isSetTxnid(), other.isSetTxnid()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeRequest.java index 3a318f9cdc4d..edac50e9172e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class HeartbeatTxnRangeRequest 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("HeartbeatTxnRangeRequest"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof HeartbeatTxnRangeRequest) return this.equals((HeartbeatTxnRangeRequest)that); return false; @@ -281,7 +279,7 @@ public int compareTo(HeartbeatTxnRangeRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMin()).compareTo(other.isSetMin()); + lastComparison = java.lang.Boolean.compare(isSetMin(), other.isSetMin()); if (lastComparison != 0) { return lastComparison; } @@ -291,7 +289,7 @@ public int compareTo(HeartbeatTxnRangeRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMax()).compareTo(other.isSetMax()); + lastComparison = java.lang.Boolean.compare(isSetMax(), other.isSetMax()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java index 0f401c4b82dc..eb928fa81314 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class HeartbeatTxnRangeResponse 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("HeartbeatTxnRangeResponse"); @@ -264,8 +264,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof HeartbeatTxnRangeResponse) return this.equals((HeartbeatTxnRangeResponse)that); return false; @@ -321,7 +319,7 @@ public int compareTo(HeartbeatTxnRangeResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetAborted()).compareTo(other.isSetAborted()); + lastComparison = java.lang.Boolean.compare(isSetAborted(), other.isSetAborted()); if (lastComparison != 0) { return lastComparison; } @@ -331,7 +329,7 @@ public int compareTo(HeartbeatTxnRangeResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNosuch()).compareTo(other.isSetNosuch()); + lastComparison = java.lang.Boolean.compare(isSetNosuch(), other.isSetNosuch()); if (lastComparison != 0) { return lastComparison; } @@ -538,7 +536,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, HeartbeatTxnRangeRe public void read(org.apache.thrift.protocol.TProtocol prot, HeartbeatTxnRangeResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TSet _set814 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TSet _set814 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); struct.aborted = new java.util.HashSet(2*_set814.size); long _elem815; for (int _i816 = 0; _i816 < _set814.size; ++_i816) @@ -549,7 +547,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, HeartbeatTxnRangeRes } struct.setAbortedIsSet(true); { - org.apache.thrift.protocol.TSet _set817 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TSet _set817 = iprot.readSetBegin(org.apache.thrift.protocol.TType.I64); struct.nosuch = new java.util.HashSet(2*_set817.size); long _elem818; for (int _i819 = 0; _i819 < _set817.size; ++_i819) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HiveObjectPrivilege.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HiveObjectPrivilege.java index 5d4caf620e9a..1a1237091704 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HiveObjectPrivilege.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HiveObjectPrivilege.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class HiveObjectPrivilege 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("HiveObjectPrivilege"); @@ -390,8 +390,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof HiveObjectPrivilege) return this.equals((HiveObjectPrivilege)that); return false; @@ -486,7 +484,7 @@ public int compareTo(HiveObjectPrivilege other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetHiveObject()).compareTo(other.isSetHiveObject()); + lastComparison = java.lang.Boolean.compare(isSetHiveObject(), other.isSetHiveObject()); if (lastComparison != 0) { return lastComparison; } @@ -496,7 +494,7 @@ public int compareTo(HiveObjectPrivilege other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipalName()).compareTo(other.isSetPrincipalName()); + lastComparison = java.lang.Boolean.compare(isSetPrincipalName(), other.isSetPrincipalName()); if (lastComparison != 0) { return lastComparison; } @@ -506,7 +504,7 @@ public int compareTo(HiveObjectPrivilege other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipalType()).compareTo(other.isSetPrincipalType()); + lastComparison = java.lang.Boolean.compare(isSetPrincipalType(), other.isSetPrincipalType()); if (lastComparison != 0) { return lastComparison; } @@ -516,7 +514,7 @@ public int compareTo(HiveObjectPrivilege other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantInfo()).compareTo(other.isSetGrantInfo()); + lastComparison = java.lang.Boolean.compare(isSetGrantInfo(), other.isSetGrantInfo()); if (lastComparison != 0) { return lastComparison; } @@ -526,7 +524,7 @@ public int compareTo(HiveObjectPrivilege other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAuthorizer()).compareTo(other.isSetAuthorizer()); + lastComparison = java.lang.Boolean.compare(isSetAuthorizer(), other.isSetAuthorizer()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HiveObjectRef.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HiveObjectRef.java index 70cac6cad0c1..8c0c02e2ad64 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HiveObjectRef.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HiveObjectRef.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class HiveObjectRef 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("HiveObjectRef"); @@ -457,8 +457,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof HiveObjectRef) return this.equals((HiveObjectRef)that); return false; @@ -566,7 +564,7 @@ public int compareTo(HiveObjectRef other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetObjectType()).compareTo(other.isSetObjectType()); + lastComparison = java.lang.Boolean.compare(isSetObjectType(), other.isSetObjectType()); if (lastComparison != 0) { return lastComparison; } @@ -576,7 +574,7 @@ public int compareTo(HiveObjectRef other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -586,7 +584,7 @@ public int compareTo(HiveObjectRef other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetObjectName()).compareTo(other.isSetObjectName()); + lastComparison = java.lang.Boolean.compare(isSetObjectName(), other.isSetObjectName()); if (lastComparison != 0) { return lastComparison; } @@ -596,7 +594,7 @@ public int compareTo(HiveObjectRef other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartValues()).compareTo(other.isSetPartValues()); + lastComparison = java.lang.Boolean.compare(isSetPartValues(), other.isSetPartValues()); if (lastComparison != 0) { return lastComparison; } @@ -606,7 +604,7 @@ public int compareTo(HiveObjectRef other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColumnName()).compareTo(other.isSetColumnName()); + lastComparison = java.lang.Boolean.compare(isSetColumnName(), other.isSetColumnName()); if (lastComparison != 0) { return lastComparison; } @@ -616,7 +614,7 @@ public int compareTo(HiveObjectRef other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -930,7 +928,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, HiveObjectRef struct } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list61 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list61 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partValues = new java.util.ArrayList(_list61.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem62; for (int _i63 = 0; _i63 < _list61.size; ++_i63) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HiveObjectType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HiveObjectType.java index ec216df4599b..79e48eebc12c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HiveObjectType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HiveObjectType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum HiveObjectType implements org.apache.thrift.TEnum { GLOBAL(1), DATABASE(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ISchema.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ISchema.java index 631248f72400..dc4af0ac59e2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ISchema.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ISchema.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ISchema 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("ISchema"); @@ -612,8 +612,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ISchema) return this.equals((ISchema)that); return false; @@ -758,7 +756,7 @@ public int compareTo(ISchema other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSchemaType()).compareTo(other.isSetSchemaType()); + lastComparison = java.lang.Boolean.compare(isSetSchemaType(), other.isSetSchemaType()); if (lastComparison != 0) { return lastComparison; } @@ -768,7 +766,7 @@ public int compareTo(ISchema other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -778,7 +776,7 @@ public int compareTo(ISchema other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -788,7 +786,7 @@ public int compareTo(ISchema other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -798,7 +796,7 @@ public int compareTo(ISchema other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCompatibility()).compareTo(other.isSetCompatibility()); + lastComparison = java.lang.Boolean.compare(isSetCompatibility(), other.isSetCompatibility()); if (lastComparison != 0) { return lastComparison; } @@ -808,7 +806,7 @@ public int compareTo(ISchema other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidationLevel()).compareTo(other.isSetValidationLevel()); + lastComparison = java.lang.Boolean.compare(isSetValidationLevel(), other.isSetValidationLevel()); if (lastComparison != 0) { return lastComparison; } @@ -818,7 +816,7 @@ public int compareTo(ISchema other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCanEvolve()).compareTo(other.isSetCanEvolve()); + lastComparison = java.lang.Boolean.compare(isSetCanEvolve(), other.isSetCanEvolve()); if (lastComparison != 0) { return lastComparison; } @@ -828,7 +826,7 @@ public int compareTo(ISchema other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSchemaGroup()).compareTo(other.isSetSchemaGroup()); + lastComparison = java.lang.Boolean.compare(isSetSchemaGroup(), other.isSetSchemaGroup()); if (lastComparison != 0) { return lastComparison; } @@ -838,7 +836,7 @@ public int compareTo(ISchema other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDescription()).compareTo(other.isSetDescription()); + lastComparison = java.lang.Boolean.compare(isSetDescription(), other.isSetDescription()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ISchemaName.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ISchemaName.java index de595665a1e8..76025cff5141 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ISchemaName.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ISchemaName.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ISchemaName 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("ISchemaName"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ISchemaName) return this.equals((ISchemaName)that); return false; @@ -348,7 +346,7 @@ public int compareTo(ISchemaName other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(ISchemaName other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(ISchemaName other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSchemaName()).compareTo(other.isSetSchemaName()); + lastComparison = java.lang.Boolean.compare(isSetSchemaName(), other.isSetSchemaName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InsertEventRequestData.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InsertEventRequestData.java index 3bae54db418b..f466b9712ef2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InsertEventRequestData.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InsertEventRequestData.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class InsertEventRequestData 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("InsertEventRequestData"); @@ -443,8 +443,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof InsertEventRequestData) return this.equals((InsertEventRequestData)that); return false; @@ -539,7 +537,7 @@ public int compareTo(InsertEventRequestData other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReplace()).compareTo(other.isSetReplace()); + lastComparison = java.lang.Boolean.compare(isSetReplace(), other.isSetReplace()); if (lastComparison != 0) { return lastComparison; } @@ -549,7 +547,7 @@ public int compareTo(InsertEventRequestData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFilesAdded()).compareTo(other.isSetFilesAdded()); + lastComparison = java.lang.Boolean.compare(isSetFilesAdded(), other.isSetFilesAdded()); if (lastComparison != 0) { return lastComparison; } @@ -559,7 +557,7 @@ public int compareTo(InsertEventRequestData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFilesAddedChecksum()).compareTo(other.isSetFilesAddedChecksum()); + lastComparison = java.lang.Boolean.compare(isSetFilesAddedChecksum(), other.isSetFilesAddedChecksum()); if (lastComparison != 0) { return lastComparison; } @@ -569,7 +567,7 @@ public int compareTo(InsertEventRequestData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSubDirectoryList()).compareTo(other.isSetSubDirectoryList()); + lastComparison = java.lang.Boolean.compare(isSetSubDirectoryList(), other.isSetSubDirectoryList()); if (lastComparison != 0) { return lastComparison; } @@ -579,7 +577,7 @@ public int compareTo(InsertEventRequestData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionVal()).compareTo(other.isSetPartitionVal()); + lastComparison = java.lang.Boolean.compare(isSetPartitionVal(), other.isSetPartitionVal()); if (lastComparison != 0) { return lastComparison; } @@ -928,7 +926,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, InsertEventRequestD public void read(org.apache.thrift.protocol.TProtocol prot, InsertEventRequestData struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list898 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list898 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.filesAdded = new java.util.ArrayList(_list898.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem899; for (int _i900 = 0; _i900 < _list898.size; ++_i900) @@ -945,7 +943,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, InsertEventRequestDa } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list901 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list901 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.filesAddedChecksum = new java.util.ArrayList(_list901.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem902; for (int _i903 = 0; _i903 < _list901.size; ++_i903) @@ -958,7 +956,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, InsertEventRequestDa } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list904 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list904 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.subDirectoryList = new java.util.ArrayList(_list904.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem905; for (int _i906 = 0; _i906 < _list904.size; ++_i906) @@ -971,7 +969,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, InsertEventRequestDa } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list907 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list907 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partitionVal = new java.util.ArrayList(_list907.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem908; for (int _i909 = 0; _i909 < _list907.size; ++_i909) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidInputException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidInputException.java index 5d44b87a6e36..9dbf050aad51 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidInputException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidInputException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class InvalidInputException 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("InvalidInputException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof InvalidInputException) return this.equals((InvalidInputException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(InvalidInputException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidObjectException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidObjectException.java index bdef8c8bab59..38efa078e55c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidObjectException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidObjectException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class InvalidObjectException 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("InvalidObjectException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof InvalidObjectException) return this.equals((InvalidObjectException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(InvalidObjectException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidOperationException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidOperationException.java index 89b15b693d8e..dc427fe3212b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidOperationException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidOperationException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class InvalidOperationException 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("InvalidOperationException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof InvalidOperationException) return this.equals((InvalidOperationException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(InvalidOperationException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidPartitionException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidPartitionException.java index 68b7bc6dd6d4..fa378e341fed 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidPartitionException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InvalidPartitionException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class InvalidPartitionException 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("InvalidPartitionException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof InvalidPartitionException) return this.equals((InvalidPartitionException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(InvalidPartitionException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ListPackageRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ListPackageRequest.java index e27873d27b31..4cf0851bbe68 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ListPackageRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ListPackageRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ListPackageRequest 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("ListPackageRequest"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ListPackageRequest) return this.equals((ListPackageRequest)that); return false; @@ -284,7 +282,7 @@ public int compareTo(ListPackageRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(ListPackageRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ListStoredProcedureRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ListStoredProcedureRequest.java index 12d49ad2b0ec..9f48b4daff40 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ListStoredProcedureRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ListStoredProcedureRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ListStoredProcedureRequest 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("ListStoredProcedureRequest"); @@ -227,8 +227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ListStoredProcedureRequest) return this.equals((ListStoredProcedureRequest)that); return false; @@ -284,7 +282,7 @@ public int compareTo(ListStoredProcedureRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(ListStoredProcedureRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockComponent.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockComponent.java index 30f35f253304..761e2002a7eb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockComponent.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockComponent.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class LockComponent 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("LockComponent"); @@ -560,8 +560,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof LockComponent) return this.equals((LockComponent)that); return false; @@ -695,7 +693,7 @@ public int compareTo(LockComponent other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -705,7 +703,7 @@ public int compareTo(LockComponent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLevel()).compareTo(other.isSetLevel()); + lastComparison = java.lang.Boolean.compare(isSetLevel(), other.isSetLevel()); if (lastComparison != 0) { return lastComparison; } @@ -715,7 +713,7 @@ public int compareTo(LockComponent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -725,7 +723,7 @@ public int compareTo(LockComponent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTablename()).compareTo(other.isSetTablename()); + lastComparison = java.lang.Boolean.compare(isSetTablename(), other.isSetTablename()); if (lastComparison != 0) { return lastComparison; } @@ -735,7 +733,7 @@ public int compareTo(LockComponent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionname()).compareTo(other.isSetPartitionname()); + lastComparison = java.lang.Boolean.compare(isSetPartitionname(), other.isSetPartitionname()); if (lastComparison != 0) { return lastComparison; } @@ -745,7 +743,7 @@ public int compareTo(LockComponent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOperationType()).compareTo(other.isSetOperationType()); + lastComparison = java.lang.Boolean.compare(isSetOperationType(), other.isSetOperationType()); if (lastComparison != 0) { return lastComparison; } @@ -755,7 +753,7 @@ public int compareTo(LockComponent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsTransactional()).compareTo(other.isSetIsTransactional()); + lastComparison = java.lang.Boolean.compare(isSetIsTransactional(), other.isSetIsTransactional()); if (lastComparison != 0) { return lastComparison; } @@ -765,7 +763,7 @@ public int compareTo(LockComponent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsDynamicPartitionWrite()).compareTo(other.isSetIsDynamicPartitionWrite()); + lastComparison = java.lang.Boolean.compare(isSetIsDynamicPartitionWrite(), other.isSetIsDynamicPartitionWrite()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockLevel.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockLevel.java index a0d048b940bd..4d51a43655e0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockLevel.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockLevel.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum LockLevel implements org.apache.thrift.TEnum { DB(1), TABLE(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockRequest.java index 7382a0debe20..a3c4fc3e6c73 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class LockRequest 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("LockRequest"); @@ -447,8 +447,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof LockRequest) return this.equals((LockRequest)that); return false; @@ -556,7 +554,7 @@ public int compareTo(LockRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetComponent()).compareTo(other.isSetComponent()); + lastComparison = java.lang.Boolean.compare(isSetComponent(), other.isSetComponent()); if (lastComparison != 0) { return lastComparison; } @@ -566,7 +564,7 @@ public int compareTo(LockRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxnid()).compareTo(other.isSetTxnid()); + lastComparison = java.lang.Boolean.compare(isSetTxnid(), other.isSetTxnid()); if (lastComparison != 0) { return lastComparison; } @@ -576,7 +574,7 @@ public int compareTo(LockRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUser()).compareTo(other.isSetUser()); + lastComparison = java.lang.Boolean.compare(isSetUser(), other.isSetUser()); if (lastComparison != 0) { return lastComparison; } @@ -586,7 +584,7 @@ public int compareTo(LockRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHostname()).compareTo(other.isSetHostname()); + lastComparison = java.lang.Boolean.compare(isSetHostname(), other.isSetHostname()); if (lastComparison != 0) { return lastComparison; } @@ -596,7 +594,7 @@ public int compareTo(LockRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAgentInfo()).compareTo(other.isSetAgentInfo()); + lastComparison = java.lang.Boolean.compare(isSetAgentInfo(), other.isSetAgentInfo()); if (lastComparison != 0) { return lastComparison; } @@ -606,7 +604,7 @@ public int compareTo(LockRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetZeroWaitReadEnabled()).compareTo(other.isSetZeroWaitReadEnabled()); + lastComparison = java.lang.Boolean.compare(isSetZeroWaitReadEnabled(), other.isSetZeroWaitReadEnabled()); if (lastComparison != 0) { return lastComparison; } @@ -902,7 +900,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, LockRequest struct) public void read(org.apache.thrift.protocol.TProtocol prot, LockRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list793 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list793 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.component = new java.util.ArrayList(_list793.size); @org.apache.thrift.annotation.Nullable LockComponent _elem794; for (int _i795 = 0; _i795 < _list793.size; ++_i795) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockResponse.java index 8b9a317dc086..491ec615d322 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class LockResponse 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("LockResponse"); @@ -290,8 +290,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof LockResponse) return this.equals((LockResponse)that); return false; @@ -358,7 +356,7 @@ public int compareTo(LockResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetLockid()).compareTo(other.isSetLockid()); + lastComparison = java.lang.Boolean.compare(isSetLockid(), other.isSetLockid()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(LockResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetState()).compareTo(other.isSetState()); + lastComparison = java.lang.Boolean.compare(isSetState(), other.isSetState()); if (lastComparison != 0) { return lastComparison; } @@ -378,7 +376,7 @@ public int compareTo(LockResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetErrorMessage()).compareTo(other.isSetErrorMessage()); + lastComparison = java.lang.Boolean.compare(isSetErrorMessage(), other.isSetErrorMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockState.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockState.java index d674bb8a211c..5a58feccb4a1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockState.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockState.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum LockState implements org.apache.thrift.TEnum { ACQUIRED(1), WAITING(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockType.java index 3025d2bfa8ab..32079178d21b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum LockType implements org.apache.thrift.TEnum { SHARED_READ(1), SHARED_WRITE(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LongColumnStatsData.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LongColumnStatsData.java index 5bd8070f5837..0edec2008d00 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LongColumnStatsData.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LongColumnStatsData.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class LongColumnStatsData 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("LongColumnStatsData"); @@ -381,8 +381,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof LongColumnStatsData) return this.equals((LongColumnStatsData)that); return false; @@ -473,7 +471,7 @@ public int compareTo(LongColumnStatsData other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetLowValue()).compareTo(other.isSetLowValue()); + lastComparison = java.lang.Boolean.compare(isSetLowValue(), other.isSetLowValue()); if (lastComparison != 0) { return lastComparison; } @@ -483,7 +481,7 @@ public int compareTo(LongColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHighValue()).compareTo(other.isSetHighValue()); + lastComparison = java.lang.Boolean.compare(isSetHighValue(), other.isSetHighValue()); if (lastComparison != 0) { return lastComparison; } @@ -493,7 +491,7 @@ public int compareTo(LongColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumNulls()).compareTo(other.isSetNumNulls()); + lastComparison = java.lang.Boolean.compare(isSetNumNulls(), other.isSetNumNulls()); if (lastComparison != 0) { return lastComparison; } @@ -503,7 +501,7 @@ public int compareTo(LongColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumDVs()).compareTo(other.isSetNumDVs()); + lastComparison = java.lang.Boolean.compare(isSetNumDVs(), other.isSetNumDVs()); if (lastComparison != 0) { return lastComparison; } @@ -513,7 +511,7 @@ public int compareTo(LongColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBitVectors()).compareTo(other.isSetBitVectors()); + lastComparison = java.lang.Boolean.compare(isSetBitVectors(), other.isSetBitVectors()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MapSchemaVersionToSerdeRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MapSchemaVersionToSerdeRequest.java index 0ea452995219..fd21a18faa8a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MapSchemaVersionToSerdeRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MapSchemaVersionToSerdeRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class MapSchemaVersionToSerdeRequest 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("MapSchemaVersionToSerdeRequest"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof MapSchemaVersionToSerdeRequest) return this.equals((MapSchemaVersionToSerdeRequest)that); return false; @@ -285,7 +283,7 @@ public int compareTo(MapSchemaVersionToSerdeRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSchemaVersion()).compareTo(other.isSetSchemaVersion()); + lastComparison = java.lang.Boolean.compare(isSetSchemaVersion(), other.isSetSchemaVersion()); if (lastComparison != 0) { return lastComparison; } @@ -295,7 +293,7 @@ public int compareTo(MapSchemaVersionToSerdeRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSerdeName()).compareTo(other.isSetSerdeName()); + lastComparison = java.lang.Boolean.compare(isSetSerdeName(), other.isSetSerdeName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Materialization.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Materialization.java index f46de50a8cb8..268e37b649c9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Materialization.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Materialization.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Materialization 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("Materialization"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Materialization) return this.equals((Materialization)that); return false; @@ -281,7 +279,7 @@ public int compareTo(Materialization other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSourceTablesUpdateDeleteModified()).compareTo(other.isSetSourceTablesUpdateDeleteModified()); + lastComparison = java.lang.Boolean.compare(isSetSourceTablesUpdateDeleteModified(), other.isSetSourceTablesUpdateDeleteModified()); if (lastComparison != 0) { return lastComparison; } @@ -291,7 +289,7 @@ public int compareTo(Materialization other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSourceTablesCompacted()).compareTo(other.isSetSourceTablesCompacted()); + lastComparison = java.lang.Boolean.compare(isSetSourceTablesCompacted(), other.isSetSourceTablesCompacted()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MaxAllocatedTableWriteIdRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MaxAllocatedTableWriteIdRequest.java index 6239a7135f2e..93ecbe88c641 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MaxAllocatedTableWriteIdRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MaxAllocatedTableWriteIdRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class MaxAllocatedTableWriteIdRequest 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("MaxAllocatedTableWriteIdRequest"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof MaxAllocatedTableWriteIdRequest) return this.equals((MaxAllocatedTableWriteIdRequest)that); return false; @@ -285,7 +283,7 @@ public int compareTo(MaxAllocatedTableWriteIdRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -295,7 +293,7 @@ public int compareTo(MaxAllocatedTableWriteIdRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MaxAllocatedTableWriteIdResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MaxAllocatedTableWriteIdResponse.java index a1d5b5e287f7..bcd73c6bada2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MaxAllocatedTableWriteIdResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MaxAllocatedTableWriteIdResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class MaxAllocatedTableWriteIdResponse 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("MaxAllocatedTableWriteIdResponse"); @@ -179,8 +179,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof MaxAllocatedTableWriteIdResponse) return this.equals((MaxAllocatedTableWriteIdResponse)that); return false; @@ -221,7 +219,7 @@ public int compareTo(MaxAllocatedTableWriteIdResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMaxWriteId()).compareTo(other.isSetMaxWriteId()); + lastComparison = java.lang.Boolean.compare(isSetMaxWriteId(), other.isSetMaxWriteId()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MetaException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MetaException.java index 87c169d95e6c..6fb590b54af4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MetaException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MetaException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class MetaException 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("MetaException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof MetaException) return this.equals((MetaException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(MetaException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MetadataPpdResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MetadataPpdResult.java index dd0cc01e3b3a..06faa03a2c7a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MetadataPpdResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/MetadataPpdResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class MetadataPpdResult 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("MetadataPpdResult"); @@ -244,8 +244,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof MetadataPpdResult) return this.equals((MetadataPpdResult)that); return false; @@ -301,7 +299,7 @@ public int compareTo(MetadataPpdResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMetadata()).compareTo(other.isSetMetadata()); + lastComparison = java.lang.Boolean.compare(isSetMetadata(), other.isSetMetadata()); if (lastComparison != 0) { return lastComparison; } @@ -311,7 +309,7 @@ public int compareTo(MetadataPpdResult other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIncludeBitset()).compareTo(other.isSetIncludeBitset()); + lastComparison = java.lang.Boolean.compare(isSetIncludeBitset(), other.isSetIncludeBitset()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NoSuchLockException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NoSuchLockException.java index 2250d3cbeefa..1ab9b90d78a5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NoSuchLockException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NoSuchLockException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class NoSuchLockException 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("NoSuchLockException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof NoSuchLockException) return this.equals((NoSuchLockException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(NoSuchLockException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NoSuchObjectException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NoSuchObjectException.java index 46d95bd0665c..cff393433663 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NoSuchObjectException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NoSuchObjectException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class NoSuchObjectException 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("NoSuchObjectException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof NoSuchObjectException) return this.equals((NoSuchObjectException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(NoSuchObjectException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NoSuchTxnException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NoSuchTxnException.java index b8a729ce49ed..407863c1f704 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NoSuchTxnException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NoSuchTxnException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class NoSuchTxnException 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("NoSuchTxnException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof NoSuchTxnException) return this.equals((NoSuchTxnException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(NoSuchTxnException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotNullConstraintsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotNullConstraintsRequest.java index 55c03fcb8f50..e54a6271fe91 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotNullConstraintsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotNullConstraintsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class NotNullConstraintsRequest 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("NotNullConstraintsRequest"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof NotNullConstraintsRequest) return this.equals((NotNullConstraintsRequest)that); return false; @@ -348,7 +346,7 @@ public int compareTo(NotNullConstraintsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(NotNullConstraintsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(NotNullConstraintsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotNullConstraintsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotNullConstraintsResponse.java index 8ec673e97eff..bf26094ec29a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotNullConstraintsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotNullConstraintsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class NotNullConstraintsResponse 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("NotNullConstraintsResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof NotNullConstraintsResponse) return this.equals((NotNullConstraintsResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(NotNullConstraintsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNotNullConstraints()).compareTo(other.isSetNotNullConstraints()); + lastComparison = java.lang.Boolean.compare(isSetNotNullConstraints(), other.isSetNotNullConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, NotNullConstraintsR public void read(org.apache.thrift.protocol.TProtocol prot, NotNullConstraintsResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list429 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list429 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.notNullConstraints = new java.util.ArrayList(_list429.size); @org.apache.thrift.annotation.Nullable SQLNotNullConstraint _elem430; for (int _i431 = 0; _i431 < _list429.size; ++_i431) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEvent.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEvent.java index 057dff7a5d26..19e4527221b6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEvent.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEvent.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class NotificationEvent 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("NotificationEvent"); @@ -521,8 +521,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof NotificationEvent) return this.equals((NotificationEvent)that); return false; @@ -652,7 +650,7 @@ public int compareTo(NotificationEvent other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetEventId()).compareTo(other.isSetEventId()); + lastComparison = java.lang.Boolean.compare(isSetEventId(), other.isSetEventId()); if (lastComparison != 0) { return lastComparison; } @@ -662,7 +660,7 @@ public int compareTo(NotificationEvent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEventTime()).compareTo(other.isSetEventTime()); + lastComparison = java.lang.Boolean.compare(isSetEventTime(), other.isSetEventTime()); if (lastComparison != 0) { return lastComparison; } @@ -672,7 +670,7 @@ public int compareTo(NotificationEvent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEventType()).compareTo(other.isSetEventType()); + lastComparison = java.lang.Boolean.compare(isSetEventType(), other.isSetEventType()); if (lastComparison != 0) { return lastComparison; } @@ -682,7 +680,7 @@ public int compareTo(NotificationEvent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -692,7 +690,7 @@ public int compareTo(NotificationEvent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -702,7 +700,7 @@ public int compareTo(NotificationEvent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } @@ -712,7 +710,7 @@ public int compareTo(NotificationEvent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMessageFormat()).compareTo(other.isSetMessageFormat()); + lastComparison = java.lang.Boolean.compare(isSetMessageFormat(), other.isSetMessageFormat()); if (lastComparison != 0) { return lastComparison; } @@ -722,7 +720,7 @@ public int compareTo(NotificationEvent other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventRequest.java index 55749f68edcf..0b7befede44b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class NotificationEventRequest 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("NotificationEventRequest"); @@ -292,8 +292,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof NotificationEventRequest) return this.equals((NotificationEventRequest)that); return false; @@ -360,7 +358,7 @@ public int compareTo(NotificationEventRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetLastEvent()).compareTo(other.isSetLastEvent()); + lastComparison = java.lang.Boolean.compare(isSetLastEvent(), other.isSetLastEvent()); if (lastComparison != 0) { return lastComparison; } @@ -370,7 +368,7 @@ public int compareTo(NotificationEventRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMaxEvents()).compareTo(other.isSetMaxEvents()); + lastComparison = java.lang.Boolean.compare(isSetMaxEvents(), other.isSetMaxEvents()); if (lastComparison != 0) { return lastComparison; } @@ -380,7 +378,7 @@ public int compareTo(NotificationEventRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEventTypeSkipList()).compareTo(other.isSetEventTypeSkipList()); + lastComparison = java.lang.Boolean.compare(isSetEventTypeSkipList(), other.isSetEventTypeSkipList()); if (lastComparison != 0) { return lastComparison; } @@ -600,7 +598,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, NotificationEventReq } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list867 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list867 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.eventTypeSkipList = new java.util.ArrayList(_list867.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem868; for (int _i869 = 0; _i869 < _list867.size; ++_i869) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventResponse.java index fb7bce3b323f..13ceda3ae499 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class NotificationEventResponse 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("NotificationEventResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof NotificationEventResponse) return this.equals((NotificationEventResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(NotificationEventResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetEvents()).compareTo(other.isSetEvents()); + lastComparison = java.lang.Boolean.compare(isSetEvents(), other.isSetEvents()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, NotificationEventRe public void read(org.apache.thrift.protocol.TProtocol prot, NotificationEventResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list875 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list875 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.events = new java.util.ArrayList(_list875.size); @org.apache.thrift.annotation.Nullable NotificationEvent _elem876; for (int _i877 = 0; _i877 < _list875.size; ++_i877) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventsCountRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventsCountRequest.java index 2ffd0a3612a8..86c6fda2c75d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventsCountRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventsCountRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class NotificationEventsCountRequest 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("NotificationEventsCountRequest"); @@ -370,8 +370,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof NotificationEventsCountRequest) return this.equals((NotificationEventsCountRequest)that); return false; @@ -464,7 +462,7 @@ public int compareTo(NotificationEventsCountRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFromEventId()).compareTo(other.isSetFromEventId()); + lastComparison = java.lang.Boolean.compare(isSetFromEventId(), other.isSetFromEventId()); if (lastComparison != 0) { return lastComparison; } @@ -474,7 +472,7 @@ public int compareTo(NotificationEventsCountRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -484,7 +482,7 @@ public int compareTo(NotificationEventsCountRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -494,7 +492,7 @@ public int compareTo(NotificationEventsCountRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetToEventId()).compareTo(other.isSetToEventId()); + lastComparison = java.lang.Boolean.compare(isSetToEventId(), other.isSetToEventId()); if (lastComparison != 0) { return lastComparison; } @@ -504,7 +502,7 @@ public int compareTo(NotificationEventsCountRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLimit()).compareTo(other.isSetLimit()); + lastComparison = java.lang.Boolean.compare(isSetLimit(), other.isSetLimit()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventsCountResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventsCountResponse.java index 9b7134e3c54c..580a75fbb17c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventsCountResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventsCountResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class NotificationEventsCountResponse 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("NotificationEventsCountResponse"); @@ -179,8 +179,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof NotificationEventsCountResponse) return this.equals((NotificationEventsCountResponse)that); return false; @@ -221,7 +219,7 @@ public int compareTo(NotificationEventsCountResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetEventsCount()).compareTo(other.isSetEventsCount()); + lastComparison = java.lang.Boolean.compare(isSetEventsCount(), other.isSetEventsCount()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/OpenTxnRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/OpenTxnRequest.java index e6d889477210..9b1f78778a66 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/OpenTxnRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/OpenTxnRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class OpenTxnRequest 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("OpenTxnRequest"); @@ -508,8 +508,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof OpenTxnRequest) return this.equals((OpenTxnRequest)that); return false; @@ -628,7 +626,7 @@ public int compareTo(OpenTxnRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNum_txns()).compareTo(other.isSetNum_txns()); + lastComparison = java.lang.Boolean.compare(isSetNum_txns(), other.isSetNum_txns()); if (lastComparison != 0) { return lastComparison; } @@ -638,7 +636,7 @@ public int compareTo(OpenTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUser()).compareTo(other.isSetUser()); + lastComparison = java.lang.Boolean.compare(isSetUser(), other.isSetUser()); if (lastComparison != 0) { return lastComparison; } @@ -648,7 +646,7 @@ public int compareTo(OpenTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHostname()).compareTo(other.isSetHostname()); + lastComparison = java.lang.Boolean.compare(isSetHostname(), other.isSetHostname()); if (lastComparison != 0) { return lastComparison; } @@ -658,7 +656,7 @@ public int compareTo(OpenTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAgentInfo()).compareTo(other.isSetAgentInfo()); + lastComparison = java.lang.Boolean.compare(isSetAgentInfo(), other.isSetAgentInfo()); if (lastComparison != 0) { return lastComparison; } @@ -668,7 +666,7 @@ public int compareTo(OpenTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetReplPolicy()).compareTo(other.isSetReplPolicy()); + lastComparison = java.lang.Boolean.compare(isSetReplPolicy(), other.isSetReplPolicy()); if (lastComparison != 0) { return lastComparison; } @@ -678,7 +676,7 @@ public int compareTo(OpenTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetReplSrcTxnIds()).compareTo(other.isSetReplSrcTxnIds()); + lastComparison = java.lang.Boolean.compare(isSetReplSrcTxnIds(), other.isSetReplSrcTxnIds()); if (lastComparison != 0) { return lastComparison; } @@ -688,7 +686,7 @@ public int compareTo(OpenTxnRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxn_type()).compareTo(other.isSetTxn_type()); + lastComparison = java.lang.Boolean.compare(isSetTxn_type(), other.isSetTxn_type()); if (lastComparison != 0) { return lastComparison; } @@ -1036,7 +1034,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, OpenTxnRequest struc } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list697 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TList _list697 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); struct.replSrcTxnIds = new java.util.ArrayList(_list697.size); long _elem698; for (int _i699 = 0; _i699 < _list697.size; ++_i699) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/OpenTxnsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/OpenTxnsResponse.java index 50748c8354ed..8c0c4811f1ff 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/OpenTxnsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/OpenTxnsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class OpenTxnsResponse 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("OpenTxnsResponse"); @@ -196,8 +196,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof OpenTxnsResponse) return this.equals((OpenTxnsResponse)that); return false; @@ -240,7 +238,7 @@ public int compareTo(OpenTxnsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTxn_ids()).compareTo(other.isSetTxn_ids()); + lastComparison = java.lang.Boolean.compare(isSetTxn_ids(), other.isSetTxn_ids()); if (lastComparison != 0) { return lastComparison; } @@ -398,7 +396,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, OpenTxnsResponse st public void read(org.apache.thrift.protocol.TProtocol prot, OpenTxnsResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list705 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TList _list705 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); struct.txn_ids = new java.util.ArrayList(_list705.size); long _elem706; for (int _i707 = 0; _i707 < _list705.size; ++_i707) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/OptionalCompactionInfoStruct.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/OptionalCompactionInfoStruct.java index 48b0679ec728..7213f25a0d44 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/OptionalCompactionInfoStruct.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/OptionalCompactionInfoStruct.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class OptionalCompactionInfoStruct 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("OptionalCompactionInfoStruct"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof OptionalCompactionInfoStruct) return this.equals((OptionalCompactionInfoStruct)that); return false; @@ -216,7 +214,7 @@ public int compareTo(OptionalCompactionInfoStruct other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCi()).compareTo(other.isSetCi()); + lastComparison = java.lang.Boolean.compare(isSetCi(), other.isSetCi()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Order.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Order.java index a05faf020150..0981a7a30426 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Order.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Order.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Order 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("Order"); @@ -229,8 +229,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Order) return this.equals((Order)that); return false; @@ -284,7 +282,7 @@ public int compareTo(Order other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCol()).compareTo(other.isSetCol()); + lastComparison = java.lang.Boolean.compare(isSetCol(), other.isSetCol()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(Order other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOrder()).compareTo(other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Package.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Package.java index 53d8bb868e54..68be00a9eb4b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Package.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Package.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Package 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("Package"); @@ -428,8 +428,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Package) return this.equals((Package)that); return false; @@ -537,7 +535,7 @@ public int compareTo(Package other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -547,7 +545,7 @@ public int compareTo(Package other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -557,7 +555,7 @@ public int compareTo(Package other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPackageName()).compareTo(other.isSetPackageName()); + lastComparison = java.lang.Boolean.compare(isSetPackageName(), other.isSetPackageName()); if (lastComparison != 0) { return lastComparison; } @@ -567,7 +565,7 @@ public int compareTo(Package other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerName()).compareTo(other.isSetOwnerName()); + lastComparison = java.lang.Boolean.compare(isSetOwnerName(), other.isSetOwnerName()); if (lastComparison != 0) { return lastComparison; } @@ -577,7 +575,7 @@ public int compareTo(Package other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHeader()).compareTo(other.isSetHeader()); + lastComparison = java.lang.Boolean.compare(isSetHeader(), other.isSetHeader()); if (lastComparison != 0) { return lastComparison; } @@ -587,7 +585,7 @@ public int compareTo(Package other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBody()).compareTo(other.isSetBody()); + lastComparison = java.lang.Boolean.compare(isSetBody(), other.isSetBody()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Partition.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Partition.java index affd005a9e99..8ad12d466e0b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Partition.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Partition.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Partition 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("Partition"); @@ -749,8 +749,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Partition) return this.equals((Partition)that); return false; @@ -932,7 +930,7 @@ public int compareTo(Partition other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValues()).compareTo(other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); if (lastComparison != 0) { return lastComparison; } @@ -942,7 +940,7 @@ public int compareTo(Partition other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -952,7 +950,7 @@ public int compareTo(Partition other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -962,7 +960,7 @@ public int compareTo(Partition other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreateTime()).compareTo(other.isSetCreateTime()); + lastComparison = java.lang.Boolean.compare(isSetCreateTime(), other.isSetCreateTime()); if (lastComparison != 0) { return lastComparison; } @@ -972,7 +970,7 @@ public int compareTo(Partition other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLastAccessTime()).compareTo(other.isSetLastAccessTime()); + lastComparison = java.lang.Boolean.compare(isSetLastAccessTime(), other.isSetLastAccessTime()); if (lastComparison != 0) { return lastComparison; } @@ -982,7 +980,7 @@ public int compareTo(Partition other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSd()).compareTo(other.isSetSd()); + lastComparison = java.lang.Boolean.compare(isSetSd(), other.isSetSd()); if (lastComparison != 0) { return lastComparison; } @@ -992,7 +990,7 @@ public int compareTo(Partition other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParameters()).compareTo(other.isSetParameters()); + lastComparison = java.lang.Boolean.compare(isSetParameters(), other.isSetParameters()); if (lastComparison != 0) { return lastComparison; } @@ -1002,7 +1000,7 @@ public int compareTo(Partition other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrivileges()).compareTo(other.isSetPrivileges()); + lastComparison = java.lang.Boolean.compare(isSetPrivileges(), other.isSetPrivileges()); if (lastComparison != 0) { return lastComparison; } @@ -1012,7 +1010,7 @@ public int compareTo(Partition other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -1022,7 +1020,7 @@ public int compareTo(Partition other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteId()).compareTo(other.isSetWriteId()); + lastComparison = java.lang.Boolean.compare(isSetWriteId(), other.isSetWriteId()); if (lastComparison != 0) { return lastComparison; } @@ -1032,7 +1030,7 @@ public int compareTo(Partition other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsStatsCompliant()).compareTo(other.isSetIsStatsCompliant()); + lastComparison = java.lang.Boolean.compare(isSetIsStatsCompliant(), other.isSetIsStatsCompliant()); if (lastComparison != 0) { return lastComparison; } @@ -1042,7 +1040,7 @@ public int compareTo(Partition other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColStats()).compareTo(other.isSetColStats()); + lastComparison = java.lang.Boolean.compare(isSetColStats(), other.isSetColStats()); if (lastComparison != 0) { return lastComparison; } @@ -1539,7 +1537,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Partition struct) th java.util.BitSet incoming = iprot.readBitSet(12); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list315 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list315 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.values = new java.util.ArrayList(_list315.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem316; for (int _i317 = 0; _i317 < _list315.size; ++_i317) @@ -1573,7 +1571,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Partition struct) th } if (incoming.get(6)) { { - org.apache.thrift.protocol.TMap _map318 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map318 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.parameters = new java.util.HashMap(2*_map318.size); @org.apache.thrift.annotation.Nullable java.lang.String _key319; @org.apache.thrift.annotation.Nullable java.lang.String _val320; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionEventType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionEventType.java index b3f8508b6b59..44d31dbce4a4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionEventType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionEventType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum PartitionEventType implements org.apache.thrift.TEnum { LOAD_DONE(1); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionFilterMode.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionFilterMode.java index ef89f5941176..5adb08a73ea5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionFilterMode.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionFilterMode.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum PartitionFilterMode implements org.apache.thrift.TEnum { BY_NAMES(0), BY_VALUES(1), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionListComposingSpec.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionListComposingSpec.java index 48b31926c1f8..69c007e65fcc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionListComposingSpec.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionListComposingSpec.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionListComposingSpec 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("PartitionListComposingSpec"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionListComposingSpec) return this.equals((PartitionListComposingSpec)that); return false; @@ -243,7 +241,7 @@ public int compareTo(PartitionListComposingSpec other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitions()).compareTo(other.isSetPartitions()); + lastComparison = java.lang.Boolean.compare(isSetPartitions(), other.isSetPartitions()); if (lastComparison != 0) { return lastComparison; } @@ -407,7 +405,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PartitionListComposi java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list353 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list353 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitions = new java.util.ArrayList(_list353.size); @org.apache.thrift.annotation.Nullable Partition _elem354; for (int _i355 = 0; _i355 < _list353.size; ++_i355) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionSpec.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionSpec.java index d7c6fba06c55..acbb0bf9a555 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionSpec.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionSpec.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionSpec 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("PartitionSpec"); @@ -519,8 +519,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionSpec) return this.equals((PartitionSpec)that); return false; @@ -654,7 +652,7 @@ public int compareTo(PartitionSpec other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -664,7 +662,7 @@ public int compareTo(PartitionSpec other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -674,7 +672,7 @@ public int compareTo(PartitionSpec other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRootPath()).compareTo(other.isSetRootPath()); + lastComparison = java.lang.Boolean.compare(isSetRootPath(), other.isSetRootPath()); if (lastComparison != 0) { return lastComparison; } @@ -684,7 +682,7 @@ public int compareTo(PartitionSpec other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSharedSDPartitionSpec()).compareTo(other.isSetSharedSDPartitionSpec()); + lastComparison = java.lang.Boolean.compare(isSetSharedSDPartitionSpec(), other.isSetSharedSDPartitionSpec()); if (lastComparison != 0) { return lastComparison; } @@ -694,7 +692,7 @@ public int compareTo(PartitionSpec other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionList()).compareTo(other.isSetPartitionList()); + lastComparison = java.lang.Boolean.compare(isSetPartitionList(), other.isSetPartitionList()); if (lastComparison != 0) { return lastComparison; } @@ -704,7 +702,7 @@ public int compareTo(PartitionSpec other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -714,7 +712,7 @@ public int compareTo(PartitionSpec other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteId()).compareTo(other.isSetWriteId()); + lastComparison = java.lang.Boolean.compare(isSetWriteId(), other.isSetWriteId()); if (lastComparison != 0) { return lastComparison; } @@ -724,7 +722,7 @@ public int compareTo(PartitionSpec other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsStatsCompliant()).compareTo(other.isSetIsStatsCompliant()); + lastComparison = java.lang.Boolean.compare(isSetIsStatsCompliant(), other.isSetIsStatsCompliant()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionSpecWithSharedSD.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionSpecWithSharedSD.java index 08bb471e42ed..e33a24115e38 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionSpecWithSharedSD.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionSpecWithSharedSD.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionSpecWithSharedSD 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("PartitionSpecWithSharedSD"); @@ -249,8 +249,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionSpecWithSharedSD) return this.equals((PartitionSpecWithSharedSD)that); return false; @@ -306,7 +304,7 @@ public int compareTo(PartitionSpecWithSharedSD other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitions()).compareTo(other.isSetPartitions()); + lastComparison = java.lang.Boolean.compare(isSetPartitions(), other.isSetPartitions()); if (lastComparison != 0) { return lastComparison; } @@ -316,7 +314,7 @@ public int compareTo(PartitionSpecWithSharedSD other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSd()).compareTo(other.isSetSd()); + lastComparison = java.lang.Boolean.compare(isSetSd(), other.isSetSd()); if (lastComparison != 0) { return lastComparison; } @@ -511,7 +509,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PartitionSpecWithSha java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list345 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list345 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitions = new java.util.ArrayList(_list345.size); @org.apache.thrift.annotation.Nullable PartitionWithoutSD _elem346; for (int _i347 = 0; _i347 < _list345.size; ++_i347) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionValuesRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionValuesRequest.java index 9e5d62ed5568..d85f2608a8eb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionValuesRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionValuesRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionValuesRequest 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("PartitionValuesRequest"); @@ -659,8 +659,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionValuesRequest) return this.equals((PartitionValuesRequest)that); return false; @@ -820,7 +818,7 @@ public int compareTo(PartitionValuesRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -830,7 +828,7 @@ public int compareTo(PartitionValuesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -840,7 +838,7 @@ public int compareTo(PartitionValuesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionKeys()).compareTo(other.isSetPartitionKeys()); + lastComparison = java.lang.Boolean.compare(isSetPartitionKeys(), other.isSetPartitionKeys()); if (lastComparison != 0) { return lastComparison; } @@ -850,7 +848,7 @@ public int compareTo(PartitionValuesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetApplyDistinct()).compareTo(other.isSetApplyDistinct()); + lastComparison = java.lang.Boolean.compare(isSetApplyDistinct(), other.isSetApplyDistinct()); if (lastComparison != 0) { return lastComparison; } @@ -860,7 +858,7 @@ public int compareTo(PartitionValuesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFilter()).compareTo(other.isSetFilter()); + lastComparison = java.lang.Boolean.compare(isSetFilter(), other.isSetFilter()); if (lastComparison != 0) { return lastComparison; } @@ -870,7 +868,7 @@ public int compareTo(PartitionValuesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionOrder()).compareTo(other.isSetPartitionOrder()); + lastComparison = java.lang.Boolean.compare(isSetPartitionOrder(), other.isSetPartitionOrder()); if (lastComparison != 0) { return lastComparison; } @@ -880,7 +878,7 @@ public int compareTo(PartitionValuesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAscending()).compareTo(other.isSetAscending()); + lastComparison = java.lang.Boolean.compare(isSetAscending(), other.isSetAscending()); if (lastComparison != 0) { return lastComparison; } @@ -890,7 +888,7 @@ public int compareTo(PartitionValuesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMaxParts()).compareTo(other.isSetMaxParts()); + lastComparison = java.lang.Boolean.compare(isSetMaxParts(), other.isSetMaxParts()); if (lastComparison != 0) { return lastComparison; } @@ -900,7 +898,7 @@ public int compareTo(PartitionValuesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -910,7 +908,7 @@ public int compareTo(PartitionValuesRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -1352,7 +1350,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PartitionValuesReque struct.tblName = iprot.readString(); struct.setTblNameIsSet(true); { - org.apache.thrift.protocol.TList _list612 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list612 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitionKeys = new java.util.ArrayList(_list612.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem613; for (int _i614 = 0; _i614 < _list612.size; ++_i614) @@ -1374,7 +1372,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PartitionValuesReque } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list615 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list615 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitionOrder = new java.util.ArrayList(_list615.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem616; for (int _i617 = 0; _i617 < _list615.size; ++_i617) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionValuesResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionValuesResponse.java index 7e9b86270c25..48b51d23dfef 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionValuesResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionValuesResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionValuesResponse 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("PartitionValuesResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionValuesResponse) return this.equals((PartitionValuesResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(PartitionValuesResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitionValues()).compareTo(other.isSetPartitionValues()); + lastComparison = java.lang.Boolean.compare(isSetPartitionValues(), other.isSetPartitionValues()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, PartitionValuesResp public void read(org.apache.thrift.protocol.TProtocol prot, PartitionValuesResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list631 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list631 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitionValues = new java.util.ArrayList(_list631.size); @org.apache.thrift.annotation.Nullable PartitionValuesRow _elem632; for (int _i633 = 0; _i633 < _list631.size; ++_i633) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionValuesRow.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionValuesRow.java index 6609c902de95..db5925d286a8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionValuesRow.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionValuesRow.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionValuesRow 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("PartitionValuesRow"); @@ -196,8 +196,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionValuesRow) return this.equals((PartitionValuesRow)that); return false; @@ -240,7 +238,7 @@ public int compareTo(PartitionValuesRow other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRow()).compareTo(other.isSetRow()); + lastComparison = java.lang.Boolean.compare(isSetRow(), other.isSetRow()); if (lastComparison != 0) { return lastComparison; } @@ -398,7 +396,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, PartitionValuesRow public void read(org.apache.thrift.protocol.TProtocol prot, PartitionValuesRow struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list623 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list623 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.row = new java.util.ArrayList(_list623.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem624; for (int _i625 = 0; _i625 < _list623.size; ++_i625) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionWithoutSD.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionWithoutSD.java index 330f1a374e26..611cc69de582 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionWithoutSD.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionWithoutSD.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionWithoutSD 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("PartitionWithoutSD"); @@ -459,8 +459,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionWithoutSD) return this.equals((PartitionWithoutSD)that); return false; @@ -564,7 +562,7 @@ public int compareTo(PartitionWithoutSD other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValues()).compareTo(other.isSetValues()); + lastComparison = java.lang.Boolean.compare(isSetValues(), other.isSetValues()); if (lastComparison != 0) { return lastComparison; } @@ -574,7 +572,7 @@ public int compareTo(PartitionWithoutSD other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreateTime()).compareTo(other.isSetCreateTime()); + lastComparison = java.lang.Boolean.compare(isSetCreateTime(), other.isSetCreateTime()); if (lastComparison != 0) { return lastComparison; } @@ -584,7 +582,7 @@ public int compareTo(PartitionWithoutSD other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLastAccessTime()).compareTo(other.isSetLastAccessTime()); + lastComparison = java.lang.Boolean.compare(isSetLastAccessTime(), other.isSetLastAccessTime()); if (lastComparison != 0) { return lastComparison; } @@ -594,7 +592,7 @@ public int compareTo(PartitionWithoutSD other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRelativePath()).compareTo(other.isSetRelativePath()); + lastComparison = java.lang.Boolean.compare(isSetRelativePath(), other.isSetRelativePath()); if (lastComparison != 0) { return lastComparison; } @@ -604,7 +602,7 @@ public int compareTo(PartitionWithoutSD other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParameters()).compareTo(other.isSetParameters()); + lastComparison = java.lang.Boolean.compare(isSetParameters(), other.isSetParameters()); if (lastComparison != 0) { return lastComparison; } @@ -614,7 +612,7 @@ public int compareTo(PartitionWithoutSD other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrivileges()).compareTo(other.isSetPrivileges()); + lastComparison = java.lang.Boolean.compare(isSetPrivileges(), other.isSetPrivileges()); if (lastComparison != 0) { return lastComparison; } @@ -937,7 +935,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PartitionWithoutSD s java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list333 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list333 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.values = new java.util.ArrayList(_list333.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem334; for (int _i335 = 0; _i335 < _list333.size; ++_i335) @@ -962,7 +960,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PartitionWithoutSD s } if (incoming.get(4)) { { - org.apache.thrift.protocol.TMap _map336 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map336 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.parameters = new java.util.HashMap(2*_map336.size); @org.apache.thrift.annotation.Nullable java.lang.String _key337; @org.apache.thrift.annotation.Nullable java.lang.String _val338; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsByExprRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsByExprRequest.java index 53fe24110e8d..4a4f65650d9b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsByExprRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsByExprRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionsByExprRequest 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("PartitionsByExprRequest"); @@ -581,8 +581,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionsByExprRequest) return this.equals((PartitionsByExprRequest)that); return false; @@ -729,7 +727,7 @@ public int compareTo(PartitionsByExprRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -739,7 +737,7 @@ public int compareTo(PartitionsByExprRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -749,7 +747,7 @@ public int compareTo(PartitionsByExprRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetExpr()).compareTo(other.isSetExpr()); + lastComparison = java.lang.Boolean.compare(isSetExpr(), other.isSetExpr()); if (lastComparison != 0) { return lastComparison; } @@ -759,7 +757,7 @@ public int compareTo(PartitionsByExprRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDefaultPartitionName()).compareTo(other.isSetDefaultPartitionName()); + lastComparison = java.lang.Boolean.compare(isSetDefaultPartitionName(), other.isSetDefaultPartitionName()); if (lastComparison != 0) { return lastComparison; } @@ -769,7 +767,7 @@ public int compareTo(PartitionsByExprRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMaxParts()).compareTo(other.isSetMaxParts()); + lastComparison = java.lang.Boolean.compare(isSetMaxParts(), other.isSetMaxParts()); if (lastComparison != 0) { return lastComparison; } @@ -779,7 +777,7 @@ public int compareTo(PartitionsByExprRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -789,7 +787,7 @@ public int compareTo(PartitionsByExprRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOrder()).compareTo(other.isSetOrder()); + lastComparison = java.lang.Boolean.compare(isSetOrder(), other.isSetOrder()); if (lastComparison != 0) { return lastComparison; } @@ -799,7 +797,7 @@ public int compareTo(PartitionsByExprRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -809,7 +807,7 @@ public int compareTo(PartitionsByExprRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsByExprResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsByExprResult.java index f05a101794cb..9c2498282538 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsByExprResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsByExprResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionsByExprResult 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("PartitionsByExprResult"); @@ -250,8 +250,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionsByExprResult) return this.equals((PartitionsByExprResult)that); return false; @@ -305,7 +303,7 @@ public int compareTo(PartitionsByExprResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitions()).compareTo(other.isSetPartitions()); + lastComparison = java.lang.Boolean.compare(isSetPartitions(), other.isSetPartitions()); if (lastComparison != 0) { return lastComparison; } @@ -315,7 +313,7 @@ public int compareTo(PartitionsByExprResult other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHasUnknownPartitions()).compareTo(other.isSetHasUnknownPartitions()); + lastComparison = java.lang.Boolean.compare(isSetHasUnknownPartitions(), other.isSetHasUnknownPartitions()); if (lastComparison != 0) { return lastComparison; } @@ -496,7 +494,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, PartitionsByExprRes public void read(org.apache.thrift.protocol.TProtocol prot, PartitionsByExprResult struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list501 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list501 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitions = new java.util.ArrayList(_list501.size); @org.apache.thrift.annotation.Nullable Partition _elem502; for (int _i503 = 0; _i503 < _list501.size; ++_i503) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsRequest.java index 92c6bacc20b0..d4f443a01efa 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionsRequest 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("PartitionsRequest"); @@ -423,8 +423,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionsRequest) return this.equals((PartitionsRequest)that); return false; @@ -532,7 +530,7 @@ public int compareTo(PartitionsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -542,7 +540,7 @@ public int compareTo(PartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -552,7 +550,7 @@ public int compareTo(PartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -562,7 +560,7 @@ public int compareTo(PartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMaxParts()).compareTo(other.isSetMaxParts()); + lastComparison = java.lang.Boolean.compare(isSetMaxParts(), other.isSetMaxParts()); if (lastComparison != 0) { return lastComparison; } @@ -572,7 +570,7 @@ public int compareTo(PartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -582,7 +580,7 @@ public int compareTo(PartitionsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsResponse.java index cfa264f724ff..7a20e1e65c92 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionsResponse 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("PartitionsResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionsResponse) return this.equals((PartitionsResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(PartitionsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitions()).compareTo(other.isSetPartitions()); + lastComparison = java.lang.Boolean.compare(isSetPartitions(), other.isSetPartitions()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, PartitionsResponse public void read(org.apache.thrift.protocol.TProtocol prot, PartitionsResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list1321 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1321 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitions = new java.util.ArrayList(_list1321.size); @org.apache.thrift.annotation.Nullable Partition _elem1322; for (int _i1323 = 0; _i1323 < _list1321.size; ++_i1323) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsSpecByExprResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsSpecByExprResult.java index 4284f613d379..101e960e1b86 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsSpecByExprResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsSpecByExprResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionsSpecByExprResult 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("PartitionsSpecByExprResult"); @@ -250,8 +250,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionsSpecByExprResult) return this.equals((PartitionsSpecByExprResult)that); return false; @@ -305,7 +303,7 @@ public int compareTo(PartitionsSpecByExprResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitionsSpec()).compareTo(other.isSetPartitionsSpec()); + lastComparison = java.lang.Boolean.compare(isSetPartitionsSpec(), other.isSetPartitionsSpec()); if (lastComparison != 0) { return lastComparison; } @@ -315,7 +313,7 @@ public int compareTo(PartitionsSpecByExprResult other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHasUnknownPartitions()).compareTo(other.isSetHasUnknownPartitions()); + lastComparison = java.lang.Boolean.compare(isSetHasUnknownPartitions(), other.isSetHasUnknownPartitions()); if (lastComparison != 0) { return lastComparison; } @@ -496,7 +494,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, PartitionsSpecByExp public void read(org.apache.thrift.protocol.TProtocol prot, PartitionsSpecByExprResult struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list509 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list509 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitionsSpec = new java.util.ArrayList(_list509.size); @org.apache.thrift.annotation.Nullable PartitionSpec _elem510; for (int _i511 = 0; _i511 < _list509.size; ++_i511) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsStatsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsStatsRequest.java index 6e52c18f3798..e9fa370ea467 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsStatsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsStatsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionsStatsRequest 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("PartitionsStatsRequest"); @@ -511,8 +511,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionsStatsRequest) return this.equals((PartitionsStatsRequest)that); return false; @@ -633,7 +631,7 @@ public int compareTo(PartitionsStatsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -643,7 +641,7 @@ public int compareTo(PartitionsStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -653,7 +651,7 @@ public int compareTo(PartitionsStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColNames()).compareTo(other.isSetColNames()); + lastComparison = java.lang.Boolean.compare(isSetColNames(), other.isSetColNames()); if (lastComparison != 0) { return lastComparison; } @@ -663,7 +661,7 @@ public int compareTo(PartitionsStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartNames()).compareTo(other.isSetPartNames()); + lastComparison = java.lang.Boolean.compare(isSetPartNames(), other.isSetPartNames()); if (lastComparison != 0) { return lastComparison; } @@ -673,7 +671,7 @@ public int compareTo(PartitionsStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -683,7 +681,7 @@ public int compareTo(PartitionsStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -693,7 +691,7 @@ public int compareTo(PartitionsStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEngine()).compareTo(other.isSetEngine()); + lastComparison = java.lang.Boolean.compare(isSetEngine(), other.isSetEngine()); if (lastComparison != 0) { return lastComparison; } @@ -1046,7 +1044,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PartitionsStatsReque struct.tblName = iprot.readString(); struct.setTblNameIsSet(true); { - org.apache.thrift.protocol.TList _list556 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list556 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.colNames = new java.util.ArrayList(_list556.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem557; for (int _i558 = 0; _i558 < _list556.size; ++_i558) @@ -1057,7 +1055,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PartitionsStatsReque } struct.setColNamesIsSet(true); { - org.apache.thrift.protocol.TList _list559 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list559 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partNames = new java.util.ArrayList(_list559.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem560; for (int _i561 = 0; _i561 < _list559.size; ++_i561) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsStatsResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsStatsResult.java index fe644914914e..79a4437809f0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsStatsResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PartitionsStatsResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PartitionsStatsResult 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("PartitionsStatsResult"); @@ -256,8 +256,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PartitionsStatsResult) return this.equals((PartitionsStatsResult)that); return false; @@ -313,7 +311,7 @@ public int compareTo(PartitionsStatsResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartStats()).compareTo(other.isSetPartStats()); + lastComparison = java.lang.Boolean.compare(isSetPartStats(), other.isSetPartStats()); if (lastComparison != 0) { return lastComparison; } @@ -323,7 +321,7 @@ public int compareTo(PartitionsStatsResult other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsStatsCompliant()).compareTo(other.isSetIsStatsCompliant()); + lastComparison = java.lang.Boolean.compare(isSetIsStatsCompliant(), other.isSetIsStatsCompliant()); if (lastComparison != 0) { return lastComparison; } @@ -538,7 +536,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, PartitionsStatsResu public void read(org.apache.thrift.protocol.TProtocol prot, PartitionsStatsResult struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TMap _map531 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.LIST, iprot.readI32()); + org.apache.thrift.protocol.TMap _map531 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.LIST); struct.partStats = new java.util.HashMap>(2*_map531.size); @org.apache.thrift.annotation.Nullable java.lang.String _key532; @org.apache.thrift.annotation.Nullable java.util.List _val533; @@ -546,7 +544,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PartitionsStatsResul { _key532 = iprot.readString(); { - org.apache.thrift.protocol.TList _list535 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list535 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); _val533 = new java.util.ArrayList(_list535.size); @org.apache.thrift.annotation.Nullable ColumnStatisticsObj _elem536; for (int _i537 = 0; _i537 < _list535.size; ++_i537) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrimaryKeysRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrimaryKeysRequest.java index 62dba546079d..1ec866a17067 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrimaryKeysRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrimaryKeysRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PrimaryKeysRequest 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("PrimaryKeysRequest"); @@ -277,8 +277,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PrimaryKeysRequest) return this.equals((PrimaryKeysRequest)that); return false; @@ -347,7 +345,7 @@ public int compareTo(PrimaryKeysRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -357,7 +355,7 @@ public int compareTo(PrimaryKeysRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -367,7 +365,7 @@ public int compareTo(PrimaryKeysRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrimaryKeysResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrimaryKeysResponse.java index a5ec5b0f5e0e..d2c6a450b611 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrimaryKeysResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrimaryKeysResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PrimaryKeysResponse 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("PrimaryKeysResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PrimaryKeysResponse) return this.equals((PrimaryKeysResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(PrimaryKeysResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPrimaryKeys()).compareTo(other.isSetPrimaryKeys()); + lastComparison = java.lang.Boolean.compare(isSetPrimaryKeys(), other.isSetPrimaryKeys()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, PrimaryKeysResponse public void read(org.apache.thrift.protocol.TProtocol prot, PrimaryKeysResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list405 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list405 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.primaryKeys = new java.util.ArrayList(_list405.size); @org.apache.thrift.annotation.Nullable SQLPrimaryKey _elem406; for (int _i407 = 0; _i407 < _list405.size; ++_i407) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrincipalPrivilegeSet.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrincipalPrivilegeSet.java index 0d525755b5c8..0c574253d0b3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrincipalPrivilegeSet.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrincipalPrivilegeSet.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PrincipalPrivilegeSet 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("PrincipalPrivilegeSet"); @@ -365,8 +365,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PrincipalPrivilegeSet) return this.equals((PrincipalPrivilegeSet)that); return false; @@ -435,7 +433,7 @@ public int compareTo(PrincipalPrivilegeSet other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetUserPrivileges()).compareTo(other.isSetUserPrivileges()); + lastComparison = java.lang.Boolean.compare(isSetUserPrivileges(), other.isSetUserPrivileges()); if (lastComparison != 0) { return lastComparison; } @@ -445,7 +443,7 @@ public int compareTo(PrincipalPrivilegeSet other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGroupPrivileges()).compareTo(other.isSetGroupPrivileges()); + lastComparison = java.lang.Boolean.compare(isSetGroupPrivileges(), other.isSetGroupPrivileges()); if (lastComparison != 0) { return lastComparison; } @@ -455,7 +453,7 @@ public int compareTo(PrincipalPrivilegeSet other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRolePrivileges()).compareTo(other.isSetRolePrivileges()); + lastComparison = java.lang.Boolean.compare(isSetRolePrivileges(), other.isSetRolePrivileges()); if (lastComparison != 0) { return lastComparison; } @@ -802,7 +800,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PrincipalPrivilegeSe java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map105 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.LIST, iprot.readI32()); + org.apache.thrift.protocol.TMap _map105 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.LIST); struct.userPrivileges = new java.util.HashMap>(2*_map105.size); @org.apache.thrift.annotation.Nullable java.lang.String _key106; @org.apache.thrift.annotation.Nullable java.util.List _val107; @@ -810,7 +808,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PrincipalPrivilegeSe { _key106 = iprot.readString(); { - org.apache.thrift.protocol.TList _list109 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list109 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); _val107 = new java.util.ArrayList(_list109.size); @org.apache.thrift.annotation.Nullable PrivilegeGrantInfo _elem110; for (int _i111 = 0; _i111 < _list109.size; ++_i111) @@ -827,7 +825,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PrincipalPrivilegeSe } if (incoming.get(1)) { { - org.apache.thrift.protocol.TMap _map112 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.LIST, iprot.readI32()); + org.apache.thrift.protocol.TMap _map112 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.LIST); struct.groupPrivileges = new java.util.HashMap>(2*_map112.size); @org.apache.thrift.annotation.Nullable java.lang.String _key113; @org.apache.thrift.annotation.Nullable java.util.List _val114; @@ -835,7 +833,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PrincipalPrivilegeSe { _key113 = iprot.readString(); { - org.apache.thrift.protocol.TList _list116 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list116 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); _val114 = new java.util.ArrayList(_list116.size); @org.apache.thrift.annotation.Nullable PrivilegeGrantInfo _elem117; for (int _i118 = 0; _i118 < _list116.size; ++_i118) @@ -852,7 +850,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PrincipalPrivilegeSe } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map119 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.LIST, iprot.readI32()); + org.apache.thrift.protocol.TMap _map119 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.LIST); struct.rolePrivileges = new java.util.HashMap>(2*_map119.size); @org.apache.thrift.annotation.Nullable java.lang.String _key120; @org.apache.thrift.annotation.Nullable java.util.List _val121; @@ -860,7 +858,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PrincipalPrivilegeSe { _key120 = iprot.readString(); { - org.apache.thrift.protocol.TList _list123 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list123 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); _val121 = new java.util.ArrayList(_list123.size); @org.apache.thrift.annotation.Nullable PrivilegeGrantInfo _elem124; for (int _i125 = 0; _i125 < _list123.size; ++_i125) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrincipalType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrincipalType.java index 077434b01a9b..12f51b6ea345 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrincipalType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrincipalType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum PrincipalType implements org.apache.thrift.TEnum { USER(1), ROLE(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrivilegeBag.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrivilegeBag.java index e2b37f4d7572..5279c4c463e8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrivilegeBag.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrivilegeBag.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PrivilegeBag 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("PrivilegeBag"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PrivilegeBag) return this.equals((PrivilegeBag)that); return false; @@ -243,7 +241,7 @@ public int compareTo(PrivilegeBag other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPrivileges()).compareTo(other.isSetPrivileges()); + lastComparison = java.lang.Boolean.compare(isSetPrivileges(), other.isSetPrivileges()); if (lastComparison != 0) { return lastComparison; } @@ -407,7 +405,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PrivilegeBag struct) java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list69 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list69 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.privileges = new java.util.ArrayList(_list69.size); @org.apache.thrift.annotation.Nullable HiveObjectPrivilege _elem70; for (int _i71 = 0; _i71 < _list69.size; ++_i71) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrivilegeGrantInfo.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrivilegeGrantInfo.java index c8901f5416b5..2ffa308df14f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrivilegeGrantInfo.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PrivilegeGrantInfo.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PrivilegeGrantInfo 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("PrivilegeGrantInfo"); @@ -390,8 +390,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PrivilegeGrantInfo) return this.equals((PrivilegeGrantInfo)that); return false; @@ -482,7 +480,7 @@ public int compareTo(PrivilegeGrantInfo other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPrivilege()).compareTo(other.isSetPrivilege()); + lastComparison = java.lang.Boolean.compare(isSetPrivilege(), other.isSetPrivilege()); if (lastComparison != 0) { return lastComparison; } @@ -492,7 +490,7 @@ public int compareTo(PrivilegeGrantInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreateTime()).compareTo(other.isSetCreateTime()); + lastComparison = java.lang.Boolean.compare(isSetCreateTime(), other.isSetCreateTime()); if (lastComparison != 0) { return lastComparison; } @@ -502,7 +500,7 @@ public int compareTo(PrivilegeGrantInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantor()).compareTo(other.isSetGrantor()); + lastComparison = java.lang.Boolean.compare(isSetGrantor(), other.isSetGrantor()); if (lastComparison != 0) { return lastComparison; } @@ -512,7 +510,7 @@ public int compareTo(PrivilegeGrantInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantorType()).compareTo(other.isSetGrantorType()); + lastComparison = java.lang.Boolean.compare(isSetGrantorType(), other.isSetGrantorType()); if (lastComparison != 0) { return lastComparison; } @@ -522,7 +520,7 @@ public int compareTo(PrivilegeGrantInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantOption()).compareTo(other.isSetGrantOption()); + lastComparison = java.lang.Boolean.compare(isSetGrantOption(), other.isSetGrantOption()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PutFileMetadataRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PutFileMetadataRequest.java index 6019dc2f77da..bb430a39680c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PutFileMetadataRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PutFileMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PutFileMetadataRequest 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("PutFileMetadataRequest"); @@ -325,8 +325,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PutFileMetadataRequest) return this.equals((PutFileMetadataRequest)that); return false; @@ -395,7 +393,7 @@ public int compareTo(PutFileMetadataRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFileIds()).compareTo(other.isSetFileIds()); + lastComparison = java.lang.Boolean.compare(isSetFileIds(), other.isSetFileIds()); if (lastComparison != 0) { return lastComparison; } @@ -405,7 +403,7 @@ public int compareTo(PutFileMetadataRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMetadata()).compareTo(other.isSetMetadata()); + lastComparison = java.lang.Boolean.compare(isSetMetadata(), other.isSetMetadata()); if (lastComparison != 0) { return lastComparison; } @@ -415,7 +413,7 @@ public int compareTo(PutFileMetadataRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -655,7 +653,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, PutFileMetadataRequ public void read(org.apache.thrift.protocol.TProtocol prot, PutFileMetadataRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list988 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TList _list988 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); struct.fileIds = new java.util.ArrayList(_list988.size); long _elem989; for (int _i990 = 0; _i990 < _list988.size; ++_i990) @@ -666,7 +664,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, PutFileMetadataReque } struct.setFileIdsIsSet(true); { - org.apache.thrift.protocol.TList _list991 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list991 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.metadata = new java.util.ArrayList(_list991.size); @org.apache.thrift.annotation.Nullable java.nio.ByteBuffer _elem992; for (int _i993 = 0; _i993 < _list991.size; ++_i993) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PutFileMetadataResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PutFileMetadataResult.java index 90c78462e07d..d064f927c453 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PutFileMetadataResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PutFileMetadataResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class PutFileMetadataResult 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("PutFileMetadataResult"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof PutFileMetadataResult) return this.equals((PutFileMetadataResult)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/QueryState.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/QueryState.java index 59af27b7c2d2..984e325ee2fd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/QueryState.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/QueryState.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum QueryState implements org.apache.thrift.TEnum { INITED(0), EXECUTING(1), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RenamePartitionRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RenamePartitionRequest.java index 8401e50be1d7..e92af76ab919 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RenamePartitionRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RenamePartitionRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class RenamePartitionRequest 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("RenamePartitionRequest"); @@ -443,8 +443,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof RenamePartitionRequest) return this.equals((RenamePartitionRequest)that); return false; @@ -552,7 +550,7 @@ public int compareTo(RenamePartitionRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -562,7 +560,7 @@ public int compareTo(RenamePartitionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -572,7 +570,7 @@ public int compareTo(RenamePartitionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -582,7 +580,7 @@ public int compareTo(RenamePartitionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartVals()).compareTo(other.isSetPartVals()); + lastComparison = java.lang.Boolean.compare(isSetPartVals(), other.isSetPartVals()); if (lastComparison != 0) { return lastComparison; } @@ -592,7 +590,7 @@ public int compareTo(RenamePartitionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNewPart()).compareTo(other.isSetNewPart()); + lastComparison = java.lang.Boolean.compare(isSetNewPart(), other.isSetNewPart()); if (lastComparison != 0) { return lastComparison; } @@ -602,7 +600,7 @@ public int compareTo(RenamePartitionRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -910,7 +908,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, RenamePartitionReque struct.tableName = iprot.readString(); struct.setTableNameIsSet(true); { - org.apache.thrift.protocol.TList _list1249 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1249 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partVals = new java.util.ArrayList(_list1249.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1250; for (int _i1251 = 0; _i1251 < _list1249.size; ++_i1251) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RenamePartitionResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RenamePartitionResponse.java index 565520b909e4..4b57eedc31e7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RenamePartitionResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RenamePartitionResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class RenamePartitionResponse 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("RenamePartitionResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof RenamePartitionResponse) return this.equals((RenamePartitionResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplLastIdInfo.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplLastIdInfo.java index ce8393f8f5aa..250be866be7f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplLastIdInfo.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplLastIdInfo.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ReplLastIdInfo 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("ReplLastIdInfo"); @@ -392,8 +392,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ReplLastIdInfo) return this.equals((ReplLastIdInfo)that); return false; @@ -486,7 +484,7 @@ public int compareTo(ReplLastIdInfo other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDatabase()).compareTo(other.isSetDatabase()); + lastComparison = java.lang.Boolean.compare(isSetDatabase(), other.isSetDatabase()); if (lastComparison != 0) { return lastComparison; } @@ -496,7 +494,7 @@ public int compareTo(ReplLastIdInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLastReplId()).compareTo(other.isSetLastReplId()); + lastComparison = java.lang.Boolean.compare(isSetLastReplId(), other.isSetLastReplId()); if (lastComparison != 0) { return lastComparison; } @@ -506,7 +504,7 @@ public int compareTo(ReplLastIdInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable()).compareTo(other.isSetTable()); + lastComparison = java.lang.Boolean.compare(isSetTable(), other.isSetTable()); if (lastComparison != 0) { return lastComparison; } @@ -516,7 +514,7 @@ public int compareTo(ReplLastIdInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatalog()).compareTo(other.isSetCatalog()); + lastComparison = java.lang.Boolean.compare(isSetCatalog(), other.isSetCatalog()); if (lastComparison != 0) { return lastComparison; } @@ -526,7 +524,7 @@ public int compareTo(ReplLastIdInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionList()).compareTo(other.isSetPartitionList()); + lastComparison = java.lang.Boolean.compare(isSetPartitionList(), other.isSetPartitionList()); if (lastComparison != 0) { return lastComparison; } @@ -815,7 +813,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, ReplLastIdInfo struc } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list721 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list721 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partitionList = new java.util.ArrayList(_list721.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem722; for (int _i723 = 0; _i723 < _list721.size; ++_i723) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplTblWriteIdStateRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplTblWriteIdStateRequest.java index a7ce9b381081..5dc541fc148c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplTblWriteIdStateRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplTblWriteIdStateRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ReplTblWriteIdStateRequest 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("ReplTblWriteIdStateRequest"); @@ -445,8 +445,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ReplTblWriteIdStateRequest) return this.equals((ReplTblWriteIdStateRequest)that); return false; @@ -554,7 +552,7 @@ public int compareTo(ReplTblWriteIdStateRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdlist()).compareTo(other.isSetValidWriteIdlist()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdlist(), other.isSetValidWriteIdlist()); if (lastComparison != 0) { return lastComparison; } @@ -564,7 +562,7 @@ public int compareTo(ReplTblWriteIdStateRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUser()).compareTo(other.isSetUser()); + lastComparison = java.lang.Boolean.compare(isSetUser(), other.isSetUser()); if (lastComparison != 0) { return lastComparison; } @@ -574,7 +572,7 @@ public int compareTo(ReplTblWriteIdStateRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHostName()).compareTo(other.isSetHostName()); + lastComparison = java.lang.Boolean.compare(isSetHostName(), other.isSetHostName()); if (lastComparison != 0) { return lastComparison; } @@ -584,7 +582,7 @@ public int compareTo(ReplTblWriteIdStateRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -594,7 +592,7 @@ public int compareTo(ReplTblWriteIdStateRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -604,7 +602,7 @@ public int compareTo(ReplTblWriteIdStateRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartNames()).compareTo(other.isSetPartNames()); + lastComparison = java.lang.Boolean.compare(isSetPartNames(), other.isSetPartNames()); if (lastComparison != 0) { return lastComparison; } @@ -911,7 +909,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, ReplTblWriteIdStateR java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list737 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list737 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partNames = new java.util.ArrayList(_list737.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem738; for (int _i739 = 0; _i739 < _list737.size; ++_i739) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplicationMetricList.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplicationMetricList.java index 627e5d274c35..9c6d022fb282 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplicationMetricList.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplicationMetricList.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ReplicationMetricList 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("ReplicationMetricList"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ReplicationMetricList) return this.equals((ReplicationMetricList)that); return false; @@ -243,7 +241,7 @@ public int compareTo(ReplicationMetricList other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReplicationMetricList()).compareTo(other.isSetReplicationMetricList()); + lastComparison = java.lang.Boolean.compare(isSetReplicationMetricList(), other.isSetReplicationMetricList()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ReplicationMetricLi public void read(org.apache.thrift.protocol.TProtocol prot, ReplicationMetricList struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list1369 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1369 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.replicationMetricList = new java.util.ArrayList(_list1369.size); @org.apache.thrift.annotation.Nullable ReplicationMetrics _elem1370; for (int _i1371 = 0; _i1371 < _list1369.size; ++_i1371) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplicationMetrics.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplicationMetrics.java index d613aa4428ee..50eda8d5dec1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplicationMetrics.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ReplicationMetrics.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ReplicationMetrics 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("ReplicationMetrics"); @@ -375,8 +375,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ReplicationMetrics) return this.equals((ReplicationMetrics)that); return false; @@ -467,7 +465,7 @@ public int compareTo(ReplicationMetrics other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetScheduledExecutionId()).compareTo(other.isSetScheduledExecutionId()); + lastComparison = java.lang.Boolean.compare(isSetScheduledExecutionId(), other.isSetScheduledExecutionId()); if (lastComparison != 0) { return lastComparison; } @@ -477,7 +475,7 @@ public int compareTo(ReplicationMetrics other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPolicy()).compareTo(other.isSetPolicy()); + lastComparison = java.lang.Boolean.compare(isSetPolicy(), other.isSetPolicy()); if (lastComparison != 0) { return lastComparison; } @@ -487,7 +485,7 @@ public int compareTo(ReplicationMetrics other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDumpExecutionId()).compareTo(other.isSetDumpExecutionId()); + lastComparison = java.lang.Boolean.compare(isSetDumpExecutionId(), other.isSetDumpExecutionId()); if (lastComparison != 0) { return lastComparison; } @@ -497,7 +495,7 @@ public int compareTo(ReplicationMetrics other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMetadata()).compareTo(other.isSetMetadata()); + lastComparison = java.lang.Boolean.compare(isSetMetadata(), other.isSetMetadata()); if (lastComparison != 0) { return lastComparison; } @@ -507,7 +505,7 @@ public int compareTo(ReplicationMetrics other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProgress()).compareTo(other.isSetProgress()); + lastComparison = java.lang.Boolean.compare(isSetProgress(), other.isSetProgress()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RequestPartsSpec.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RequestPartsSpec.java index 8263ace8bd7f..dcfd4f579268 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RequestPartsSpec.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RequestPartsSpec.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class RequestPartsSpec extends org.apache.thrift.TUnion { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("RequestPartsSpec"); private static final org.apache.thrift.protocol.TField NAMES_FIELD_DESC = new org.apache.thrift.protocol.TField("names", org.apache.thrift.protocol.TType.LIST, (short)1); @@ -327,9 +327,8 @@ public java.util.List getNames() { } public void setNames(java.util.List value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.NAMES; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.NAMES"); } public java.util.List getExprs() { @@ -341,9 +340,8 @@ public java.util.List getExprs() { } public void setExprs(java.util.List value) { - if (value == null) throw new java.lang.NullPointerException(); setField_ = _Fields.EXPRS; - value_ = value; + value_ = java.util.Objects.requireNonNull(value,"_Fields.EXPRS"); } public boolean isSetNames() { diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ResourceType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ResourceType.java index 4a9c5d47c929..5ec9784cf62e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ResourceType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ResourceType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum ResourceType implements org.apache.thrift.TEnum { JAR(1), FILE(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ResourceUri.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ResourceUri.java index 9b0f07a15b0d..b4c55940b12c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ResourceUri.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ResourceUri.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ResourceUri 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("ResourceUri"); @@ -240,8 +240,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ResourceUri) return this.equals((ResourceUri)that); return false; @@ -297,7 +295,7 @@ public int compareTo(ResourceUri other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourceType()).compareTo(other.isSetResourceType()); + lastComparison = java.lang.Boolean.compare(isSetResourceType(), other.isSetResourceType()); if (lastComparison != 0) { return lastComparison; } @@ -307,7 +305,7 @@ public int compareTo(ResourceUri other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUri()).compareTo(other.isSetUri()); + lastComparison = java.lang.Boolean.compare(isSetUri(), other.isSetUri()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Role.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Role.java index f697279c03f2..891f43a1c446 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Role.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Role.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Role 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("Role"); @@ -279,8 +279,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Role) return this.equals((Role)that); return false; @@ -347,7 +345,7 @@ public int compareTo(Role other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRoleName()).compareTo(other.isSetRoleName()); + lastComparison = java.lang.Boolean.compare(isSetRoleName(), other.isSetRoleName()); if (lastComparison != 0) { return lastComparison; } @@ -357,7 +355,7 @@ public int compareTo(Role other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreateTime()).compareTo(other.isSetCreateTime()); + lastComparison = java.lang.Boolean.compare(isSetCreateTime(), other.isSetCreateTime()); if (lastComparison != 0) { return lastComparison; } @@ -367,7 +365,7 @@ public int compareTo(Role other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerName()).compareTo(other.isSetOwnerName()); + lastComparison = java.lang.Boolean.compare(isSetOwnerName(), other.isSetOwnerName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RolePrincipalGrant.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RolePrincipalGrant.java index 0ffd459dcceb..bbda38fa426e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RolePrincipalGrant.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RolePrincipalGrant.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class RolePrincipalGrant 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("RolePrincipalGrant"); @@ -502,8 +502,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof RolePrincipalGrant) return this.equals((RolePrincipalGrant)that); return false; @@ -620,7 +618,7 @@ public int compareTo(RolePrincipalGrant other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRoleName()).compareTo(other.isSetRoleName()); + lastComparison = java.lang.Boolean.compare(isSetRoleName(), other.isSetRoleName()); if (lastComparison != 0) { return lastComparison; } @@ -630,7 +628,7 @@ public int compareTo(RolePrincipalGrant other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipalName()).compareTo(other.isSetPrincipalName()); + lastComparison = java.lang.Boolean.compare(isSetPrincipalName(), other.isSetPrincipalName()); if (lastComparison != 0) { return lastComparison; } @@ -640,7 +638,7 @@ public int compareTo(RolePrincipalGrant other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipalType()).compareTo(other.isSetPrincipalType()); + lastComparison = java.lang.Boolean.compare(isSetPrincipalType(), other.isSetPrincipalType()); if (lastComparison != 0) { return lastComparison; } @@ -650,7 +648,7 @@ public int compareTo(RolePrincipalGrant other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantOption()).compareTo(other.isSetGrantOption()); + lastComparison = java.lang.Boolean.compare(isSetGrantOption(), other.isSetGrantOption()); if (lastComparison != 0) { return lastComparison; } @@ -660,7 +658,7 @@ public int compareTo(RolePrincipalGrant other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantTime()).compareTo(other.isSetGrantTime()); + lastComparison = java.lang.Boolean.compare(isSetGrantTime(), other.isSetGrantTime()); if (lastComparison != 0) { return lastComparison; } @@ -670,7 +668,7 @@ public int compareTo(RolePrincipalGrant other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantorName()).compareTo(other.isSetGrantorName()); + lastComparison = java.lang.Boolean.compare(isSetGrantorName(), other.isSetGrantorName()); if (lastComparison != 0) { return lastComparison; } @@ -680,7 +678,7 @@ public int compareTo(RolePrincipalGrant other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantorPrincipalType()).compareTo(other.isSetGrantorPrincipalType()); + lastComparison = java.lang.Boolean.compare(isSetGrantorPrincipalType(), other.isSetGrantorPrincipalType()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RuntimeStat.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RuntimeStat.java index 0bb6aba2c9b4..9a37ea15bf98 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RuntimeStat.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/RuntimeStat.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class RuntimeStat 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("RuntimeStat"); @@ -288,8 +288,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof RuntimeStat) return this.equals((RuntimeStat)that); return false; @@ -356,7 +354,7 @@ public int compareTo(RuntimeStat other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCreateTime()).compareTo(other.isSetCreateTime()); + lastComparison = java.lang.Boolean.compare(isSetCreateTime(), other.isSetCreateTime()); if (lastComparison != 0) { return lastComparison; } @@ -366,7 +364,7 @@ public int compareTo(RuntimeStat other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWeight()).compareTo(other.isSetWeight()); + lastComparison = java.lang.Boolean.compare(isSetWeight(), other.isSetWeight()); if (lastComparison != 0) { return lastComparison; } @@ -376,7 +374,7 @@ public int compareTo(RuntimeStat other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPayload()).compareTo(other.isSetPayload()); + lastComparison = java.lang.Boolean.compare(isSetPayload(), other.isSetPayload()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLAllTableConstraints.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLAllTableConstraints.java index ae0c7b0adbf1..a5293b51db0e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLAllTableConstraints.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLAllTableConstraints.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SQLAllTableConstraints 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("SQLAllTableConstraints"); @@ -538,8 +538,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SQLAllTableConstraints) return this.equals((SQLAllTableConstraints)that); return false; @@ -647,7 +645,7 @@ public int compareTo(SQLAllTableConstraints other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPrimaryKeys()).compareTo(other.isSetPrimaryKeys()); + lastComparison = java.lang.Boolean.compare(isSetPrimaryKeys(), other.isSetPrimaryKeys()); if (lastComparison != 0) { return lastComparison; } @@ -657,7 +655,7 @@ public int compareTo(SQLAllTableConstraints other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetForeignKeys()).compareTo(other.isSetForeignKeys()); + lastComparison = java.lang.Boolean.compare(isSetForeignKeys(), other.isSetForeignKeys()); if (lastComparison != 0) { return lastComparison; } @@ -667,7 +665,7 @@ public int compareTo(SQLAllTableConstraints other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUniqueConstraints()).compareTo(other.isSetUniqueConstraints()); + lastComparison = java.lang.Boolean.compare(isSetUniqueConstraints(), other.isSetUniqueConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -677,7 +675,7 @@ public int compareTo(SQLAllTableConstraints other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNotNullConstraints()).compareTo(other.isSetNotNullConstraints()); + lastComparison = java.lang.Boolean.compare(isSetNotNullConstraints(), other.isSetNotNullConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -687,7 +685,7 @@ public int compareTo(SQLAllTableConstraints other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDefaultConstraints()).compareTo(other.isSetDefaultConstraints()); + lastComparison = java.lang.Boolean.compare(isSetDefaultConstraints(), other.isSetDefaultConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -697,7 +695,7 @@ public int compareTo(SQLAllTableConstraints other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCheckConstraints()).compareTo(other.isSetCheckConstraints()); + lastComparison = java.lang.Boolean.compare(isSetCheckConstraints(), other.isSetCheckConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -1140,7 +1138,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SQLAllTableConstrain java.util.BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list30 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list30 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.primaryKeys = new java.util.ArrayList(_list30.size); @org.apache.thrift.annotation.Nullable SQLPrimaryKey _elem31; for (int _i32 = 0; _i32 < _list30.size; ++_i32) @@ -1154,7 +1152,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SQLAllTableConstrain } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list33 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list33 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.foreignKeys = new java.util.ArrayList(_list33.size); @org.apache.thrift.annotation.Nullable SQLForeignKey _elem34; for (int _i35 = 0; _i35 < _list33.size; ++_i35) @@ -1168,7 +1166,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SQLAllTableConstrain } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list36 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list36 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.uniqueConstraints = new java.util.ArrayList(_list36.size); @org.apache.thrift.annotation.Nullable SQLUniqueConstraint _elem37; for (int _i38 = 0; _i38 < _list36.size; ++_i38) @@ -1182,7 +1180,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SQLAllTableConstrain } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list39 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list39 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.notNullConstraints = new java.util.ArrayList(_list39.size); @org.apache.thrift.annotation.Nullable SQLNotNullConstraint _elem40; for (int _i41 = 0; _i41 < _list39.size; ++_i41) @@ -1196,7 +1194,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SQLAllTableConstrain } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list42 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list42 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.defaultConstraints = new java.util.ArrayList(_list42.size); @org.apache.thrift.annotation.Nullable SQLDefaultConstraint _elem43; for (int _i44 = 0; _i44 < _list42.size; ++_i44) @@ -1210,7 +1208,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SQLAllTableConstrain } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list45 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list45 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.checkConstraints = new java.util.ArrayList(_list45.size); @org.apache.thrift.annotation.Nullable SQLCheckConstraint _elem46; for (int _i47 = 0; _i47 < _list45.size; ++_i47) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLCheckConstraint.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLCheckConstraint.java index f35f6165a02e..149750e40ed4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLCheckConstraint.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLCheckConstraint.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SQLCheckConstraint 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("SQLCheckConstraint"); @@ -577,8 +577,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SQLCheckConstraint) return this.equals((SQLCheckConstraint)that); return false; @@ -719,7 +717,7 @@ public int compareTo(SQLCheckConstraint other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -729,7 +727,7 @@ public int compareTo(SQLCheckConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_db()).compareTo(other.isSetTable_db()); + lastComparison = java.lang.Boolean.compare(isSetTable_db(), other.isSetTable_db()); if (lastComparison != 0) { return lastComparison; } @@ -739,7 +737,7 @@ public int compareTo(SQLCheckConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_name()).compareTo(other.isSetTable_name()); + lastComparison = java.lang.Boolean.compare(isSetTable_name(), other.isSetTable_name()); if (lastComparison != 0) { return lastComparison; } @@ -749,7 +747,7 @@ public int compareTo(SQLCheckConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColumn_name()).compareTo(other.isSetColumn_name()); + lastComparison = java.lang.Boolean.compare(isSetColumn_name(), other.isSetColumn_name()); if (lastComparison != 0) { return lastComparison; } @@ -759,7 +757,7 @@ public int compareTo(SQLCheckConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCheck_expression()).compareTo(other.isSetCheck_expression()); + lastComparison = java.lang.Boolean.compare(isSetCheck_expression(), other.isSetCheck_expression()); if (lastComparison != 0) { return lastComparison; } @@ -769,7 +767,7 @@ public int compareTo(SQLCheckConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDc_name()).compareTo(other.isSetDc_name()); + lastComparison = java.lang.Boolean.compare(isSetDc_name(), other.isSetDc_name()); if (lastComparison != 0) { return lastComparison; } @@ -779,7 +777,7 @@ public int compareTo(SQLCheckConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnable_cstr()).compareTo(other.isSetEnable_cstr()); + lastComparison = java.lang.Boolean.compare(isSetEnable_cstr(), other.isSetEnable_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -789,7 +787,7 @@ public int compareTo(SQLCheckConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidate_cstr()).compareTo(other.isSetValidate_cstr()); + lastComparison = java.lang.Boolean.compare(isSetValidate_cstr(), other.isSetValidate_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -799,7 +797,7 @@ public int compareTo(SQLCheckConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRely_cstr()).compareTo(other.isSetRely_cstr()); + lastComparison = java.lang.Boolean.compare(isSetRely_cstr(), other.isSetRely_cstr()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLDefaultConstraint.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLDefaultConstraint.java index 660cfe101420..a055e8d179e4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLDefaultConstraint.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLDefaultConstraint.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SQLDefaultConstraint 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("SQLDefaultConstraint"); @@ -577,8 +577,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SQLDefaultConstraint) return this.equals((SQLDefaultConstraint)that); return false; @@ -719,7 +717,7 @@ public int compareTo(SQLDefaultConstraint other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -729,7 +727,7 @@ public int compareTo(SQLDefaultConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_db()).compareTo(other.isSetTable_db()); + lastComparison = java.lang.Boolean.compare(isSetTable_db(), other.isSetTable_db()); if (lastComparison != 0) { return lastComparison; } @@ -739,7 +737,7 @@ public int compareTo(SQLDefaultConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_name()).compareTo(other.isSetTable_name()); + lastComparison = java.lang.Boolean.compare(isSetTable_name(), other.isSetTable_name()); if (lastComparison != 0) { return lastComparison; } @@ -749,7 +747,7 @@ public int compareTo(SQLDefaultConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColumn_name()).compareTo(other.isSetColumn_name()); + lastComparison = java.lang.Boolean.compare(isSetColumn_name(), other.isSetColumn_name()); if (lastComparison != 0) { return lastComparison; } @@ -759,7 +757,7 @@ public int compareTo(SQLDefaultConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDefault_value()).compareTo(other.isSetDefault_value()); + lastComparison = java.lang.Boolean.compare(isSetDefault_value(), other.isSetDefault_value()); if (lastComparison != 0) { return lastComparison; } @@ -769,7 +767,7 @@ public int compareTo(SQLDefaultConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDc_name()).compareTo(other.isSetDc_name()); + lastComparison = java.lang.Boolean.compare(isSetDc_name(), other.isSetDc_name()); if (lastComparison != 0) { return lastComparison; } @@ -779,7 +777,7 @@ public int compareTo(SQLDefaultConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnable_cstr()).compareTo(other.isSetEnable_cstr()); + lastComparison = java.lang.Boolean.compare(isSetEnable_cstr(), other.isSetEnable_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -789,7 +787,7 @@ public int compareTo(SQLDefaultConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidate_cstr()).compareTo(other.isSetValidate_cstr()); + lastComparison = java.lang.Boolean.compare(isSetValidate_cstr(), other.isSetValidate_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -799,7 +797,7 @@ public int compareTo(SQLDefaultConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRely_cstr()).compareTo(other.isSetRely_cstr()); + lastComparison = java.lang.Boolean.compare(isSetRely_cstr(), other.isSetRely_cstr()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLForeignKey.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLForeignKey.java index c554c0f85ee6..c39ec22a7e8f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLForeignKey.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLForeignKey.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SQLForeignKey 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("SQLForeignKey"); @@ -873,8 +873,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SQLForeignKey) return this.equals((SQLForeignKey)that); return false; @@ -1087,7 +1085,7 @@ public int compareTo(SQLForeignKey other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPktable_db()).compareTo(other.isSetPktable_db()); + lastComparison = java.lang.Boolean.compare(isSetPktable_db(), other.isSetPktable_db()); if (lastComparison != 0) { return lastComparison; } @@ -1097,7 +1095,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPktable_name()).compareTo(other.isSetPktable_name()); + lastComparison = java.lang.Boolean.compare(isSetPktable_name(), other.isSetPktable_name()); if (lastComparison != 0) { return lastComparison; } @@ -1107,7 +1105,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPkcolumn_name()).compareTo(other.isSetPkcolumn_name()); + lastComparison = java.lang.Boolean.compare(isSetPkcolumn_name(), other.isSetPkcolumn_name()); if (lastComparison != 0) { return lastComparison; } @@ -1117,7 +1115,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFktable_db()).compareTo(other.isSetFktable_db()); + lastComparison = java.lang.Boolean.compare(isSetFktable_db(), other.isSetFktable_db()); if (lastComparison != 0) { return lastComparison; } @@ -1127,7 +1125,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFktable_name()).compareTo(other.isSetFktable_name()); + lastComparison = java.lang.Boolean.compare(isSetFktable_name(), other.isSetFktable_name()); if (lastComparison != 0) { return lastComparison; } @@ -1137,7 +1135,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFkcolumn_name()).compareTo(other.isSetFkcolumn_name()); + lastComparison = java.lang.Boolean.compare(isSetFkcolumn_name(), other.isSetFkcolumn_name()); if (lastComparison != 0) { return lastComparison; } @@ -1147,7 +1145,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetKey_seq()).compareTo(other.isSetKey_seq()); + lastComparison = java.lang.Boolean.compare(isSetKey_seq(), other.isSetKey_seq()); if (lastComparison != 0) { return lastComparison; } @@ -1157,7 +1155,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUpdate_rule()).compareTo(other.isSetUpdate_rule()); + lastComparison = java.lang.Boolean.compare(isSetUpdate_rule(), other.isSetUpdate_rule()); if (lastComparison != 0) { return lastComparison; } @@ -1167,7 +1165,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDelete_rule()).compareTo(other.isSetDelete_rule()); + lastComparison = java.lang.Boolean.compare(isSetDelete_rule(), other.isSetDelete_rule()); if (lastComparison != 0) { return lastComparison; } @@ -1177,7 +1175,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFk_name()).compareTo(other.isSetFk_name()); + lastComparison = java.lang.Boolean.compare(isSetFk_name(), other.isSetFk_name()); if (lastComparison != 0) { return lastComparison; } @@ -1187,7 +1185,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPk_name()).compareTo(other.isSetPk_name()); + lastComparison = java.lang.Boolean.compare(isSetPk_name(), other.isSetPk_name()); if (lastComparison != 0) { return lastComparison; } @@ -1197,7 +1195,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnable_cstr()).compareTo(other.isSetEnable_cstr()); + lastComparison = java.lang.Boolean.compare(isSetEnable_cstr(), other.isSetEnable_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -1207,7 +1205,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidate_cstr()).compareTo(other.isSetValidate_cstr()); + lastComparison = java.lang.Boolean.compare(isSetValidate_cstr(), other.isSetValidate_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -1217,7 +1215,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRely_cstr()).compareTo(other.isSetRely_cstr()); + lastComparison = java.lang.Boolean.compare(isSetRely_cstr(), other.isSetRely_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -1227,7 +1225,7 @@ public int compareTo(SQLForeignKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLNotNullConstraint.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLNotNullConstraint.java index a8e368c92bba..2b755aa4aec4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLNotNullConstraint.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLNotNullConstraint.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SQLNotNullConstraint 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("SQLNotNullConstraint"); @@ -527,8 +527,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SQLNotNullConstraint) return this.equals((SQLNotNullConstraint)that); return false; @@ -656,7 +654,7 @@ public int compareTo(SQLNotNullConstraint other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -666,7 +664,7 @@ public int compareTo(SQLNotNullConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_db()).compareTo(other.isSetTable_db()); + lastComparison = java.lang.Boolean.compare(isSetTable_db(), other.isSetTable_db()); if (lastComparison != 0) { return lastComparison; } @@ -676,7 +674,7 @@ public int compareTo(SQLNotNullConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_name()).compareTo(other.isSetTable_name()); + lastComparison = java.lang.Boolean.compare(isSetTable_name(), other.isSetTable_name()); if (lastComparison != 0) { return lastComparison; } @@ -686,7 +684,7 @@ public int compareTo(SQLNotNullConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColumn_name()).compareTo(other.isSetColumn_name()); + lastComparison = java.lang.Boolean.compare(isSetColumn_name(), other.isSetColumn_name()); if (lastComparison != 0) { return lastComparison; } @@ -696,7 +694,7 @@ public int compareTo(SQLNotNullConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNn_name()).compareTo(other.isSetNn_name()); + lastComparison = java.lang.Boolean.compare(isSetNn_name(), other.isSetNn_name()); if (lastComparison != 0) { return lastComparison; } @@ -706,7 +704,7 @@ public int compareTo(SQLNotNullConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnable_cstr()).compareTo(other.isSetEnable_cstr()); + lastComparison = java.lang.Boolean.compare(isSetEnable_cstr(), other.isSetEnable_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -716,7 +714,7 @@ public int compareTo(SQLNotNullConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidate_cstr()).compareTo(other.isSetValidate_cstr()); + lastComparison = java.lang.Boolean.compare(isSetValidate_cstr(), other.isSetValidate_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -726,7 +724,7 @@ public int compareTo(SQLNotNullConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRely_cstr()).compareTo(other.isSetRely_cstr()); + lastComparison = java.lang.Boolean.compare(isSetRely_cstr(), other.isSetRely_cstr()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLPrimaryKey.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLPrimaryKey.java index fe023a9bf36e..9c0dc57bbb3a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLPrimaryKey.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLPrimaryKey.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SQLPrimaryKey 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("SQLPrimaryKey"); @@ -575,8 +575,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SQLPrimaryKey) return this.equals((SQLPrimaryKey)that); return false; @@ -715,7 +713,7 @@ public int compareTo(SQLPrimaryKey other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTable_db()).compareTo(other.isSetTable_db()); + lastComparison = java.lang.Boolean.compare(isSetTable_db(), other.isSetTable_db()); if (lastComparison != 0) { return lastComparison; } @@ -725,7 +723,7 @@ public int compareTo(SQLPrimaryKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_name()).compareTo(other.isSetTable_name()); + lastComparison = java.lang.Boolean.compare(isSetTable_name(), other.isSetTable_name()); if (lastComparison != 0) { return lastComparison; } @@ -735,7 +733,7 @@ public int compareTo(SQLPrimaryKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColumn_name()).compareTo(other.isSetColumn_name()); + lastComparison = java.lang.Boolean.compare(isSetColumn_name(), other.isSetColumn_name()); if (lastComparison != 0) { return lastComparison; } @@ -745,7 +743,7 @@ public int compareTo(SQLPrimaryKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetKey_seq()).compareTo(other.isSetKey_seq()); + lastComparison = java.lang.Boolean.compare(isSetKey_seq(), other.isSetKey_seq()); if (lastComparison != 0) { return lastComparison; } @@ -755,7 +753,7 @@ public int compareTo(SQLPrimaryKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPk_name()).compareTo(other.isSetPk_name()); + lastComparison = java.lang.Boolean.compare(isSetPk_name(), other.isSetPk_name()); if (lastComparison != 0) { return lastComparison; } @@ -765,7 +763,7 @@ public int compareTo(SQLPrimaryKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnable_cstr()).compareTo(other.isSetEnable_cstr()); + lastComparison = java.lang.Boolean.compare(isSetEnable_cstr(), other.isSetEnable_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -775,7 +773,7 @@ public int compareTo(SQLPrimaryKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidate_cstr()).compareTo(other.isSetValidate_cstr()); + lastComparison = java.lang.Boolean.compare(isSetValidate_cstr(), other.isSetValidate_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -785,7 +783,7 @@ public int compareTo(SQLPrimaryKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRely_cstr()).compareTo(other.isSetRely_cstr()); + lastComparison = java.lang.Boolean.compare(isSetRely_cstr(), other.isSetRely_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -795,7 +793,7 @@ public int compareTo(SQLPrimaryKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLUniqueConstraint.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLUniqueConstraint.java index e4a39e68e0ce..e7e3cd9ca2a0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLUniqueConstraint.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SQLUniqueConstraint.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SQLUniqueConstraint 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("SQLUniqueConstraint"); @@ -576,8 +576,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SQLUniqueConstraint) return this.equals((SQLUniqueConstraint)that); return false; @@ -716,7 +714,7 @@ public int compareTo(SQLUniqueConstraint other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -726,7 +724,7 @@ public int compareTo(SQLUniqueConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_db()).compareTo(other.isSetTable_db()); + lastComparison = java.lang.Boolean.compare(isSetTable_db(), other.isSetTable_db()); if (lastComparison != 0) { return lastComparison; } @@ -736,7 +734,7 @@ public int compareTo(SQLUniqueConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_name()).compareTo(other.isSetTable_name()); + lastComparison = java.lang.Boolean.compare(isSetTable_name(), other.isSetTable_name()); if (lastComparison != 0) { return lastComparison; } @@ -746,7 +744,7 @@ public int compareTo(SQLUniqueConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColumn_name()).compareTo(other.isSetColumn_name()); + lastComparison = java.lang.Boolean.compare(isSetColumn_name(), other.isSetColumn_name()); if (lastComparison != 0) { return lastComparison; } @@ -756,7 +754,7 @@ public int compareTo(SQLUniqueConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetKey_seq()).compareTo(other.isSetKey_seq()); + lastComparison = java.lang.Boolean.compare(isSetKey_seq(), other.isSetKey_seq()); if (lastComparison != 0) { return lastComparison; } @@ -766,7 +764,7 @@ public int compareTo(SQLUniqueConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUk_name()).compareTo(other.isSetUk_name()); + lastComparison = java.lang.Boolean.compare(isSetUk_name(), other.isSetUk_name()); if (lastComparison != 0) { return lastComparison; } @@ -776,7 +774,7 @@ public int compareTo(SQLUniqueConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnable_cstr()).compareTo(other.isSetEnable_cstr()); + lastComparison = java.lang.Boolean.compare(isSetEnable_cstr(), other.isSetEnable_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -786,7 +784,7 @@ public int compareTo(SQLUniqueConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidate_cstr()).compareTo(other.isSetValidate_cstr()); + lastComparison = java.lang.Boolean.compare(isSetValidate_cstr(), other.isSetValidate_cstr()); if (lastComparison != 0) { return lastComparison; } @@ -796,7 +794,7 @@ public int compareTo(SQLUniqueConstraint other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRely_cstr()).compareTo(other.isSetRely_cstr()); + lastComparison = java.lang.Boolean.compare(isSetRely_cstr(), other.isSetRely_cstr()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQuery.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQuery.java index fcb32359e265..36b5f0163370 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQuery.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQuery.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ScheduledQuery 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("ScheduledQuery"); @@ -417,8 +417,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ScheduledQuery) return this.equals((ScheduledQuery)that); return false; @@ -526,7 +524,7 @@ public int compareTo(ScheduledQuery other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetScheduleKey()).compareTo(other.isSetScheduleKey()); + lastComparison = java.lang.Boolean.compare(isSetScheduleKey(), other.isSetScheduleKey()); if (lastComparison != 0) { return lastComparison; } @@ -536,7 +534,7 @@ public int compareTo(ScheduledQuery other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnabled()).compareTo(other.isSetEnabled()); + lastComparison = java.lang.Boolean.compare(isSetEnabled(), other.isSetEnabled()); if (lastComparison != 0) { return lastComparison; } @@ -546,7 +544,7 @@ public int compareTo(ScheduledQuery other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSchedule()).compareTo(other.isSetSchedule()); + lastComparison = java.lang.Boolean.compare(isSetSchedule(), other.isSetSchedule()); if (lastComparison != 0) { return lastComparison; } @@ -556,7 +554,7 @@ public int compareTo(ScheduledQuery other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUser()).compareTo(other.isSetUser()); + lastComparison = java.lang.Boolean.compare(isSetUser(), other.isSetUser()); if (lastComparison != 0) { return lastComparison; } @@ -566,7 +564,7 @@ public int compareTo(ScheduledQuery other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetQuery()).compareTo(other.isSetQuery()); + lastComparison = java.lang.Boolean.compare(isSetQuery(), other.isSetQuery()); if (lastComparison != 0) { return lastComparison; } @@ -576,7 +574,7 @@ public int compareTo(ScheduledQuery other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNextExecution()).compareTo(other.isSetNextExecution()); + lastComparison = java.lang.Boolean.compare(isSetNextExecution(), other.isSetNextExecution()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryKey.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryKey.java index e072e0945a27..af9e7564bbcd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryKey.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryKey.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ScheduledQueryKey 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("ScheduledQueryKey"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ScheduledQueryKey) return this.equals((ScheduledQueryKey)that); return false; @@ -285,7 +283,7 @@ public int compareTo(ScheduledQueryKey other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetScheduleName()).compareTo(other.isSetScheduleName()); + lastComparison = java.lang.Boolean.compare(isSetScheduleName(), other.isSetScheduleName()); if (lastComparison != 0) { return lastComparison; } @@ -295,7 +293,7 @@ public int compareTo(ScheduledQueryKey other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetClusterNamespace()).compareTo(other.isSetClusterNamespace()); + lastComparison = java.lang.Boolean.compare(isSetClusterNamespace(), other.isSetClusterNamespace()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryMaintenanceRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryMaintenanceRequest.java index f8080878682a..5463a5dd85a1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryMaintenanceRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryMaintenanceRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ScheduledQueryMaintenanceRequest 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("ScheduledQueryMaintenanceRequest"); @@ -240,8 +240,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ScheduledQueryMaintenanceRequest) return this.equals((ScheduledQueryMaintenanceRequest)that); return false; @@ -297,7 +295,7 @@ public int compareTo(ScheduledQueryMaintenanceRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -307,7 +305,7 @@ public int compareTo(ScheduledQueryMaintenanceRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetScheduledQuery()).compareTo(other.isSetScheduledQuery()); + lastComparison = java.lang.Boolean.compare(isSetScheduledQuery(), other.isSetScheduledQuery()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryMaintenanceRequestType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryMaintenanceRequestType.java index 4edab5b1e978..36d014d5b479 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryMaintenanceRequestType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryMaintenanceRequestType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum ScheduledQueryMaintenanceRequestType implements org.apache.thrift.TEnum { CREATE(1), ALTER(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryPollRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryPollRequest.java index 6e89a0b22128..e685537037df 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryPollRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryPollRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ScheduledQueryPollRequest 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("ScheduledQueryPollRequest"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ScheduledQueryPollRequest) return this.equals((ScheduledQueryPollRequest)that); return false; @@ -222,7 +220,7 @@ public int compareTo(ScheduledQueryPollRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetClusterNamespace()).compareTo(other.isSetClusterNamespace()); + lastComparison = java.lang.Boolean.compare(isSetClusterNamespace(), other.isSetClusterNamespace()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryPollResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryPollResponse.java index d4a0d4c269cc..9c515c360ed8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryPollResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryPollResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ScheduledQueryPollResponse 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("ScheduledQueryPollResponse"); @@ -316,8 +316,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ScheduledQueryPollResponse) return this.equals((ScheduledQueryPollResponse)that); return false; @@ -399,7 +397,7 @@ public int compareTo(ScheduledQueryPollResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetScheduleKey()).compareTo(other.isSetScheduleKey()); + lastComparison = java.lang.Boolean.compare(isSetScheduleKey(), other.isSetScheduleKey()); if (lastComparison != 0) { return lastComparison; } @@ -409,7 +407,7 @@ public int compareTo(ScheduledQueryPollResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetExecutionId()).compareTo(other.isSetExecutionId()); + lastComparison = java.lang.Boolean.compare(isSetExecutionId(), other.isSetExecutionId()); if (lastComparison != 0) { return lastComparison; } @@ -419,7 +417,7 @@ public int compareTo(ScheduledQueryPollResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetQuery()).compareTo(other.isSetQuery()); + lastComparison = java.lang.Boolean.compare(isSetQuery(), other.isSetQuery()); if (lastComparison != 0) { return lastComparison; } @@ -429,7 +427,7 @@ public int compareTo(ScheduledQueryPollResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUser()).compareTo(other.isSetUser()); + lastComparison = java.lang.Boolean.compare(isSetUser(), other.isSetUser()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryProgressInfo.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryProgressInfo.java index ab03e515c548..1d2f989cd722 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryProgressInfo.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ScheduledQueryProgressInfo.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ScheduledQueryProgressInfo 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("ScheduledQueryProgressInfo"); @@ -340,8 +340,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ScheduledQueryProgressInfo) return this.equals((ScheduledQueryProgressInfo)that); return false; @@ -421,7 +419,7 @@ public int compareTo(ScheduledQueryProgressInfo other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetScheduledExecutionId()).compareTo(other.isSetScheduledExecutionId()); + lastComparison = java.lang.Boolean.compare(isSetScheduledExecutionId(), other.isSetScheduledExecutionId()); if (lastComparison != 0) { return lastComparison; } @@ -431,7 +429,7 @@ public int compareTo(ScheduledQueryProgressInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetState()).compareTo(other.isSetState()); + lastComparison = java.lang.Boolean.compare(isSetState(), other.isSetState()); if (lastComparison != 0) { return lastComparison; } @@ -441,7 +439,7 @@ public int compareTo(ScheduledQueryProgressInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetExecutorQueryId()).compareTo(other.isSetExecutorQueryId()); + lastComparison = java.lang.Boolean.compare(isSetExecutorQueryId(), other.isSetExecutorQueryId()); if (lastComparison != 0) { return lastComparison; } @@ -451,7 +449,7 @@ public int compareTo(ScheduledQueryProgressInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetErrorMessage()).compareTo(other.isSetErrorMessage()); + lastComparison = java.lang.Boolean.compare(isSetErrorMessage(), other.isSetErrorMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Schema.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Schema.java index 81701c4eb615..77bb3568f9e9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Schema.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Schema.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Schema 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("Schema"); @@ -263,8 +263,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Schema) return this.equals((Schema)that); return false; @@ -320,7 +318,7 @@ public int compareTo(Schema other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFieldSchemas()).compareTo(other.isSetFieldSchemas()); + lastComparison = java.lang.Boolean.compare(isSetFieldSchemas(), other.isSetFieldSchemas()); if (lastComparison != 0) { return lastComparison; } @@ -330,7 +328,7 @@ public int compareTo(Schema other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProperties()).compareTo(other.isSetProperties()); + lastComparison = java.lang.Boolean.compare(isSetProperties(), other.isSetProperties()); if (lastComparison != 0) { return lastComparison; } @@ -548,7 +546,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Schema struct) throw java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list383 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list383 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.fieldSchemas = new java.util.ArrayList(_list383.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem384; for (int _i385 = 0; _i385 < _list383.size; ++_i385) @@ -562,7 +560,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Schema struct) throw } if (incoming.get(1)) { { - org.apache.thrift.protocol.TMap _map386 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map386 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.properties = new java.util.HashMap(2*_map386.size); @org.apache.thrift.annotation.Nullable java.lang.String _key387; @org.apache.thrift.annotation.Nullable java.lang.String _val388; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaCompatibility.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaCompatibility.java index 1a93b85d3c9d..a4f6afbf5520 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaCompatibility.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaCompatibility.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum SchemaCompatibility implements org.apache.thrift.TEnum { NONE(1), BACKWARD(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaType.java index 9766a4683155..4d4b41a620de 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum SchemaType implements org.apache.thrift.TEnum { HIVE(1), AVRO(2); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaValidation.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaValidation.java index f510448d9ff3..74776ab3b2b1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaValidation.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaValidation.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum SchemaValidation implements org.apache.thrift.TEnum { LATEST(1), ALL(2); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersion.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersion.java index 14ac1e34bae6..7295f8edf370 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersion.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersion.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SchemaVersion 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("SchemaVersion"); @@ -650,8 +650,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SchemaVersion) return this.equals((SchemaVersion)that); return false; @@ -807,7 +805,7 @@ public int compareTo(SchemaVersion other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSchema()).compareTo(other.isSetSchema()); + lastComparison = java.lang.Boolean.compare(isSetSchema(), other.isSetSchema()); if (lastComparison != 0) { return lastComparison; } @@ -817,7 +815,7 @@ public int compareTo(SchemaVersion other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetVersion()).compareTo(other.isSetVersion()); + lastComparison = java.lang.Boolean.compare(isSetVersion(), other.isSetVersion()); if (lastComparison != 0) { return lastComparison; } @@ -827,7 +825,7 @@ public int compareTo(SchemaVersion other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreatedAt()).compareTo(other.isSetCreatedAt()); + lastComparison = java.lang.Boolean.compare(isSetCreatedAt(), other.isSetCreatedAt()); if (lastComparison != 0) { return lastComparison; } @@ -837,7 +835,7 @@ public int compareTo(SchemaVersion other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCols()).compareTo(other.isSetCols()); + lastComparison = java.lang.Boolean.compare(isSetCols(), other.isSetCols()); if (lastComparison != 0) { return lastComparison; } @@ -847,7 +845,7 @@ public int compareTo(SchemaVersion other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetState()).compareTo(other.isSetState()); + lastComparison = java.lang.Boolean.compare(isSetState(), other.isSetState()); if (lastComparison != 0) { return lastComparison; } @@ -857,7 +855,7 @@ public int compareTo(SchemaVersion other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDescription()).compareTo(other.isSetDescription()); + lastComparison = java.lang.Boolean.compare(isSetDescription(), other.isSetDescription()); if (lastComparison != 0) { return lastComparison; } @@ -867,7 +865,7 @@ public int compareTo(SchemaVersion other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSchemaText()).compareTo(other.isSetSchemaText()); + lastComparison = java.lang.Boolean.compare(isSetSchemaText(), other.isSetSchemaText()); if (lastComparison != 0) { return lastComparison; } @@ -877,7 +875,7 @@ public int compareTo(SchemaVersion other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFingerprint()).compareTo(other.isSetFingerprint()); + lastComparison = java.lang.Boolean.compare(isSetFingerprint(), other.isSetFingerprint()); if (lastComparison != 0) { return lastComparison; } @@ -887,7 +885,7 @@ public int compareTo(SchemaVersion other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -897,7 +895,7 @@ public int compareTo(SchemaVersion other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSerDe()).compareTo(other.isSetSerDe()); + lastComparison = java.lang.Boolean.compare(isSetSerDe(), other.isSetSerDe()); if (lastComparison != 0) { return lastComparison; } @@ -1339,7 +1337,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SchemaVersion struct } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list1159 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1159 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.cols = new java.util.ArrayList(_list1159.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem1160; for (int _i1161 = 0; _i1161 < _list1159.size; ++_i1161) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionDescriptor.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionDescriptor.java index a32f04fb46a5..960e64c8d63a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionDescriptor.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionDescriptor.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SchemaVersionDescriptor 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("SchemaVersionDescriptor"); @@ -229,8 +229,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SchemaVersionDescriptor) return this.equals((SchemaVersionDescriptor)that); return false; @@ -284,7 +282,7 @@ public int compareTo(SchemaVersionDescriptor other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSchema()).compareTo(other.isSetSchema()); + lastComparison = java.lang.Boolean.compare(isSetSchema(), other.isSetSchema()); if (lastComparison != 0) { return lastComparison; } @@ -294,7 +292,7 @@ public int compareTo(SchemaVersionDescriptor other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetVersion()).compareTo(other.isSetVersion()); + lastComparison = java.lang.Boolean.compare(isSetVersion(), other.isSetVersion()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionState.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionState.java index 5b32badb8604..cd0fa80e66cd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionState.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionState.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum SchemaVersionState implements org.apache.thrift.TEnum { INITIATED(1), START_REVIEW(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SeedTableWriteIdsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SeedTableWriteIdsRequest.java index 002b95cee83c..14ac7be88651 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SeedTableWriteIdsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SeedTableWriteIdsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SeedTableWriteIdsRequest 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("SeedTableWriteIdsRequest"); @@ -279,8 +279,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SeedTableWriteIdsRequest) return this.equals((SeedTableWriteIdsRequest)that); return false; @@ -347,7 +345,7 @@ public int compareTo(SeedTableWriteIdsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -357,7 +355,7 @@ public int compareTo(SeedTableWriteIdsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -367,7 +365,7 @@ public int compareTo(SeedTableWriteIdsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSeedWriteId()).compareTo(other.isSetSeedWriteId()); + lastComparison = java.lang.Boolean.compare(isSetSeedWriteId(), other.isSetSeedWriteId()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SeedTxnIdRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SeedTxnIdRequest.java index 5f1d8dc3d35a..45b28918f958 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SeedTxnIdRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SeedTxnIdRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SeedTxnIdRequest 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("SeedTxnIdRequest"); @@ -179,8 +179,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SeedTxnIdRequest) return this.equals((SeedTxnIdRequest)that); return false; @@ -221,7 +219,7 @@ public int compareTo(SeedTxnIdRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSeedTxnId()).compareTo(other.isSetSeedTxnId()); + lastComparison = java.lang.Boolean.compare(isSetSeedTxnId(), other.isSetSeedTxnId()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerDeInfo.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerDeInfo.java index 8ed6bffb5df3..0be9255c3dfa 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerDeInfo.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerDeInfo.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SerDeInfo 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("SerDeInfo"); @@ -497,8 +497,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SerDeInfo) return this.equals((SerDeInfo)that); return false; @@ -619,7 +617,7 @@ public int compareTo(SerDeInfo other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -629,7 +627,7 @@ public int compareTo(SerDeInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSerializationLib()).compareTo(other.isSetSerializationLib()); + lastComparison = java.lang.Boolean.compare(isSetSerializationLib(), other.isSetSerializationLib()); if (lastComparison != 0) { return lastComparison; } @@ -639,7 +637,7 @@ public int compareTo(SerDeInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParameters()).compareTo(other.isSetParameters()); + lastComparison = java.lang.Boolean.compare(isSetParameters(), other.isSetParameters()); if (lastComparison != 0) { return lastComparison; } @@ -649,7 +647,7 @@ public int compareTo(SerDeInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDescription()).compareTo(other.isSetDescription()); + lastComparison = java.lang.Boolean.compare(isSetDescription(), other.isSetDescription()); if (lastComparison != 0) { return lastComparison; } @@ -659,7 +657,7 @@ public int compareTo(SerDeInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSerializerClass()).compareTo(other.isSetSerializerClass()); + lastComparison = java.lang.Boolean.compare(isSetSerializerClass(), other.isSetSerializerClass()); if (lastComparison != 0) { return lastComparison; } @@ -669,7 +667,7 @@ public int compareTo(SerDeInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDeserializerClass()).compareTo(other.isSetDeserializerClass()); + lastComparison = java.lang.Boolean.compare(isSetDeserializerClass(), other.isSetDeserializerClass()); if (lastComparison != 0) { return lastComparison; } @@ -679,7 +677,7 @@ public int compareTo(SerDeInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSerdeType()).compareTo(other.isSetSerdeType()); + lastComparison = java.lang.Boolean.compare(isSetSerdeType(), other.isSetSerdeType()); if (lastComparison != 0) { return lastComparison; } @@ -1032,7 +1030,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SerDeInfo struct) th } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map174 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map174 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.parameters = new java.util.HashMap(2*_map174.size); @org.apache.thrift.annotation.Nullable java.lang.String _key175; @org.apache.thrift.annotation.Nullable java.lang.String _val176; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerdeType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerdeType.java index 522dde6583c5..582592530f33 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerdeType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerdeType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum SerdeType implements org.apache.thrift.TEnum { HIVE(1), SCHEMA_REGISTRY(2); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SetPartitionsStatsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SetPartitionsStatsRequest.java index 478a6151634c..0dc97ac153e9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SetPartitionsStatsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SetPartitionsStatsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SetPartitionsStatsRequest 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("SetPartitionsStatsRequest"); @@ -394,8 +394,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SetPartitionsStatsRequest) return this.equals((SetPartitionsStatsRequest)that); return false; @@ -490,7 +488,7 @@ public int compareTo(SetPartitionsStatsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetColStats()).compareTo(other.isSetColStats()); + lastComparison = java.lang.Boolean.compare(isSetColStats(), other.isSetColStats()); if (lastComparison != 0) { return lastComparison; } @@ -500,7 +498,7 @@ public int compareTo(SetPartitionsStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNeedMerge()).compareTo(other.isSetNeedMerge()); + lastComparison = java.lang.Boolean.compare(isSetNeedMerge(), other.isSetNeedMerge()); if (lastComparison != 0) { return lastComparison; } @@ -510,7 +508,7 @@ public int compareTo(SetPartitionsStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteId()).compareTo(other.isSetWriteId()); + lastComparison = java.lang.Boolean.compare(isSetWriteId(), other.isSetWriteId()); if (lastComparison != 0) { return lastComparison; } @@ -520,7 +518,7 @@ public int compareTo(SetPartitionsStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -530,7 +528,7 @@ public int compareTo(SetPartitionsStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEngine()).compareTo(other.isSetEngine()); + lastComparison = java.lang.Boolean.compare(isSetEngine(), other.isSetEngine()); if (lastComparison != 0) { return lastComparison; } @@ -800,7 +798,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, SetPartitionsStatsR public void read(org.apache.thrift.protocol.TProtocol prot, SetPartitionsStatsRequest struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list369 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list369 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.colStats = new java.util.ArrayList(_list369.size); @org.apache.thrift.annotation.Nullable ColumnStatistics _elem370; for (int _i371 = 0; _i371 < _list369.size; ++_i371) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SetPartitionsStatsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SetPartitionsStatsResponse.java index 7639259a74ce..22553133e8ba 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SetPartitionsStatsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SetPartitionsStatsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SetPartitionsStatsResponse 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("SetPartitionsStatsResponse"); @@ -179,8 +179,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SetPartitionsStatsResponse) return this.equals((SetPartitionsStatsResponse)that); return false; @@ -221,7 +219,7 @@ public int compareTo(SetPartitionsStatsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResult()).compareTo(other.isSetResult()); + lastComparison = java.lang.Boolean.compare(isSetResult(), other.isSetResult()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SetSchemaVersionStateRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SetSchemaVersionStateRequest.java index 0751e3f2ff7c..271625c40963 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SetSchemaVersionStateRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SetSchemaVersionStateRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SetSchemaVersionStateRequest 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("SetSchemaVersionStateRequest"); @@ -240,8 +240,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SetSchemaVersionStateRequest) return this.equals((SetSchemaVersionStateRequest)that); return false; @@ -297,7 +295,7 @@ public int compareTo(SetSchemaVersionStateRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSchemaVersion()).compareTo(other.isSetSchemaVersion()); + lastComparison = java.lang.Boolean.compare(isSetSchemaVersion(), other.isSetSchemaVersion()); if (lastComparison != 0) { return lastComparison; } @@ -307,7 +305,7 @@ public int compareTo(SetSchemaVersionStateRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetState()).compareTo(other.isSetState()); + lastComparison = java.lang.Boolean.compare(isSetState(), other.isSetState()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactRequest.java index 32958236d9c6..9d110b17b626 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ShowCompactRequest 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("ShowCompactRequest"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ShowCompactRequest) return this.equals((ShowCompactRequest)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactResponse.java index 32939b0f148b..5851a6ee84e7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ShowCompactResponse 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("ShowCompactResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ShowCompactResponse) return this.equals((ShowCompactResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(ShowCompactResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCompacts()).compareTo(other.isSetCompacts()); + lastComparison = java.lang.Boolean.compare(isSetCompacts(), other.isSetCompacts()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ShowCompactResponse public void read(org.apache.thrift.protocol.TProtocol prot, ShowCompactResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list835 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list835 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.compacts = new java.util.ArrayList(_list835.size); @org.apache.thrift.annotation.Nullable ShowCompactResponseElement _elem836; for (int _i837 = 0; _i837 < _list835.size; ++_i837) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactResponseElement.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactResponseElement.java index 9955837ed2d8..dff37fe2e68b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactResponseElement.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactResponseElement.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ShowCompactResponseElement 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("ShowCompactResponseElement"); @@ -1008,8 +1008,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ShowCompactResponseElement) return this.equals((ShowCompactResponseElement)that); return false; @@ -1273,7 +1271,7 @@ public int compareTo(ShowCompactResponseElement other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -1283,7 +1281,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTablename()).compareTo(other.isSetTablename()); + lastComparison = java.lang.Boolean.compare(isSetTablename(), other.isSetTablename()); if (lastComparison != 0) { return lastComparison; } @@ -1293,7 +1291,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionname()).compareTo(other.isSetPartitionname()); + lastComparison = java.lang.Boolean.compare(isSetPartitionname(), other.isSetPartitionname()); if (lastComparison != 0) { return lastComparison; } @@ -1303,7 +1301,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -1313,7 +1311,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetState()).compareTo(other.isSetState()); + lastComparison = java.lang.Boolean.compare(isSetState(), other.isSetState()); if (lastComparison != 0) { return lastComparison; } @@ -1323,7 +1321,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWorkerid()).compareTo(other.isSetWorkerid()); + lastComparison = java.lang.Boolean.compare(isSetWorkerid(), other.isSetWorkerid()); if (lastComparison != 0) { return lastComparison; } @@ -1333,7 +1331,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStart()).compareTo(other.isSetStart()); + lastComparison = java.lang.Boolean.compare(isSetStart(), other.isSetStart()); if (lastComparison != 0) { return lastComparison; } @@ -1343,7 +1341,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRunAs()).compareTo(other.isSetRunAs()); + lastComparison = java.lang.Boolean.compare(isSetRunAs(), other.isSetRunAs()); if (lastComparison != 0) { return lastComparison; } @@ -1353,7 +1351,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHightestTxnId()).compareTo(other.isSetHightestTxnId()); + lastComparison = java.lang.Boolean.compare(isSetHightestTxnId(), other.isSetHightestTxnId()); if (lastComparison != 0) { return lastComparison; } @@ -1363,7 +1361,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMetaInfo()).compareTo(other.isSetMetaInfo()); + lastComparison = java.lang.Boolean.compare(isSetMetaInfo(), other.isSetMetaInfo()); if (lastComparison != 0) { return lastComparison; } @@ -1373,7 +1371,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEndTime()).compareTo(other.isSetEndTime()); + lastComparison = java.lang.Boolean.compare(isSetEndTime(), other.isSetEndTime()); if (lastComparison != 0) { return lastComparison; } @@ -1383,7 +1381,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHadoopJobId()).compareTo(other.isSetHadoopJobId()); + lastComparison = java.lang.Boolean.compare(isSetHadoopJobId(), other.isSetHadoopJobId()); if (lastComparison != 0) { return lastComparison; } @@ -1393,7 +1391,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } @@ -1403,7 +1401,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetErrorMessage()).compareTo(other.isSetErrorMessage()); + lastComparison = java.lang.Boolean.compare(isSetErrorMessage(), other.isSetErrorMessage()); if (lastComparison != 0) { return lastComparison; } @@ -1413,7 +1411,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnqueueTime()).compareTo(other.isSetEnqueueTime()); + lastComparison = java.lang.Boolean.compare(isSetEnqueueTime(), other.isSetEnqueueTime()); if (lastComparison != 0) { return lastComparison; } @@ -1423,7 +1421,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWorkerVersion()).compareTo(other.isSetWorkerVersion()); + lastComparison = java.lang.Boolean.compare(isSetWorkerVersion(), other.isSetWorkerVersion()); if (lastComparison != 0) { return lastComparison; } @@ -1433,7 +1431,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetInitiatorId()).compareTo(other.isSetInitiatorId()); + lastComparison = java.lang.Boolean.compare(isSetInitiatorId(), other.isSetInitiatorId()); if (lastComparison != 0) { return lastComparison; } @@ -1443,7 +1441,7 @@ public int compareTo(ShowCompactResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetInitiatorVersion()).compareTo(other.isSetInitiatorVersion()); + lastComparison = java.lang.Boolean.compare(isSetInitiatorVersion(), other.isSetInitiatorVersion()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksRequest.java index b09621f8a4cd..d4a716763c21 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ShowLocksRequest 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("ShowLocksRequest"); @@ -364,8 +364,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ShowLocksRequest) return this.equals((ShowLocksRequest)that); return false; @@ -460,7 +458,7 @@ public int compareTo(ShowLocksRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -470,7 +468,7 @@ public int compareTo(ShowLocksRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTablename()).compareTo(other.isSetTablename()); + lastComparison = java.lang.Boolean.compare(isSetTablename(), other.isSetTablename()); if (lastComparison != 0) { return lastComparison; } @@ -480,7 +478,7 @@ public int compareTo(ShowLocksRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartname()).compareTo(other.isSetPartname()); + lastComparison = java.lang.Boolean.compare(isSetPartname(), other.isSetPartname()); if (lastComparison != 0) { return lastComparison; } @@ -490,7 +488,7 @@ public int compareTo(ShowLocksRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsExtended()).compareTo(other.isSetIsExtended()); + lastComparison = java.lang.Boolean.compare(isSetIsExtended(), other.isSetIsExtended()); if (lastComparison != 0) { return lastComparison; } @@ -500,7 +498,7 @@ public int compareTo(ShowLocksRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxnid()).compareTo(other.isSetTxnid()); + lastComparison = java.lang.Boolean.compare(isSetTxnid(), other.isSetTxnid()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksResponse.java index 9245ee32762b..578f621bde2c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ShowLocksResponse 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("ShowLocksResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ShowLocksResponse) return this.equals((ShowLocksResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(ShowLocksResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetLocks()).compareTo(other.isSetLocks()); + lastComparison = java.lang.Boolean.compare(isSetLocks(), other.isSetLocks()); if (lastComparison != 0) { return lastComparison; } @@ -407,7 +405,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, ShowLocksResponse st java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list801 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list801 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.locks = new java.util.ArrayList(_list801.size); @org.apache.thrift.annotation.Nullable ShowLocksResponseElement _elem802; for (int _i803 = 0; _i803 < _list801.size; ++_i803) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksResponseElement.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksResponseElement.java index 4713ceef0c10..2d2052be89b8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksResponseElement.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksResponseElement.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ShowLocksResponseElement 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("ShowLocksResponseElement"); @@ -925,8 +925,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof ShowLocksResponseElement) return this.equals((ShowLocksResponseElement)that); return false; @@ -1160,7 +1158,7 @@ public int compareTo(ShowLocksResponseElement other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetLockid()).compareTo(other.isSetLockid()); + lastComparison = java.lang.Boolean.compare(isSetLockid(), other.isSetLockid()); if (lastComparison != 0) { return lastComparison; } @@ -1170,7 +1168,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -1180,7 +1178,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTablename()).compareTo(other.isSetTablename()); + lastComparison = java.lang.Boolean.compare(isSetTablename(), other.isSetTablename()); if (lastComparison != 0) { return lastComparison; } @@ -1190,7 +1188,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartname()).compareTo(other.isSetPartname()); + lastComparison = java.lang.Boolean.compare(isSetPartname(), other.isSetPartname()); if (lastComparison != 0) { return lastComparison; } @@ -1200,7 +1198,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetState()).compareTo(other.isSetState()); + lastComparison = java.lang.Boolean.compare(isSetState(), other.isSetState()); if (lastComparison != 0) { return lastComparison; } @@ -1210,7 +1208,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -1220,7 +1218,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxnid()).compareTo(other.isSetTxnid()); + lastComparison = java.lang.Boolean.compare(isSetTxnid(), other.isSetTxnid()); if (lastComparison != 0) { return lastComparison; } @@ -1230,7 +1228,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLastheartbeat()).compareTo(other.isSetLastheartbeat()); + lastComparison = java.lang.Boolean.compare(isSetLastheartbeat(), other.isSetLastheartbeat()); if (lastComparison != 0) { return lastComparison; } @@ -1240,7 +1238,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAcquiredat()).compareTo(other.isSetAcquiredat()); + lastComparison = java.lang.Boolean.compare(isSetAcquiredat(), other.isSetAcquiredat()); if (lastComparison != 0) { return lastComparison; } @@ -1250,7 +1248,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUser()).compareTo(other.isSetUser()); + lastComparison = java.lang.Boolean.compare(isSetUser(), other.isSetUser()); if (lastComparison != 0) { return lastComparison; } @@ -1260,7 +1258,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHostname()).compareTo(other.isSetHostname()); + lastComparison = java.lang.Boolean.compare(isSetHostname(), other.isSetHostname()); if (lastComparison != 0) { return lastComparison; } @@ -1270,7 +1268,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHeartbeatCount()).compareTo(other.isSetHeartbeatCount()); + lastComparison = java.lang.Boolean.compare(isSetHeartbeatCount(), other.isSetHeartbeatCount()); if (lastComparison != 0) { return lastComparison; } @@ -1280,7 +1278,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAgentInfo()).compareTo(other.isSetAgentInfo()); + lastComparison = java.lang.Boolean.compare(isSetAgentInfo(), other.isSetAgentInfo()); if (lastComparison != 0) { return lastComparison; } @@ -1290,7 +1288,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBlockedByExtId()).compareTo(other.isSetBlockedByExtId()); + lastComparison = java.lang.Boolean.compare(isSetBlockedByExtId(), other.isSetBlockedByExtId()); if (lastComparison != 0) { return lastComparison; } @@ -1300,7 +1298,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBlockedByIntId()).compareTo(other.isSetBlockedByIntId()); + lastComparison = java.lang.Boolean.compare(isSetBlockedByIntId(), other.isSetBlockedByIntId()); if (lastComparison != 0) { return lastComparison; } @@ -1310,7 +1308,7 @@ public int compareTo(ShowLocksResponseElement other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLockIdInternal()).compareTo(other.isSetLockIdInternal()); + lastComparison = java.lang.Boolean.compare(isSetLockIdInternal(), other.isSetLockIdInternal()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SkewedInfo.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SkewedInfo.java index 4abd75960aa4..abdf2c261d28 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SkewedInfo.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SkewedInfo.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SkewedInfo 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("SkewedInfo"); @@ -345,8 +345,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof SkewedInfo) return this.equals((SkewedInfo)that); return false; @@ -415,7 +413,7 @@ public int compareTo(SkewedInfo other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSkewedColNames()).compareTo(other.isSetSkewedColNames()); + lastComparison = java.lang.Boolean.compare(isSetSkewedColNames(), other.isSetSkewedColNames()); if (lastComparison != 0) { return lastComparison; } @@ -425,7 +423,7 @@ public int compareTo(SkewedInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSkewedColValues()).compareTo(other.isSetSkewedColValues()); + lastComparison = java.lang.Boolean.compare(isSetSkewedColValues(), other.isSetSkewedColValues()); if (lastComparison != 0) { return lastComparison; } @@ -435,7 +433,7 @@ public int compareTo(SkewedInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSkewedColValueLocationMaps()).compareTo(other.isSetSkewedColValueLocationMaps()); + lastComparison = java.lang.Boolean.compare(isSetSkewedColValueLocationMaps(), other.isSetSkewedColValueLocationMaps()); if (lastComparison != 0) { return lastComparison; } @@ -748,7 +746,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SkewedInfo struct) t java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list204 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list204 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.skewedColNames = new java.util.ArrayList(_list204.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem205; for (int _i206 = 0; _i206 < _list204.size; ++_i206) @@ -761,13 +759,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SkewedInfo struct) t } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list207 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.LIST, iprot.readI32()); + org.apache.thrift.protocol.TList _list207 = iprot.readListBegin(org.apache.thrift.protocol.TType.LIST); struct.skewedColValues = new java.util.ArrayList>(_list207.size); @org.apache.thrift.annotation.Nullable java.util.List _elem208; for (int _i209 = 0; _i209 < _list207.size; ++_i209) { { - org.apache.thrift.protocol.TList _list210 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list210 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); _elem208 = new java.util.ArrayList(_list210.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem211; for (int _i212 = 0; _i212 < _list210.size; ++_i212) @@ -783,14 +781,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SkewedInfo struct) t } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map213 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.LIST, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map213 = iprot.readMapBegin(org.apache.thrift.protocol.TType.LIST, org.apache.thrift.protocol.TType.STRING); struct.skewedColValueLocationMaps = new java.util.HashMap,java.lang.String>(2*_map213.size); @org.apache.thrift.annotation.Nullable java.util.List _key214; @org.apache.thrift.annotation.Nullable java.lang.String _val215; for (int _i216 = 0; _i216 < _map213.size; ++_i216) { { - org.apache.thrift.protocol.TList _list217 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list217 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); _key214 = new java.util.ArrayList(_list217.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem218; for (int _i219 = 0; _i219 < _list217.size; ++_i219) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StorageDescriptor.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StorageDescriptor.java index 5114c31f32a5..70c11adacbfc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StorageDescriptor.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StorageDescriptor.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class StorageDescriptor 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("StorageDescriptor"); @@ -797,8 +797,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof StorageDescriptor) return this.equals((StorageDescriptor)that); return false; @@ -980,7 +978,7 @@ public int compareTo(StorageDescriptor other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCols()).compareTo(other.isSetCols()); + lastComparison = java.lang.Boolean.compare(isSetCols(), other.isSetCols()); if (lastComparison != 0) { return lastComparison; } @@ -990,7 +988,7 @@ public int compareTo(StorageDescriptor other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLocation()).compareTo(other.isSetLocation()); + lastComparison = java.lang.Boolean.compare(isSetLocation(), other.isSetLocation()); if (lastComparison != 0) { return lastComparison; } @@ -1000,7 +998,7 @@ public int compareTo(StorageDescriptor other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetInputFormat()).compareTo(other.isSetInputFormat()); + lastComparison = java.lang.Boolean.compare(isSetInputFormat(), other.isSetInputFormat()); if (lastComparison != 0) { return lastComparison; } @@ -1010,7 +1008,7 @@ public int compareTo(StorageDescriptor other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOutputFormat()).compareTo(other.isSetOutputFormat()); + lastComparison = java.lang.Boolean.compare(isSetOutputFormat(), other.isSetOutputFormat()); if (lastComparison != 0) { return lastComparison; } @@ -1020,7 +1018,7 @@ public int compareTo(StorageDescriptor other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCompressed()).compareTo(other.isSetCompressed()); + lastComparison = java.lang.Boolean.compare(isSetCompressed(), other.isSetCompressed()); if (lastComparison != 0) { return lastComparison; } @@ -1030,7 +1028,7 @@ public int compareTo(StorageDescriptor other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumBuckets()).compareTo(other.isSetNumBuckets()); + lastComparison = java.lang.Boolean.compare(isSetNumBuckets(), other.isSetNumBuckets()); if (lastComparison != 0) { return lastComparison; } @@ -1040,7 +1038,7 @@ public int compareTo(StorageDescriptor other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSerdeInfo()).compareTo(other.isSetSerdeInfo()); + lastComparison = java.lang.Boolean.compare(isSetSerdeInfo(), other.isSetSerdeInfo()); if (lastComparison != 0) { return lastComparison; } @@ -1050,7 +1048,7 @@ public int compareTo(StorageDescriptor other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBucketCols()).compareTo(other.isSetBucketCols()); + lastComparison = java.lang.Boolean.compare(isSetBucketCols(), other.isSetBucketCols()); if (lastComparison != 0) { return lastComparison; } @@ -1060,7 +1058,7 @@ public int compareTo(StorageDescriptor other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSortCols()).compareTo(other.isSetSortCols()); + lastComparison = java.lang.Boolean.compare(isSetSortCols(), other.isSetSortCols()); if (lastComparison != 0) { return lastComparison; } @@ -1070,7 +1068,7 @@ public int compareTo(StorageDescriptor other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParameters()).compareTo(other.isSetParameters()); + lastComparison = java.lang.Boolean.compare(isSetParameters(), other.isSetParameters()); if (lastComparison != 0) { return lastComparison; } @@ -1080,7 +1078,7 @@ public int compareTo(StorageDescriptor other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSkewedInfo()).compareTo(other.isSetSkewedInfo()); + lastComparison = java.lang.Boolean.compare(isSetSkewedInfo(), other.isSetSkewedInfo()); if (lastComparison != 0) { return lastComparison; } @@ -1090,7 +1088,7 @@ public int compareTo(StorageDescriptor other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStoredAsSubDirectories()).compareTo(other.isSetStoredAsSubDirectories()); + lastComparison = java.lang.Boolean.compare(isSetStoredAsSubDirectories(), other.isSetStoredAsSubDirectories()); if (lastComparison != 0) { return lastComparison; } @@ -1625,7 +1623,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, StorageDescriptor st java.util.BitSet incoming = iprot.readBitSet(12); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list241 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list241 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.cols = new java.util.ArrayList(_list241.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem242; for (int _i243 = 0; _i243 < _list241.size; ++_i243) @@ -1664,7 +1662,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, StorageDescriptor st } if (incoming.get(7)) { { - org.apache.thrift.protocol.TList _list244 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list244 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.bucketCols = new java.util.ArrayList(_list244.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem245; for (int _i246 = 0; _i246 < _list244.size; ++_i246) @@ -1677,7 +1675,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, StorageDescriptor st } if (incoming.get(8)) { { - org.apache.thrift.protocol.TList _list247 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list247 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.sortCols = new java.util.ArrayList(_list247.size); @org.apache.thrift.annotation.Nullable Order _elem248; for (int _i249 = 0; _i249 < _list247.size; ++_i249) @@ -1691,7 +1689,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, StorageDescriptor st } if (incoming.get(9)) { { - org.apache.thrift.protocol.TMap _map250 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map250 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.parameters = new java.util.HashMap(2*_map250.size); @org.apache.thrift.annotation.Nullable java.lang.String _key251; @org.apache.thrift.annotation.Nullable java.lang.String _val252; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StoredProcedure.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StoredProcedure.java index e630ab5c9aae..c292e5a36ee3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StoredProcedure.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StoredProcedure.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class StoredProcedure 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("StoredProcedure"); @@ -378,8 +378,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof StoredProcedure) return this.equals((StoredProcedure)that); return false; @@ -474,7 +472,7 @@ public int compareTo(StoredProcedure other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -484,7 +482,7 @@ public int compareTo(StoredProcedure other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -494,7 +492,7 @@ public int compareTo(StoredProcedure other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -504,7 +502,7 @@ public int compareTo(StoredProcedure other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerName()).compareTo(other.isSetOwnerName()); + lastComparison = java.lang.Boolean.compare(isSetOwnerName(), other.isSetOwnerName()); if (lastComparison != 0) { return lastComparison; } @@ -514,7 +512,7 @@ public int compareTo(StoredProcedure other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSource()).compareTo(other.isSetSource()); + lastComparison = java.lang.Boolean.compare(isSetSource(), other.isSetSource()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StoredProcedureRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StoredProcedureRequest.java index 3745a58643b0..1b07637c79bc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StoredProcedureRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StoredProcedureRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class StoredProcedureRequest 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("StoredProcedureRequest"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof StoredProcedureRequest) return this.equals((StoredProcedureRequest)that); return false; @@ -348,7 +346,7 @@ public int compareTo(StoredProcedureRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(StoredProcedureRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(StoredProcedureRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetProcName()).compareTo(other.isSetProcName()); + lastComparison = java.lang.Boolean.compare(isSetProcName(), other.isSetProcName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StringColumnStatsData.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StringColumnStatsData.java index b53022f4d989..961b568d55fe 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StringColumnStatsData.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/StringColumnStatsData.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class StringColumnStatsData 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("StringColumnStatsData"); @@ -387,8 +387,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof StringColumnStatsData) return this.equals((StringColumnStatsData)that); return false; @@ -475,7 +473,7 @@ public int compareTo(StringColumnStatsData other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMaxColLen()).compareTo(other.isSetMaxColLen()); + lastComparison = java.lang.Boolean.compare(isSetMaxColLen(), other.isSetMaxColLen()); if (lastComparison != 0) { return lastComparison; } @@ -485,7 +483,7 @@ public int compareTo(StringColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAvgColLen()).compareTo(other.isSetAvgColLen()); + lastComparison = java.lang.Boolean.compare(isSetAvgColLen(), other.isSetAvgColLen()); if (lastComparison != 0) { return lastComparison; } @@ -495,7 +493,7 @@ public int compareTo(StringColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumNulls()).compareTo(other.isSetNumNulls()); + lastComparison = java.lang.Boolean.compare(isSetNumNulls(), other.isSetNumNulls()); if (lastComparison != 0) { return lastComparison; } @@ -505,7 +503,7 @@ public int compareTo(StringColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumDVs()).compareTo(other.isSetNumDVs()); + lastComparison = java.lang.Boolean.compare(isSetNumDVs(), other.isSetNumDVs()); if (lastComparison != 0) { return lastComparison; } @@ -515,7 +513,7 @@ public int compareTo(StringColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBitVectors()).compareTo(other.isSetBitVectors()); + lastComparison = java.lang.Boolean.compare(isSetBitVectors(), other.isSetBitVectors()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Table.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Table.java index 4386256673ed..7ad781414f01 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Table.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Table.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Table 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("Table"); @@ -1430,8 +1430,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Table) return this.equals((Table)that); return false; @@ -1780,7 +1778,7 @@ public int compareTo(Table other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -1790,7 +1788,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -1800,7 +1798,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwner()).compareTo(other.isSetOwner()); + lastComparison = java.lang.Boolean.compare(isSetOwner(), other.isSetOwner()); if (lastComparison != 0) { return lastComparison; } @@ -1810,7 +1808,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreateTime()).compareTo(other.isSetCreateTime()); + lastComparison = java.lang.Boolean.compare(isSetCreateTime(), other.isSetCreateTime()); if (lastComparison != 0) { return lastComparison; } @@ -1820,7 +1818,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLastAccessTime()).compareTo(other.isSetLastAccessTime()); + lastComparison = java.lang.Boolean.compare(isSetLastAccessTime(), other.isSetLastAccessTime()); if (lastComparison != 0) { return lastComparison; } @@ -1830,7 +1828,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRetention()).compareTo(other.isSetRetention()); + lastComparison = java.lang.Boolean.compare(isSetRetention(), other.isSetRetention()); if (lastComparison != 0) { return lastComparison; } @@ -1840,7 +1838,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSd()).compareTo(other.isSetSd()); + lastComparison = java.lang.Boolean.compare(isSetSd(), other.isSetSd()); if (lastComparison != 0) { return lastComparison; } @@ -1850,7 +1848,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionKeys()).compareTo(other.isSetPartitionKeys()); + lastComparison = java.lang.Boolean.compare(isSetPartitionKeys(), other.isSetPartitionKeys()); if (lastComparison != 0) { return lastComparison; } @@ -1860,7 +1858,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetParameters()).compareTo(other.isSetParameters()); + lastComparison = java.lang.Boolean.compare(isSetParameters(), other.isSetParameters()); if (lastComparison != 0) { return lastComparison; } @@ -1870,7 +1868,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetViewOriginalText()).compareTo(other.isSetViewOriginalText()); + lastComparison = java.lang.Boolean.compare(isSetViewOriginalText(), other.isSetViewOriginalText()); if (lastComparison != 0) { return lastComparison; } @@ -1880,7 +1878,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetViewExpandedText()).compareTo(other.isSetViewExpandedText()); + lastComparison = java.lang.Boolean.compare(isSetViewExpandedText(), other.isSetViewExpandedText()); if (lastComparison != 0) { return lastComparison; } @@ -1890,7 +1888,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableType()).compareTo(other.isSetTableType()); + lastComparison = java.lang.Boolean.compare(isSetTableType(), other.isSetTableType()); if (lastComparison != 0) { return lastComparison; } @@ -1900,7 +1898,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrivileges()).compareTo(other.isSetPrivileges()); + lastComparison = java.lang.Boolean.compare(isSetPrivileges(), other.isSetPrivileges()); if (lastComparison != 0) { return lastComparison; } @@ -1910,7 +1908,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTemporary()).compareTo(other.isSetTemporary()); + lastComparison = java.lang.Boolean.compare(isSetTemporary(), other.isSetTemporary()); if (lastComparison != 0) { return lastComparison; } @@ -1920,7 +1918,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRewriteEnabled()).compareTo(other.isSetRewriteEnabled()); + lastComparison = java.lang.Boolean.compare(isSetRewriteEnabled(), other.isSetRewriteEnabled()); if (lastComparison != 0) { return lastComparison; } @@ -1930,7 +1928,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreationMetadata()).compareTo(other.isSetCreationMetadata()); + lastComparison = java.lang.Boolean.compare(isSetCreationMetadata(), other.isSetCreationMetadata()); if (lastComparison != 0) { return lastComparison; } @@ -1940,7 +1938,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -1950,7 +1948,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOwnerType()).compareTo(other.isSetOwnerType()); + lastComparison = java.lang.Boolean.compare(isSetOwnerType(), other.isSetOwnerType()); if (lastComparison != 0) { return lastComparison; } @@ -1960,7 +1958,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteId()).compareTo(other.isSetWriteId()); + lastComparison = java.lang.Boolean.compare(isSetWriteId(), other.isSetWriteId()); if (lastComparison != 0) { return lastComparison; } @@ -1970,7 +1968,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsStatsCompliant()).compareTo(other.isSetIsStatsCompliant()); + lastComparison = java.lang.Boolean.compare(isSetIsStatsCompliant(), other.isSetIsStatsCompliant()); if (lastComparison != 0) { return lastComparison; } @@ -1980,7 +1978,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColStats()).compareTo(other.isSetColStats()); + lastComparison = java.lang.Boolean.compare(isSetColStats(), other.isSetColStats()); if (lastComparison != 0) { return lastComparison; } @@ -1990,7 +1988,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAccessType()).compareTo(other.isSetAccessType()); + lastComparison = java.lang.Boolean.compare(isSetAccessType(), other.isSetAccessType()); if (lastComparison != 0) { return lastComparison; } @@ -2000,7 +1998,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRequiredReadCapabilities()).compareTo(other.isSetRequiredReadCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetRequiredReadCapabilities(), other.isSetRequiredReadCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -2010,7 +2008,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRequiredWriteCapabilities()).compareTo(other.isSetRequiredWriteCapabilities()); + lastComparison = java.lang.Boolean.compare(isSetRequiredWriteCapabilities(), other.isSetRequiredWriteCapabilities()); if (lastComparison != 0) { return lastComparison; } @@ -2020,7 +2018,7 @@ public int compareTo(Table other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } @@ -2950,7 +2948,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Table struct) throws } if (incoming.get(7)) { { - org.apache.thrift.protocol.TList _list291 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list291 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.partitionKeys = new java.util.ArrayList(_list291.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem292; for (int _i293 = 0; _i293 < _list291.size; ++_i293) @@ -2964,7 +2962,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Table struct) throws } if (incoming.get(8)) { { - org.apache.thrift.protocol.TMap _map294 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map294 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.parameters = new java.util.HashMap(2*_map294.size); @org.apache.thrift.annotation.Nullable java.lang.String _key295; @org.apache.thrift.annotation.Nullable java.lang.String _val296; @@ -3034,7 +3032,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Table struct) throws } if (incoming.get(22)) { { - org.apache.thrift.protocol.TList _list298 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list298 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.requiredReadCapabilities = new java.util.ArrayList(_list298.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem299; for (int _i300 = 0; _i300 < _list298.size; ++_i300) @@ -3047,7 +3045,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Table struct) throws } if (incoming.get(23)) { { - org.apache.thrift.protocol.TList _list301 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list301 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.requiredWriteCapabilities = new java.util.ArrayList(_list301.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem302; for (int _i303 = 0; _i303 < _list301.size; ++_i303) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableMeta.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableMeta.java index 046bb2a07f61..134e94b78c37 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableMeta.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableMeta.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class TableMeta 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("TableMeta"); @@ -375,8 +375,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TableMeta) return this.equals((TableMeta)that); return false; @@ -471,7 +469,7 @@ public int compareTo(TableMeta other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -481,7 +479,7 @@ public int compareTo(TableMeta other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -491,7 +489,7 @@ public int compareTo(TableMeta other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableType()).compareTo(other.isSetTableType()); + lastComparison = java.lang.Boolean.compare(isSetTableType(), other.isSetTableType()); if (lastComparison != 0) { return lastComparison; } @@ -501,7 +499,7 @@ public int compareTo(TableMeta other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetComments()).compareTo(other.isSetComments()); + lastComparison = java.lang.Boolean.compare(isSetComments(), other.isSetComments()); if (lastComparison != 0) { return lastComparison; } @@ -511,7 +509,7 @@ public int compareTo(TableMeta other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableStatsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableStatsRequest.java index d2ee7359fc6e..792043ebdee6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableStatsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableStatsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class TableStatsRequest 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("TableStatsRequest"); @@ -493,8 +493,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TableStatsRequest) return this.equals((TableStatsRequest)that); return false; @@ -615,7 +613,7 @@ public int compareTo(TableStatsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -625,7 +623,7 @@ public int compareTo(TableStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTblName()).compareTo(other.isSetTblName()); + lastComparison = java.lang.Boolean.compare(isSetTblName(), other.isSetTblName()); if (lastComparison != 0) { return lastComparison; } @@ -635,7 +633,7 @@ public int compareTo(TableStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetColNames()).compareTo(other.isSetColNames()); + lastComparison = java.lang.Boolean.compare(isSetColNames(), other.isSetColNames()); if (lastComparison != 0) { return lastComparison; } @@ -645,7 +643,7 @@ public int compareTo(TableStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -655,7 +653,7 @@ public int compareTo(TableStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -665,7 +663,7 @@ public int compareTo(TableStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEngine()).compareTo(other.isSetEngine()); + lastComparison = java.lang.Boolean.compare(isSetEngine(), other.isSetEngine()); if (lastComparison != 0) { return lastComparison; } @@ -675,7 +673,7 @@ public int compareTo(TableStatsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } @@ -1006,7 +1004,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, TableStatsRequest st struct.tblName = iprot.readString(); struct.setTblNameIsSet(true); { - org.apache.thrift.protocol.TList _list543 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list543 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.colNames = new java.util.ArrayList(_list543.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem544; for (int _i545 = 0; _i545 < _list543.size; ++_i545) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableStatsResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableStatsResult.java index d7f8d1732d06..a1db8e30df6d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableStatsResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableStatsResult.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class TableStatsResult 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("TableStatsResult"); @@ -248,8 +248,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TableStatsResult) return this.equals((TableStatsResult)that); return false; @@ -305,7 +303,7 @@ public int compareTo(TableStatsResult other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTableStats()).compareTo(other.isSetTableStats()); + lastComparison = java.lang.Boolean.compare(isSetTableStats(), other.isSetTableStats()); if (lastComparison != 0) { return lastComparison; } @@ -315,7 +313,7 @@ public int compareTo(TableStatsResult other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsStatsCompliant()).compareTo(other.isSetIsStatsCompliant()); + lastComparison = java.lang.Boolean.compare(isSetIsStatsCompliant(), other.isSetIsStatsCompliant()); if (lastComparison != 0) { return lastComparison; } @@ -503,7 +501,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, TableStatsResult st public void read(org.apache.thrift.protocol.TProtocol prot, TableStatsResult struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list517 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list517 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.tableStats = new java.util.ArrayList(_list517.size); @org.apache.thrift.annotation.Nullable ColumnStatisticsObj _elem518; for (int _i519 = 0; _i519 < _list517.size; ++_i519) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableValidWriteIds.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableValidWriteIds.java index b5c756ea09a6..0874f48293c1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableValidWriteIds.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TableValidWriteIds.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class TableValidWriteIds 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("TableValidWriteIds"); @@ -406,8 +406,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TableValidWriteIds) return this.equals((TableValidWriteIds)that); return false; @@ -500,7 +498,7 @@ public int compareTo(TableValidWriteIds other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFullTableName()).compareTo(other.isSetFullTableName()); + lastComparison = java.lang.Boolean.compare(isSetFullTableName(), other.isSetFullTableName()); if (lastComparison != 0) { return lastComparison; } @@ -510,7 +508,7 @@ public int compareTo(TableValidWriteIds other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteIdHighWaterMark()).compareTo(other.isSetWriteIdHighWaterMark()); + lastComparison = java.lang.Boolean.compare(isSetWriteIdHighWaterMark(), other.isSetWriteIdHighWaterMark()); if (lastComparison != 0) { return lastComparison; } @@ -520,7 +518,7 @@ public int compareTo(TableValidWriteIds other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetInvalidWriteIds()).compareTo(other.isSetInvalidWriteIds()); + lastComparison = java.lang.Boolean.compare(isSetInvalidWriteIds(), other.isSetInvalidWriteIds()); if (lastComparison != 0) { return lastComparison; } @@ -530,7 +528,7 @@ public int compareTo(TableValidWriteIds other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMinOpenWriteId()).compareTo(other.isSetMinOpenWriteId()); + lastComparison = java.lang.Boolean.compare(isSetMinOpenWriteId(), other.isSetMinOpenWriteId()); if (lastComparison != 0) { return lastComparison; } @@ -540,7 +538,7 @@ public int compareTo(TableValidWriteIds other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAbortedBits()).compareTo(other.isSetAbortedBits()); + lastComparison = java.lang.Boolean.compare(isSetAbortedBits(), other.isSetAbortedBits()); if (lastComparison != 0) { return lastComparison; } @@ -803,7 +801,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, TableValidWriteIds s struct.writeIdHighWaterMark = iprot.readI64(); struct.setWriteIdHighWaterMarkIsSet(true); { - org.apache.thrift.protocol.TList _list753 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + org.apache.thrift.protocol.TList _list753 = iprot.readListBegin(org.apache.thrift.protocol.TType.I64); struct.invalidWriteIds = new java.util.ArrayList(_list753.size); long _elem754; for (int _i755 = 0; _i755 < _list753.size; ++_i755) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java index b97bc8f54341..0ae89d372c3d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class ThriftHiveMetastore { /** @@ -43849,8 +43849,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof getMetaConf_args) return this.equals((getMetaConf_args)that); return false; @@ -43893,7 +43891,7 @@ public int compareTo(getMetaConf_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetKey()).compareTo(other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } @@ -44263,8 +44261,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof getMetaConf_result) return this.equals((getMetaConf_result)that); return false; @@ -44320,7 +44316,7 @@ public int compareTo(getMetaConf_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -44330,7 +44326,7 @@ public int compareTo(getMetaConf_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -44733,8 +44729,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof setMetaConf_args) return this.equals((setMetaConf_args)that); return false; @@ -44790,7 +44784,7 @@ public int compareTo(setMetaConf_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetKey()).compareTo(other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } @@ -44800,7 +44794,7 @@ public int compareTo(setMetaConf_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValue()).compareTo(other.isSetValue()); + lastComparison = java.lang.Boolean.compare(isSetValue(), other.isSetValue()); if (lastComparison != 0) { return lastComparison; } @@ -45151,8 +45145,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof setMetaConf_result) return this.equals((setMetaConf_result)that); return false; @@ -45195,7 +45187,7 @@ public int compareTo(setMetaConf_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -45517,8 +45509,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_catalog_args) return this.equals((create_catalog_args)that); return false; @@ -45561,7 +45551,7 @@ public int compareTo(create_catalog_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatalog()).compareTo(other.isSetCatalog()); + lastComparison = java.lang.Boolean.compare(isSetCatalog(), other.isSetCatalog()); if (lastComparison != 0) { return lastComparison; } @@ -45986,8 +45976,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_catalog_result) return this.equals((create_catalog_result)that); return false; @@ -46056,7 +46044,7 @@ public int compareTo(create_catalog_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -46066,7 +46054,7 @@ public int compareTo(create_catalog_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -46076,7 +46064,7 @@ public int compareTo(create_catalog_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -46464,8 +46452,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_catalog_args) return this.equals((alter_catalog_args)that); return false; @@ -46508,7 +46494,7 @@ public int compareTo(alter_catalog_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -46933,8 +46919,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_catalog_result) return this.equals((alter_catalog_result)that); return false; @@ -47003,7 +46987,7 @@ public int compareTo(alter_catalog_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -47013,7 +46997,7 @@ public int compareTo(alter_catalog_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -47023,7 +47007,7 @@ public int compareTo(alter_catalog_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -47411,8 +47395,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_catalog_args) return this.equals((get_catalog_args)that); return false; @@ -47455,7 +47437,7 @@ public int compareTo(get_catalog_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -47880,8 +47862,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_catalog_result) return this.equals((get_catalog_result)that); return false; @@ -47950,7 +47930,7 @@ public int compareTo(get_catalog_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -47960,7 +47940,7 @@ public int compareTo(get_catalog_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -47970,7 +47950,7 @@ public int compareTo(get_catalog_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -48305,8 +48285,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_catalogs_args) return this.equals((get_catalogs_args)that); return false; @@ -48663,8 +48641,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_catalogs_result) return this.equals((get_catalogs_result)that); return false; @@ -48720,7 +48696,7 @@ public int compareTo(get_catalogs_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -48730,7 +48706,7 @@ public int compareTo(get_catalogs_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -49088,8 +49064,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_catalog_args) return this.equals((drop_catalog_args)that); return false; @@ -49132,7 +49106,7 @@ public int compareTo(drop_catalog_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -49557,8 +49531,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_catalog_result) return this.equals((drop_catalog_result)that); return false; @@ -49627,7 +49599,7 @@ public int compareTo(drop_catalog_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -49637,7 +49609,7 @@ public int compareTo(drop_catalog_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -49647,7 +49619,7 @@ public int compareTo(drop_catalog_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -50035,8 +50007,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_database_args) return this.equals((create_database_args)that); return false; @@ -50079,7 +50049,7 @@ public int compareTo(create_database_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDatabase()).compareTo(other.isSetDatabase()); + lastComparison = java.lang.Boolean.compare(isSetDatabase(), other.isSetDatabase()); if (lastComparison != 0) { return lastComparison; } @@ -50504,8 +50474,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_database_result) return this.equals((create_database_result)that); return false; @@ -50574,7 +50542,7 @@ public int compareTo(create_database_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -50584,7 +50552,7 @@ public int compareTo(create_database_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -50594,7 +50562,7 @@ public int compareTo(create_database_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -50982,8 +50950,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_database_args) return this.equals((get_database_args)that); return false; @@ -51026,7 +50992,7 @@ public int compareTo(get_database_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -51446,8 +51412,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_database_result) return this.equals((get_database_result)that); return false; @@ -51516,7 +51480,7 @@ public int compareTo(get_database_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -51526,7 +51490,7 @@ public int compareTo(get_database_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -51536,7 +51500,7 @@ public int compareTo(get_database_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -51927,8 +51891,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_database_req_args) return this.equals((get_database_req_args)that); return false; @@ -51971,7 +51933,7 @@ public int compareTo(get_database_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -52396,8 +52358,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_database_req_result) return this.equals((get_database_req_result)that); return false; @@ -52466,7 +52426,7 @@ public int compareTo(get_database_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -52476,7 +52436,7 @@ public int compareTo(get_database_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -52486,7 +52446,7 @@ public int compareTo(get_database_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -52977,8 +52937,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_database_args) return this.equals((drop_database_args)that); return false; @@ -53043,7 +53001,7 @@ public int compareTo(drop_database_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -53053,7 +53011,7 @@ public int compareTo(drop_database_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDeleteData()).compareTo(other.isSetDeleteData()); + lastComparison = java.lang.Boolean.compare(isSetDeleteData(), other.isSetDeleteData()); if (lastComparison != 0) { return lastComparison; } @@ -53063,7 +53021,7 @@ public int compareTo(drop_database_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCascade()).compareTo(other.isSetCascade()); + lastComparison = java.lang.Boolean.compare(isSetCascade(), other.isSetCascade()); if (lastComparison != 0) { return lastComparison; } @@ -53535,8 +53493,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_database_result) return this.equals((drop_database_result)that); return false; @@ -53605,7 +53561,7 @@ public int compareTo(drop_database_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -53615,7 +53571,7 @@ public int compareTo(drop_database_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -53625,7 +53581,7 @@ public int compareTo(drop_database_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -54013,8 +53969,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_databases_args) return this.equals((get_databases_args)that); return false; @@ -54057,7 +54011,7 @@ public int compareTo(get_databases_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPattern()).compareTo(other.isSetPattern()); + lastComparison = java.lang.Boolean.compare(isSetPattern(), other.isSetPattern()); if (lastComparison != 0) { return lastComparison; } @@ -54445,8 +54399,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_databases_result) return this.equals((get_databases_result)that); return false; @@ -54502,7 +54454,7 @@ public int compareTo(get_databases_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -54512,7 +54464,7 @@ public int compareTo(get_databases_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -54703,7 +54655,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_databases_result java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1385 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1385 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1385.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1386; for (int _i1387 = 0; _i1387 < _list1385.size; ++_i1387) @@ -54841,8 +54793,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_databases_args) return this.equals((get_all_databases_args)that); return false; @@ -55217,8 +55167,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_databases_result) return this.equals((get_all_databases_result)that); return false; @@ -55274,7 +55222,7 @@ public int compareTo(get_all_databases_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -55284,7 +55232,7 @@ public int compareTo(get_all_databases_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -55475,7 +55423,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_all_databases_re java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1393 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1393 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1393.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1394; for (int _i1395 = 0; _i1395 < _list1393.size; ++_i1395) @@ -55719,8 +55667,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_database_args) return this.equals((alter_database_args)that); return false; @@ -55776,7 +55722,7 @@ public int compareTo(alter_database_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -55786,7 +55732,7 @@ public int compareTo(alter_database_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDb()).compareTo(other.isSetDb()); + lastComparison = java.lang.Boolean.compare(isSetDb(), other.isSetDb()); if (lastComparison != 0) { return lastComparison; } @@ -56192,8 +56138,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_database_result) return this.equals((alter_database_result)that); return false; @@ -56249,7 +56193,7 @@ public int compareTo(alter_database_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -56259,7 +56203,7 @@ public int compareTo(alter_database_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -56614,8 +56558,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_dataconnector_args) return this.equals((create_dataconnector_args)that); return false; @@ -56658,7 +56600,7 @@ public int compareTo(create_dataconnector_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetConnector()).compareTo(other.isSetConnector()); + lastComparison = java.lang.Boolean.compare(isSetConnector(), other.isSetConnector()); if (lastComparison != 0) { return lastComparison; } @@ -57083,8 +57025,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_dataconnector_result) return this.equals((create_dataconnector_result)that); return false; @@ -57153,7 +57093,7 @@ public int compareTo(create_dataconnector_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -57163,7 +57103,7 @@ public int compareTo(create_dataconnector_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -57173,7 +57113,7 @@ public int compareTo(create_dataconnector_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -57561,8 +57501,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_dataconnector_req_args) return this.equals((get_dataconnector_req_args)that); return false; @@ -57605,7 +57543,7 @@ public int compareTo(get_dataconnector_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -58030,8 +57968,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_dataconnector_req_result) return this.equals((get_dataconnector_req_result)that); return false; @@ -58100,7 +58036,7 @@ public int compareTo(get_dataconnector_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -58110,7 +58046,7 @@ public int compareTo(get_dataconnector_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -58120,7 +58056,7 @@ public int compareTo(get_dataconnector_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -58611,8 +58547,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_dataconnector_args) return this.equals((drop_dataconnector_args)that); return false; @@ -58677,7 +58611,7 @@ public int compareTo(drop_dataconnector_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -58687,7 +58621,7 @@ public int compareTo(drop_dataconnector_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIfNotExists()).compareTo(other.isSetIfNotExists()); + lastComparison = java.lang.Boolean.compare(isSetIfNotExists(), other.isSetIfNotExists()); if (lastComparison != 0) { return lastComparison; } @@ -58697,7 +58631,7 @@ public int compareTo(drop_dataconnector_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCheckReferences()).compareTo(other.isSetCheckReferences()); + lastComparison = java.lang.Boolean.compare(isSetCheckReferences(), other.isSetCheckReferences()); if (lastComparison != 0) { return lastComparison; } @@ -59169,8 +59103,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_dataconnector_result) return this.equals((drop_dataconnector_result)that); return false; @@ -59239,7 +59171,7 @@ public int compareTo(drop_dataconnector_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -59249,7 +59181,7 @@ public int compareTo(drop_dataconnector_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -59259,7 +59191,7 @@ public int compareTo(drop_dataconnector_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -59591,8 +59523,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_dataconnectors_args) return this.equals((get_dataconnectors_args)that); return false; @@ -59967,8 +59897,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_dataconnectors_result) return this.equals((get_dataconnectors_result)that); return false; @@ -60024,7 +59952,7 @@ public int compareTo(get_dataconnectors_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -60034,7 +59962,7 @@ public int compareTo(get_dataconnectors_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -60225,7 +60153,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_dataconnectors_r java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1401 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1401 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1401.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1402; for (int _i1403 = 0; _i1403 < _list1401.size; ++_i1403) @@ -60469,8 +60397,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_dataconnector_args) return this.equals((alter_dataconnector_args)that); return false; @@ -60526,7 +60452,7 @@ public int compareTo(alter_dataconnector_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -60536,7 +60462,7 @@ public int compareTo(alter_dataconnector_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetConnector()).compareTo(other.isSetConnector()); + lastComparison = java.lang.Boolean.compare(isSetConnector(), other.isSetConnector()); if (lastComparison != 0) { return lastComparison; } @@ -60942,8 +60868,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_dataconnector_result) return this.equals((alter_dataconnector_result)that); return false; @@ -60999,7 +60923,7 @@ public int compareTo(alter_dataconnector_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -61009,7 +60933,7 @@ public int compareTo(alter_dataconnector_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -61364,8 +61288,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_type_args) return this.equals((get_type_args)that); return false; @@ -61408,7 +61330,7 @@ public int compareTo(get_type_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -61828,8 +61750,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_type_result) return this.equals((get_type_result)that); return false; @@ -61898,7 +61818,7 @@ public int compareTo(get_type_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -61908,7 +61828,7 @@ public int compareTo(get_type_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -61918,7 +61838,7 @@ public int compareTo(get_type_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -62309,8 +62229,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_type_args) return this.equals((create_type_args)that); return false; @@ -62353,7 +62271,7 @@ public int compareTo(create_type_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -62829,8 +62747,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_type_result) return this.equals((create_type_result)that); return false; @@ -62910,7 +62826,7 @@ public int compareTo(create_type_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -62920,7 +62836,7 @@ public int compareTo(create_type_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -62930,7 +62846,7 @@ public int compareTo(create_type_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -62940,7 +62856,7 @@ public int compareTo(create_type_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -63357,8 +63273,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_type_args) return this.equals((drop_type_args)that); return false; @@ -63401,7 +63315,7 @@ public int compareTo(drop_type_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetType()).compareTo(other.isSetType()); + lastComparison = java.lang.Boolean.compare(isSetType(), other.isSetType()); if (lastComparison != 0) { return lastComparison; } @@ -63822,8 +63736,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_type_result) return this.equals((drop_type_result)that); return false; @@ -63890,7 +63802,7 @@ public int compareTo(drop_type_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -63900,7 +63812,7 @@ public int compareTo(drop_type_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -63910,7 +63822,7 @@ public int compareTo(drop_type_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -64294,8 +64206,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_type_all_args) return this.equals((get_type_all_args)that); return false; @@ -64338,7 +64248,7 @@ public int compareTo(get_type_all_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -64733,8 +64643,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_type_all_result) return this.equals((get_type_all_result)that); return false; @@ -64790,7 +64698,7 @@ public int compareTo(get_type_all_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -64800,7 +64708,7 @@ public int compareTo(get_type_all_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -64996,7 +64904,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_type_all_result java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1410 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TMap _map1410 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.HashMap(2*_map1410.size); @org.apache.thrift.annotation.Nullable java.lang.String _key1411; @org.apache.thrift.annotation.Nullable Type _val1412; @@ -65243,8 +65151,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_fields_args) return this.equals((get_fields_args)that); return false; @@ -65300,7 +65206,7 @@ public int compareTo(get_fields_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -65310,7 +65216,7 @@ public int compareTo(get_fields_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_name()).compareTo(other.isSetTable_name()); + lastComparison = java.lang.Boolean.compare(isSetTable_name(), other.isSetTable_name()); if (lastComparison != 0) { return lastComparison; } @@ -65832,8 +65738,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_fields_result) return this.equals((get_fields_result)that); return false; @@ -65915,7 +65819,7 @@ public int compareTo(get_fields_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -65925,7 +65829,7 @@ public int compareTo(get_fields_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -65935,7 +65839,7 @@ public int compareTo(get_fields_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -65945,7 +65849,7 @@ public int compareTo(get_fields_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -66193,7 +66097,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_fields_result st java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1419 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1419 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1419.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem1420; for (int _i1421 = 0; _i1421 < _list1419.size; ++_i1421) @@ -66498,8 +66402,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_fields_with_environment_context_args) return this.equals((get_fields_with_environment_context_args)that); return false; @@ -66568,7 +66470,7 @@ public int compareTo(get_fields_with_environment_context_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -66578,7 +66480,7 @@ public int compareTo(get_fields_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_name()).compareTo(other.isSetTable_name()); + lastComparison = java.lang.Boolean.compare(isSetTable_name(), other.isSetTable_name()); if (lastComparison != 0) { return lastComparison; } @@ -66588,7 +66490,7 @@ public int compareTo(get_fields_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironment_context()).compareTo(other.isSetEnvironment_context()); + lastComparison = java.lang.Boolean.compare(isSetEnvironment_context(), other.isSetEnvironment_context()); if (lastComparison != 0) { return lastComparison; } @@ -67146,8 +67048,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_fields_with_environment_context_result) return this.equals((get_fields_with_environment_context_result)that); return false; @@ -67229,7 +67129,7 @@ public int compareTo(get_fields_with_environment_context_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -67239,7 +67139,7 @@ public int compareTo(get_fields_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -67249,7 +67149,7 @@ public int compareTo(get_fields_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -67259,7 +67159,7 @@ public int compareTo(get_fields_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -67507,7 +67407,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_fields_with_envi java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1427 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1427 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1427.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem1428; for (int _i1429 = 0; _i1429 < _list1427.size; ++_i1429) @@ -67712,8 +67612,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_fields_req_args) return this.equals((get_fields_req_args)that); return false; @@ -67756,7 +67654,7 @@ public int compareTo(get_fields_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -68231,8 +68129,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_fields_req_result) return this.equals((get_fields_req_result)that); return false; @@ -68314,7 +68210,7 @@ public int compareTo(get_fields_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -68324,7 +68220,7 @@ public int compareTo(get_fields_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -68334,7 +68230,7 @@ public int compareTo(get_fields_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -68344,7 +68240,7 @@ public int compareTo(get_fields_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -68818,8 +68714,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schema_args) return this.equals((get_schema_args)that); return false; @@ -68875,7 +68769,7 @@ public int compareTo(get_schema_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -68885,7 +68779,7 @@ public int compareTo(get_schema_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_name()).compareTo(other.isSetTable_name()); + lastComparison = java.lang.Boolean.compare(isSetTable_name(), other.isSetTable_name()); if (lastComparison != 0) { return lastComparison; } @@ -69407,8 +69301,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schema_result) return this.equals((get_schema_result)that); return false; @@ -69490,7 +69382,7 @@ public int compareTo(get_schema_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -69500,7 +69392,7 @@ public int compareTo(get_schema_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -69510,7 +69402,7 @@ public int compareTo(get_schema_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -69520,7 +69412,7 @@ public int compareTo(get_schema_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -69768,7 +69660,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_schema_result st java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1435 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1435 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1435.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem1436; for (int _i1437 = 0; _i1437 < _list1435.size; ++_i1437) @@ -70073,8 +69965,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schema_with_environment_context_args) return this.equals((get_schema_with_environment_context_args)that); return false; @@ -70143,7 +70033,7 @@ public int compareTo(get_schema_with_environment_context_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -70153,7 +70043,7 @@ public int compareTo(get_schema_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable_name()).compareTo(other.isSetTable_name()); + lastComparison = java.lang.Boolean.compare(isSetTable_name(), other.isSetTable_name()); if (lastComparison != 0) { return lastComparison; } @@ -70163,7 +70053,7 @@ public int compareTo(get_schema_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironment_context()).compareTo(other.isSetEnvironment_context()); + lastComparison = java.lang.Boolean.compare(isSetEnvironment_context(), other.isSetEnvironment_context()); if (lastComparison != 0) { return lastComparison; } @@ -70721,8 +70611,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schema_with_environment_context_result) return this.equals((get_schema_with_environment_context_result)that); return false; @@ -70804,7 +70692,7 @@ public int compareTo(get_schema_with_environment_context_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -70814,7 +70702,7 @@ public int compareTo(get_schema_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -70824,7 +70712,7 @@ public int compareTo(get_schema_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -70834,7 +70722,7 @@ public int compareTo(get_schema_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -71082,7 +70970,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_schema_with_envi java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1443 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1443 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1443.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem1444; for (int _i1445 = 0; _i1445 < _list1443.size; ++_i1445) @@ -71287,8 +71175,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schema_req_args) return this.equals((get_schema_req_args)that); return false; @@ -71331,7 +71217,7 @@ public int compareTo(get_schema_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -71806,8 +71692,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schema_req_result) return this.equals((get_schema_req_result)that); return false; @@ -71889,7 +71773,7 @@ public int compareTo(get_schema_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -71899,7 +71783,7 @@ public int compareTo(get_schema_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -71909,7 +71793,7 @@ public int compareTo(get_schema_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -71919,7 +71803,7 @@ public int compareTo(get_schema_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -72343,8 +72227,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_table_args) return this.equals((create_table_args)that); return false; @@ -72387,7 +72269,7 @@ public int compareTo(create_table_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTbl()).compareTo(other.isSetTbl()); + lastComparison = java.lang.Boolean.compare(isSetTbl(), other.isSetTbl()); if (lastComparison != 0) { return lastComparison; } @@ -72862,8 +72744,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_table_result) return this.equals((create_table_result)that); return false; @@ -72945,7 +72825,7 @@ public int compareTo(create_table_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -72955,7 +72835,7 @@ public int compareTo(create_table_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -72965,7 +72845,7 @@ public int compareTo(create_table_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -72975,7 +72855,7 @@ public int compareTo(create_table_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -73446,8 +73326,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_table_with_environment_context_args) return this.equals((create_table_with_environment_context_args)that); return false; @@ -73503,7 +73381,7 @@ public int compareTo(create_table_with_environment_context_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTbl()).compareTo(other.isSetTbl()); + lastComparison = java.lang.Boolean.compare(isSetTbl(), other.isSetTbl()); if (lastComparison != 0) { return lastComparison; } @@ -73513,7 +73391,7 @@ public int compareTo(create_table_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironment_context()).compareTo(other.isSetEnvironment_context()); + lastComparison = java.lang.Boolean.compare(isSetEnvironment_context(), other.isSetEnvironment_context()); if (lastComparison != 0) { return lastComparison; } @@ -74024,8 +73902,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_table_with_environment_context_result) return this.equals((create_table_with_environment_context_result)that); return false; @@ -74107,7 +73983,7 @@ public int compareTo(create_table_with_environment_context_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -74117,7 +73993,7 @@ public int compareTo(create_table_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -74127,7 +74003,7 @@ public int compareTo(create_table_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -74137,7 +74013,7 @@ public int compareTo(create_table_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -74984,8 +74860,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_table_with_constraints_args) return this.equals((create_table_with_constraints_args)that); return false; @@ -75106,7 +74980,7 @@ public int compareTo(create_table_with_constraints_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTbl()).compareTo(other.isSetTbl()); + lastComparison = java.lang.Boolean.compare(isSetTbl(), other.isSetTbl()); if (lastComparison != 0) { return lastComparison; } @@ -75116,7 +74990,7 @@ public int compareTo(create_table_with_constraints_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrimaryKeys()).compareTo(other.isSetPrimaryKeys()); + lastComparison = java.lang.Boolean.compare(isSetPrimaryKeys(), other.isSetPrimaryKeys()); if (lastComparison != 0) { return lastComparison; } @@ -75126,7 +75000,7 @@ public int compareTo(create_table_with_constraints_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetForeignKeys()).compareTo(other.isSetForeignKeys()); + lastComparison = java.lang.Boolean.compare(isSetForeignKeys(), other.isSetForeignKeys()); if (lastComparison != 0) { return lastComparison; } @@ -75136,7 +75010,7 @@ public int compareTo(create_table_with_constraints_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUniqueConstraints()).compareTo(other.isSetUniqueConstraints()); + lastComparison = java.lang.Boolean.compare(isSetUniqueConstraints(), other.isSetUniqueConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -75146,7 +75020,7 @@ public int compareTo(create_table_with_constraints_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNotNullConstraints()).compareTo(other.isSetNotNullConstraints()); + lastComparison = java.lang.Boolean.compare(isSetNotNullConstraints(), other.isSetNotNullConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -75156,7 +75030,7 @@ public int compareTo(create_table_with_constraints_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDefaultConstraints()).compareTo(other.isSetDefaultConstraints()); + lastComparison = java.lang.Boolean.compare(isSetDefaultConstraints(), other.isSetDefaultConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -75166,7 +75040,7 @@ public int compareTo(create_table_with_constraints_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCheckConstraints()).compareTo(other.isSetCheckConstraints()); + lastComparison = java.lang.Boolean.compare(isSetCheckConstraints(), other.isSetCheckConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -75621,7 +75495,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, create_table_with_co } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1476 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1476 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.primaryKeys = new java.util.ArrayList(_list1476.size); @org.apache.thrift.annotation.Nullable SQLPrimaryKey _elem1477; for (int _i1478 = 0; _i1478 < _list1476.size; ++_i1478) @@ -75635,7 +75509,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, create_table_with_co } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1479 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1479 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.foreignKeys = new java.util.ArrayList(_list1479.size); @org.apache.thrift.annotation.Nullable SQLForeignKey _elem1480; for (int _i1481 = 0; _i1481 < _list1479.size; ++_i1481) @@ -75649,7 +75523,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, create_table_with_co } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list1482 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1482 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.uniqueConstraints = new java.util.ArrayList(_list1482.size); @org.apache.thrift.annotation.Nullable SQLUniqueConstraint _elem1483; for (int _i1484 = 0; _i1484 < _list1482.size; ++_i1484) @@ -75663,7 +75537,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, create_table_with_co } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1485 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1485 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.notNullConstraints = new java.util.ArrayList(_list1485.size); @org.apache.thrift.annotation.Nullable SQLNotNullConstraint _elem1486; for (int _i1487 = 0; _i1487 < _list1485.size; ++_i1487) @@ -75677,7 +75551,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, create_table_with_co } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list1488 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1488 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.defaultConstraints = new java.util.ArrayList(_list1488.size); @org.apache.thrift.annotation.Nullable SQLDefaultConstraint _elem1489; for (int _i1490 = 0; _i1490 < _list1488.size; ++_i1490) @@ -75691,7 +75565,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, create_table_with_co } if (incoming.get(6)) { { - org.apache.thrift.protocol.TList _list1491 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1491 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.checkConstraints = new java.util.ArrayList(_list1491.size); @org.apache.thrift.annotation.Nullable SQLCheckConstraint _elem1492; for (int _i1493 = 0; _i1493 < _list1491.size; ++_i1493) @@ -76031,8 +75905,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_table_with_constraints_result) return this.equals((create_table_with_constraints_result)that); return false; @@ -76114,7 +75986,7 @@ public int compareTo(create_table_with_constraints_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -76124,7 +75996,7 @@ public int compareTo(create_table_with_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -76134,7 +76006,7 @@ public int compareTo(create_table_with_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -76144,7 +76016,7 @@ public int compareTo(create_table_with_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -76565,8 +76437,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_table_req_args) return this.equals((create_table_req_args)that); return false; @@ -76609,7 +76479,7 @@ public int compareTo(create_table_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -77084,8 +76954,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_table_req_result) return this.equals((create_table_req_result)that); return false; @@ -77167,7 +77035,7 @@ public int compareTo(create_table_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -77177,7 +77045,7 @@ public int compareTo(create_table_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -77187,7 +77055,7 @@ public int compareTo(create_table_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -77197,7 +77065,7 @@ public int compareTo(create_table_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -77618,8 +77486,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_constraint_args) return this.equals((drop_constraint_args)that); return false; @@ -77662,7 +77528,7 @@ public int compareTo(drop_constraint_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -78037,8 +77903,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_constraint_result) return this.equals((drop_constraint_result)that); return false; @@ -78094,7 +77958,7 @@ public int compareTo(drop_constraint_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -78104,7 +77968,7 @@ public int compareTo(drop_constraint_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -78459,8 +78323,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_primary_key_args) return this.equals((add_primary_key_args)that); return false; @@ -78503,7 +78365,7 @@ public int compareTo(add_primary_key_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -78878,8 +78740,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_primary_key_result) return this.equals((add_primary_key_result)that); return false; @@ -78935,7 +78795,7 @@ public int compareTo(add_primary_key_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -78945,7 +78805,7 @@ public int compareTo(add_primary_key_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -79300,8 +79160,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_foreign_key_args) return this.equals((add_foreign_key_args)that); return false; @@ -79344,7 +79202,7 @@ public int compareTo(add_foreign_key_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -79719,8 +79577,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_foreign_key_result) return this.equals((add_foreign_key_result)that); return false; @@ -79776,7 +79632,7 @@ public int compareTo(add_foreign_key_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -79786,7 +79642,7 @@ public int compareTo(add_foreign_key_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -80141,8 +79997,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_unique_constraint_args) return this.equals((add_unique_constraint_args)that); return false; @@ -80185,7 +80039,7 @@ public int compareTo(add_unique_constraint_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -80560,8 +80414,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_unique_constraint_result) return this.equals((add_unique_constraint_result)that); return false; @@ -80617,7 +80469,7 @@ public int compareTo(add_unique_constraint_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -80627,7 +80479,7 @@ public int compareTo(add_unique_constraint_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -80982,8 +80834,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_not_null_constraint_args) return this.equals((add_not_null_constraint_args)that); return false; @@ -81026,7 +80876,7 @@ public int compareTo(add_not_null_constraint_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -81401,8 +81251,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_not_null_constraint_result) return this.equals((add_not_null_constraint_result)that); return false; @@ -81458,7 +81306,7 @@ public int compareTo(add_not_null_constraint_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -81468,7 +81316,7 @@ public int compareTo(add_not_null_constraint_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -81823,8 +81671,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_default_constraint_args) return this.equals((add_default_constraint_args)that); return false; @@ -81867,7 +81713,7 @@ public int compareTo(add_default_constraint_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -82242,8 +82088,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_default_constraint_result) return this.equals((add_default_constraint_result)that); return false; @@ -82299,7 +82143,7 @@ public int compareTo(add_default_constraint_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -82309,7 +82153,7 @@ public int compareTo(add_default_constraint_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -82664,8 +82508,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_check_constraint_args) return this.equals((add_check_constraint_args)that); return false; @@ -82708,7 +82550,7 @@ public int compareTo(add_check_constraint_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -83083,8 +82925,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_check_constraint_result) return this.equals((add_check_constraint_result)that); return false; @@ -83140,7 +82980,7 @@ public int compareTo(add_check_constraint_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -83150,7 +82990,7 @@ public int compareTo(add_check_constraint_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -83606,8 +83446,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_table_args) return this.equals((drop_table_args)that); return false; @@ -83674,7 +83512,7 @@ public int compareTo(drop_table_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -83684,7 +83522,7 @@ public int compareTo(drop_table_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -83694,7 +83532,7 @@ public int compareTo(drop_table_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDeleteData()).compareTo(other.isSetDeleteData()); + lastComparison = java.lang.Boolean.compare(isSetDeleteData(), other.isSetDeleteData()); if (lastComparison != 0) { return lastComparison; } @@ -84122,8 +83960,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_table_result) return this.equals((drop_table_result)that); return false; @@ -84179,7 +84015,7 @@ public int compareTo(drop_table_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -84189,7 +84025,7 @@ public int compareTo(drop_table_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -84695,8 +84531,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_table_with_environment_context_args) return this.equals((drop_table_with_environment_context_args)that); return false; @@ -84776,7 +84610,7 @@ public int compareTo(drop_table_with_environment_context_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -84786,7 +84620,7 @@ public int compareTo(drop_table_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -84796,7 +84630,7 @@ public int compareTo(drop_table_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDeleteData()).compareTo(other.isSetDeleteData()); + lastComparison = java.lang.Boolean.compare(isSetDeleteData(), other.isSetDeleteData()); if (lastComparison != 0) { return lastComparison; } @@ -84806,7 +84640,7 @@ public int compareTo(drop_table_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironment_context()).compareTo(other.isSetEnvironment_context()); + lastComparison = java.lang.Boolean.compare(isSetEnvironment_context(), other.isSetEnvironment_context()); if (lastComparison != 0) { return lastComparison; } @@ -85270,8 +85104,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_table_with_environment_context_result) return this.equals((drop_table_with_environment_context_result)that); return false; @@ -85327,7 +85159,7 @@ public int compareTo(drop_table_with_environment_context_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -85337,7 +85169,7 @@ public int compareTo(drop_table_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -85810,8 +85642,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof truncate_table_args) return this.equals((truncate_table_args)that); return false; @@ -85880,7 +85710,7 @@ public int compareTo(truncate_table_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -85890,7 +85720,7 @@ public int compareTo(truncate_table_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -85900,7 +85730,7 @@ public int compareTo(truncate_table_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartNames()).compareTo(other.isSetPartNames()); + lastComparison = java.lang.Boolean.compare(isSetPartNames(), other.isSetPartNames()); if (lastComparison != 0) { return lastComparison; } @@ -86125,7 +85955,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, truncate_table_args } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1499 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1499 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partNames = new java.util.ArrayList(_list1499.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1500; for (int _i1501 = 0; _i1501 < _list1499.size; ++_i1501) @@ -86314,8 +86144,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof truncate_table_result) return this.equals((truncate_table_result)that); return false; @@ -86358,7 +86186,7 @@ public int compareTo(truncate_table_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -86680,8 +86508,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof truncate_table_req_args) return this.equals((truncate_table_req_args)that); return false; @@ -86724,7 +86550,7 @@ public int compareTo(truncate_table_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -87099,8 +86925,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof truncate_table_req_result) return this.equals((truncate_table_req_result)that); return false; @@ -87156,7 +86980,7 @@ public int compareTo(truncate_table_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -87166,7 +86990,7 @@ public int compareTo(truncate_table_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -87574,8 +87398,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_tables_args) return this.equals((get_tables_args)that); return false; @@ -87631,7 +87453,7 @@ public int compareTo(get_tables_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -87641,7 +87463,7 @@ public int compareTo(get_tables_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPattern()).compareTo(other.isSetPattern()); + lastComparison = java.lang.Boolean.compare(isSetPattern(), other.isSetPattern()); if (lastComparison != 0) { return lastComparison; } @@ -88060,8 +87882,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_tables_result) return this.equals((get_tables_result)that); return false; @@ -88117,7 +87937,7 @@ public int compareTo(get_tables_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -88127,7 +87947,7 @@ public int compareTo(get_tables_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -88318,7 +88138,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_tables_result st java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1507 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1507 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1507.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1508; for (int _i1509 = 0; _i1509 < _list1507.size; ++_i1509) @@ -88612,8 +88432,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_tables_by_type_args) return this.equals((get_tables_by_type_args)that); return false; @@ -88682,7 +88500,7 @@ public int compareTo(get_tables_by_type_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -88692,7 +88510,7 @@ public int compareTo(get_tables_by_type_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPattern()).compareTo(other.isSetPattern()); + lastComparison = java.lang.Boolean.compare(isSetPattern(), other.isSetPattern()); if (lastComparison != 0) { return lastComparison; } @@ -88702,7 +88520,7 @@ public int compareTo(get_tables_by_type_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableType()).compareTo(other.isSetTableType()); + lastComparison = java.lang.Boolean.compare(isSetTableType(), other.isSetTableType()); if (lastComparison != 0) { return lastComparison; } @@ -89152,8 +88970,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_tables_by_type_result) return this.equals((get_tables_by_type_result)that); return false; @@ -89209,7 +89025,7 @@ public int compareTo(get_tables_by_type_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -89219,7 +89035,7 @@ public int compareTo(get_tables_by_type_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -89410,7 +89226,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_tables_by_type_r java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1515 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1515 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1515.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1516; for (int _i1517 = 0; _i1517 < _list1515.size; ++_i1517) @@ -89548,8 +89364,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_materialized_view_objects_for_rewriting_args) return this.equals((get_all_materialized_view_objects_for_rewriting_args)that); return false; @@ -89927,8 +89741,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_materialized_view_objects_for_rewriting_result) return this.equals((get_all_materialized_view_objects_for_rewriting_result)that); return false; @@ -89984,7 +89796,7 @@ public int compareTo(get_all_materialized_view_objects_for_rewriting_result othe int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -89994,7 +89806,7 @@ public int compareTo(get_all_materialized_view_objects_for_rewriting_result othe return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -90186,7 +89998,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_all_materialized java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1523 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1523 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList
(_list1523.size); @org.apache.thrift.annotation.Nullable Table _elem1524; for (int _i1525 = 0; _i1525 < _list1523.size; ++_i1525) @@ -90381,8 +90193,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_materialized_views_for_rewriting_args) return this.equals((get_materialized_views_for_rewriting_args)that); return false; @@ -90425,7 +90235,7 @@ public int compareTo(get_materialized_views_for_rewriting_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -90813,8 +90623,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_materialized_views_for_rewriting_result) return this.equals((get_materialized_views_for_rewriting_result)that); return false; @@ -90870,7 +90678,7 @@ public int compareTo(get_materialized_views_for_rewriting_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -90880,7 +90688,7 @@ public int compareTo(get_materialized_views_for_rewriting_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -91071,7 +90879,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_materialized_vie java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1531 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1531 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1531.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1532; for (int _i1533 = 0; _i1533 < _list1531.size; ++_i1533) @@ -91383,8 +91191,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_meta_args) return this.equals((get_table_meta_args)that); return false; @@ -91453,7 +91259,7 @@ public int compareTo(get_table_meta_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_patterns()).compareTo(other.isSetDb_patterns()); + lastComparison = java.lang.Boolean.compare(isSetDb_patterns(), other.isSetDb_patterns()); if (lastComparison != 0) { return lastComparison; } @@ -91463,7 +91269,7 @@ public int compareTo(get_table_meta_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_patterns()).compareTo(other.isSetTbl_patterns()); + lastComparison = java.lang.Boolean.compare(isSetTbl_patterns(), other.isSetTbl_patterns()); if (lastComparison != 0) { return lastComparison; } @@ -91473,7 +91279,7 @@ public int compareTo(get_table_meta_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_types()).compareTo(other.isSetTbl_types()); + lastComparison = java.lang.Boolean.compare(isSetTbl_types(), other.isSetTbl_types()); if (lastComparison != 0) { return lastComparison; } @@ -91698,7 +91504,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_table_meta_args } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1539 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1539 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.tbl_types = new java.util.ArrayList(_list1539.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1540; for (int _i1541 = 0; _i1541 < _list1539.size; ++_i1541) @@ -91958,8 +91764,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_meta_result) return this.equals((get_table_meta_result)that); return false; @@ -92015,7 +91819,7 @@ public int compareTo(get_table_meta_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -92025,7 +91829,7 @@ public int compareTo(get_table_meta_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -92217,7 +92021,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_table_meta_resul java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1547 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1547 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1547.size); @org.apache.thrift.annotation.Nullable TableMeta _elem1548; for (int _i1549 = 0; _i1549 < _list1547.size; ++_i1549) @@ -92412,8 +92216,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_tables_args) return this.equals((get_all_tables_args)that); return false; @@ -92456,7 +92258,7 @@ public int compareTo(get_all_tables_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -92844,8 +92646,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_tables_result) return this.equals((get_all_tables_result)that); return false; @@ -92901,7 +92701,7 @@ public int compareTo(get_all_tables_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -92911,7 +92711,7 @@ public int compareTo(get_all_tables_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -93102,7 +92902,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_all_tables_resul java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1555 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1555 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1555.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1556; for (int _i1557 = 0; _i1557 < _list1555.size; ++_i1557) @@ -93346,8 +93146,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_args) return this.equals((get_table_args)that); return false; @@ -93403,7 +93201,7 @@ public int compareTo(get_table_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -93413,7 +93211,7 @@ public int compareTo(get_table_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -93864,8 +93662,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_result) return this.equals((get_table_result)that); return false; @@ -93934,7 +93730,7 @@ public int compareTo(get_table_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -93944,7 +93740,7 @@ public int compareTo(get_table_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -93954,7 +93750,7 @@ public int compareTo(get_table_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -94413,8 +94209,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_objects_by_name_args) return this.equals((get_table_objects_by_name_args)that); return false; @@ -94470,7 +94264,7 @@ public int compareTo(get_table_objects_by_name_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -94480,7 +94274,7 @@ public int compareTo(get_table_objects_by_name_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_names()).compareTo(other.isSetTbl_names()); + lastComparison = java.lang.Boolean.compare(isSetTbl_names(), other.isSetTbl_names()); if (lastComparison != 0) { return lastComparison; } @@ -94674,7 +94468,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_table_objects_by } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1563 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1563 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.tbl_names = new java.util.ArrayList(_list1563.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1564; for (int _i1565 = 0; _i1565 < _list1563.size; ++_i1565) @@ -94884,8 +94678,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_objects_by_name_result) return this.equals((get_table_objects_by_name_result)that); return false; @@ -94928,7 +94720,7 @@ public int compareTo(get_table_objects_by_name_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -95092,7 +94884,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_table_objects_by java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1571 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1571 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList
(_list1571.size); @org.apache.thrift.annotation.Nullable Table _elem1572; for (int _i1573 = 0; _i1573 < _list1571.size; ++_i1573) @@ -95282,8 +95074,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_tables_ext_args) return this.equals((get_tables_ext_args)that); return false; @@ -95326,7 +95116,7 @@ public int compareTo(get_tables_ext_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -95722,8 +95512,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_tables_ext_result) return this.equals((get_tables_ext_result)that); return false; @@ -95779,7 +95567,7 @@ public int compareTo(get_tables_ext_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -95789,7 +95577,7 @@ public int compareTo(get_tables_ext_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -95981,7 +95769,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_tables_ext_resul java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1579 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1579 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1579.size); @org.apache.thrift.annotation.Nullable ExtendedTableInfo _elem1580; for (int _i1581 = 0; _i1581 < _list1579.size; ++_i1581) @@ -96176,8 +95964,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_req_args) return this.equals((get_table_req_args)that); return false; @@ -96220,7 +96006,7 @@ public int compareTo(get_table_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -96645,8 +96431,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_req_result) return this.equals((get_table_req_result)that); return false; @@ -96715,7 +96499,7 @@ public int compareTo(get_table_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -96725,7 +96509,7 @@ public int compareTo(get_table_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -96735,7 +96519,7 @@ public int compareTo(get_table_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -97126,8 +96910,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_objects_by_name_req_args) return this.equals((get_table_objects_by_name_req_args)that); return false; @@ -97170,7 +96952,7 @@ public int compareTo(get_table_objects_by_name_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -97645,8 +97427,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_objects_by_name_req_result) return this.equals((get_table_objects_by_name_req_result)that); return false; @@ -97728,7 +97508,7 @@ public int compareTo(get_table_objects_by_name_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -97738,7 +97518,7 @@ public int compareTo(get_table_objects_by_name_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -97748,7 +97528,7 @@ public int compareTo(get_table_objects_by_name_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -97758,7 +97538,7 @@ public int compareTo(get_table_objects_by_name_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -98232,8 +98012,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_materialization_invalidation_info_args) return this.equals((get_materialization_invalidation_info_args)that); return false; @@ -98289,7 +98067,7 @@ public int compareTo(get_materialization_invalidation_info_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCreation_metadata()).compareTo(other.isSetCreation_metadata()); + lastComparison = java.lang.Boolean.compare(isSetCreation_metadata(), other.isSetCreation_metadata()); if (lastComparison != 0) { return lastComparison; } @@ -98299,7 +98077,7 @@ public int compareTo(get_materialization_invalidation_info_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidTxnList()).compareTo(other.isSetValidTxnList()); + lastComparison = java.lang.Boolean.compare(isSetValidTxnList(), other.isSetValidTxnList()); if (lastComparison != 0) { return lastComparison; } @@ -98805,8 +98583,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_materialization_invalidation_info_result) return this.equals((get_materialization_invalidation_info_result)that); return false; @@ -98888,7 +98664,7 @@ public int compareTo(get_materialization_invalidation_info_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -98898,7 +98674,7 @@ public int compareTo(get_materialization_invalidation_info_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -98908,7 +98684,7 @@ public int compareTo(get_materialization_invalidation_info_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -98918,7 +98694,7 @@ public int compareTo(get_materialization_invalidation_info_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -99492,8 +99268,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_creation_metadata_args) return this.equals((update_creation_metadata_args)that); return false; @@ -99575,7 +99349,7 @@ public int compareTo(update_creation_metadata_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -99585,7 +99359,7 @@ public int compareTo(update_creation_metadata_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -99595,7 +99369,7 @@ public int compareTo(update_creation_metadata_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -99605,7 +99379,7 @@ public int compareTo(update_creation_metadata_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCreation_metadata()).compareTo(other.isSetCreation_metadata()); + lastComparison = java.lang.Boolean.compare(isSetCreation_metadata(), other.isSetCreation_metadata()); if (lastComparison != 0) { return lastComparison; } @@ -100123,8 +99897,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_creation_metadata_result) return this.equals((update_creation_metadata_result)that); return false; @@ -100193,7 +99965,7 @@ public int compareTo(update_creation_metadata_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -100203,7 +99975,7 @@ public int compareTo(update_creation_metadata_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -100213,7 +99985,7 @@ public int compareTo(update_creation_metadata_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -100704,8 +100476,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_names_by_filter_args) return this.equals((get_table_names_by_filter_args)that); return false; @@ -100772,7 +100542,7 @@ public int compareTo(get_table_names_by_filter_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -100782,7 +100552,7 @@ public int compareTo(get_table_names_by_filter_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFilter()).compareTo(other.isSetFilter()); + lastComparison = java.lang.Boolean.compare(isSetFilter(), other.isSetFilter()); if (lastComparison != 0) { return lastComparison; } @@ -100792,7 +100562,7 @@ public int compareTo(get_table_names_by_filter_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMax_tables()).compareTo(other.isSetMax_tables()); + lastComparison = java.lang.Boolean.compare(isSetMax_tables(), other.isSetMax_tables()); if (lastComparison != 0) { return lastComparison; } @@ -101338,8 +101108,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_names_by_filter_result) return this.equals((get_table_names_by_filter_result)that); return false; @@ -101421,7 +101189,7 @@ public int compareTo(get_table_names_by_filter_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -101431,7 +101199,7 @@ public int compareTo(get_table_names_by_filter_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -101441,7 +101209,7 @@ public int compareTo(get_table_names_by_filter_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -101451,7 +101219,7 @@ public int compareTo(get_table_names_by_filter_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -101698,7 +101466,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_table_names_by_f java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1587 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1587 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1587.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1588; for (int _i1589 = 0; _i1589 < _list1587.size; ++_i1589) @@ -102002,8 +101770,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_table_args) return this.equals((alter_table_args)that); return false; @@ -102072,7 +101838,7 @@ public int compareTo(alter_table_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -102082,7 +101848,7 @@ public int compareTo(alter_table_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -102092,7 +101858,7 @@ public int compareTo(alter_table_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNew_tbl()).compareTo(other.isSetNew_tbl()); + lastComparison = java.lang.Boolean.compare(isSetNew_tbl(), other.isSetNew_tbl()); if (lastComparison != 0) { return lastComparison; } @@ -102529,8 +102295,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_table_result) return this.equals((alter_table_result)that); return false; @@ -102586,7 +102350,7 @@ public int compareTo(alter_table_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -102596,7 +102360,7 @@ public int compareTo(alter_table_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -103101,8 +102865,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_table_with_environment_context_args) return this.equals((alter_table_with_environment_context_args)that); return false; @@ -103184,7 +102946,7 @@ public int compareTo(alter_table_with_environment_context_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -103194,7 +102956,7 @@ public int compareTo(alter_table_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -103204,7 +102966,7 @@ public int compareTo(alter_table_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNew_tbl()).compareTo(other.isSetNew_tbl()); + lastComparison = java.lang.Boolean.compare(isSetNew_tbl(), other.isSetNew_tbl()); if (lastComparison != 0) { return lastComparison; } @@ -103214,7 +102976,7 @@ public int compareTo(alter_table_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironment_context()).compareTo(other.isSetEnvironment_context()); + lastComparison = java.lang.Boolean.compare(isSetEnvironment_context(), other.isSetEnvironment_context()); if (lastComparison != 0) { return lastComparison; } @@ -103687,8 +103449,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_table_with_environment_context_result) return this.equals((alter_table_with_environment_context_result)that); return false; @@ -103744,7 +103504,7 @@ public int compareTo(alter_table_with_environment_context_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -103754,7 +103514,7 @@ public int compareTo(alter_table_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -104260,8 +104020,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_table_with_cascade_args) return this.equals((alter_table_with_cascade_args)that); return false; @@ -104341,7 +104099,7 @@ public int compareTo(alter_table_with_cascade_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbname()).compareTo(other.isSetDbname()); + lastComparison = java.lang.Boolean.compare(isSetDbname(), other.isSetDbname()); if (lastComparison != 0) { return lastComparison; } @@ -104351,7 +104109,7 @@ public int compareTo(alter_table_with_cascade_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -104361,7 +104119,7 @@ public int compareTo(alter_table_with_cascade_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNew_tbl()).compareTo(other.isSetNew_tbl()); + lastComparison = java.lang.Boolean.compare(isSetNew_tbl(), other.isSetNew_tbl()); if (lastComparison != 0) { return lastComparison; } @@ -104371,7 +104129,7 @@ public int compareTo(alter_table_with_cascade_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCascade()).compareTo(other.isSetCascade()); + lastComparison = java.lang.Boolean.compare(isSetCascade(), other.isSetCascade()); if (lastComparison != 0) { return lastComparison; } @@ -104835,8 +104593,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_table_with_cascade_result) return this.equals((alter_table_with_cascade_result)that); return false; @@ -104892,7 +104648,7 @@ public int compareTo(alter_table_with_cascade_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -104902,7 +104658,7 @@ public int compareTo(alter_table_with_cascade_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -105257,8 +105013,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_table_req_args) return this.equals((alter_table_req_args)that); return false; @@ -105301,7 +105055,7 @@ public int compareTo(alter_table_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -105726,8 +105480,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_table_req_result) return this.equals((alter_table_req_result)that); return false; @@ -105796,7 +105548,7 @@ public int compareTo(alter_table_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -105806,7 +105558,7 @@ public int compareTo(alter_table_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -105816,7 +105568,7 @@ public int compareTo(alter_table_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -106207,8 +105959,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_partition_args) return this.equals((add_partition_args)that); return false; @@ -106251,7 +106001,7 @@ public int compareTo(add_partition_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNew_part()).compareTo(other.isSetNew_part()); + lastComparison = java.lang.Boolean.compare(isSetNew_part(), other.isSetNew_part()); if (lastComparison != 0) { return lastComparison; } @@ -106726,8 +106476,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_partition_result) return this.equals((add_partition_result)that); return false; @@ -106809,7 +106557,7 @@ public int compareTo(add_partition_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -106819,7 +106567,7 @@ public int compareTo(add_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -106829,7 +106577,7 @@ public int compareTo(add_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -106839,7 +106587,7 @@ public int compareTo(add_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -107313,8 +107061,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_partition_with_environment_context_args) return this.equals((add_partition_with_environment_context_args)that); return false; @@ -107370,7 +107116,7 @@ public int compareTo(add_partition_with_environment_context_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNew_part()).compareTo(other.isSetNew_part()); + lastComparison = java.lang.Boolean.compare(isSetNew_part(), other.isSetNew_part()); if (lastComparison != 0) { return lastComparison; } @@ -107380,7 +107126,7 @@ public int compareTo(add_partition_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironment_context()).compareTo(other.isSetEnvironment_context()); + lastComparison = java.lang.Boolean.compare(isSetEnvironment_context(), other.isSetEnvironment_context()); if (lastComparison != 0) { return lastComparison; } @@ -107891,8 +107637,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_partition_with_environment_context_result) return this.equals((add_partition_with_environment_context_result)that); return false; @@ -107974,7 +107718,7 @@ public int compareTo(add_partition_with_environment_context_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -107984,7 +107728,7 @@ public int compareTo(add_partition_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -107994,7 +107738,7 @@ public int compareTo(add_partition_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -108004,7 +107748,7 @@ public int compareTo(add_partition_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -108449,8 +108193,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_partitions_args) return this.equals((add_partitions_args)that); return false; @@ -108493,7 +108235,7 @@ public int compareTo(add_partitions_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNew_parts()).compareTo(other.isSetNew_parts()); + lastComparison = java.lang.Boolean.compare(isSetNew_parts(), other.isSetNew_parts()); if (lastComparison != 0) { return lastComparison; } @@ -108657,7 +108399,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, add_partitions_args java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1595 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1595 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.new_parts = new java.util.ArrayList(_list1595.size); @org.apache.thrift.annotation.Nullable Partition _elem1596; for (int _i1597 = 0; _i1597 < _list1595.size; ++_i1597) @@ -108998,8 +108740,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_partitions_result) return this.equals((add_partitions_result)that); return false; @@ -109079,7 +108819,7 @@ public int compareTo(add_partitions_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -109089,7 +108829,7 @@ public int compareTo(add_partitions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -109099,7 +108839,7 @@ public int compareTo(add_partitions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -109109,7 +108849,7 @@ public int compareTo(add_partitions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -109547,8 +109287,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_partitions_pspec_args) return this.equals((add_partitions_pspec_args)that); return false; @@ -109591,7 +109329,7 @@ public int compareTo(add_partitions_pspec_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNew_parts()).compareTo(other.isSetNew_parts()); + lastComparison = java.lang.Boolean.compare(isSetNew_parts(), other.isSetNew_parts()); if (lastComparison != 0) { return lastComparison; } @@ -109755,7 +109493,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, add_partitions_pspec java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1603 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1603 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.new_parts = new java.util.ArrayList(_list1603.size); @org.apache.thrift.annotation.Nullable PartitionSpec _elem1604; for (int _i1605 = 0; _i1605 < _list1603.size; ++_i1605) @@ -110096,8 +109834,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_partitions_pspec_result) return this.equals((add_partitions_pspec_result)that); return false; @@ -110177,7 +109913,7 @@ public int compareTo(add_partitions_pspec_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -110187,7 +109923,7 @@ public int compareTo(add_partitions_pspec_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -110197,7 +109933,7 @@ public int compareTo(add_partitions_pspec_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -110207,7 +109943,7 @@ public int compareTo(add_partitions_pspec_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -110742,8 +110478,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof append_partition_args) return this.equals((append_partition_args)that); return false; @@ -110812,7 +110546,7 @@ public int compareTo(append_partition_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -110822,7 +110556,7 @@ public int compareTo(append_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -110832,7 +110566,7 @@ public int compareTo(append_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -111057,7 +110791,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, append_partition_arg } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1611 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1611 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.ArrayList(_list1611.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1612; for (int _i1613 = 0; _i1613 < _list1611.size; ++_i1613) @@ -111396,8 +111130,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof append_partition_result) return this.equals((append_partition_result)that); return false; @@ -111479,7 +111211,7 @@ public int compareTo(append_partition_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -111489,7 +111221,7 @@ public int compareTo(append_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -111499,7 +111231,7 @@ public int compareTo(append_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -111509,7 +111241,7 @@ public int compareTo(append_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -111933,8 +111665,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_partitions_req_args) return this.equals((add_partitions_req_args)that); return false; @@ -111977,7 +111707,7 @@ public int compareTo(add_partitions_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -112452,8 +112182,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_partitions_req_result) return this.equals((add_partitions_req_result)that); return false; @@ -112535,7 +112263,7 @@ public int compareTo(add_partitions_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -112545,7 +112273,7 @@ public int compareTo(add_partitions_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -112555,7 +112283,7 @@ public int compareTo(add_partitions_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -112565,7 +112293,7 @@ public int compareTo(add_partitions_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -113157,8 +112885,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof append_partition_with_environment_context_args) return this.equals((append_partition_with_environment_context_args)that); return false; @@ -113240,7 +112966,7 @@ public int compareTo(append_partition_with_environment_context_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -113250,7 +112976,7 @@ public int compareTo(append_partition_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -113260,7 +112986,7 @@ public int compareTo(append_partition_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -113270,7 +112996,7 @@ public int compareTo(append_partition_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironment_context()).compareTo(other.isSetEnvironment_context()); + lastComparison = java.lang.Boolean.compare(isSetEnvironment_context(), other.isSetEnvironment_context()); if (lastComparison != 0) { return lastComparison; } @@ -113526,7 +113252,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, append_partition_wit } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1619 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1619 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.ArrayList(_list1619.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1620; for (int _i1621 = 0; _i1621 < _list1619.size; ++_i1621) @@ -113870,8 +113596,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof append_partition_with_environment_context_result) return this.equals((append_partition_with_environment_context_result)that); return false; @@ -113953,7 +113677,7 @@ public int compareTo(append_partition_with_environment_context_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -113963,7 +113687,7 @@ public int compareTo(append_partition_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -113973,7 +113697,7 @@ public int compareTo(append_partition_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -113983,7 +113707,7 @@ public int compareTo(append_partition_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -114507,8 +114231,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof append_partition_by_name_args) return this.equals((append_partition_by_name_args)that); return false; @@ -114577,7 +114299,7 @@ public int compareTo(append_partition_by_name_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -114587,7 +114309,7 @@ public int compareTo(append_partition_by_name_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -114597,7 +114319,7 @@ public int compareTo(append_partition_by_name_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_name()).compareTo(other.isSetPart_name()); + lastComparison = java.lang.Boolean.compare(isSetPart_name(), other.isSetPart_name()); if (lastComparison != 0) { return lastComparison; } @@ -115129,8 +114851,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof append_partition_by_name_result) return this.equals((append_partition_by_name_result)that); return false; @@ -115212,7 +114932,7 @@ public int compareTo(append_partition_by_name_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -115222,7 +114942,7 @@ public int compareTo(append_partition_by_name_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -115232,7 +114952,7 @@ public int compareTo(append_partition_by_name_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -115242,7 +114962,7 @@ public int compareTo(append_partition_by_name_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -115816,8 +115536,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof append_partition_by_name_with_environment_context_args) return this.equals((append_partition_by_name_with_environment_context_args)that); return false; @@ -115899,7 +115617,7 @@ public int compareTo(append_partition_by_name_with_environment_context_args othe int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -115909,7 +115627,7 @@ public int compareTo(append_partition_by_name_with_environment_context_args othe return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -115919,7 +115637,7 @@ public int compareTo(append_partition_by_name_with_environment_context_args othe return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_name()).compareTo(other.isSetPart_name()); + lastComparison = java.lang.Boolean.compare(isSetPart_name(), other.isSetPart_name()); if (lastComparison != 0) { return lastComparison; } @@ -115929,7 +115647,7 @@ public int compareTo(append_partition_by_name_with_environment_context_args othe return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironment_context()).compareTo(other.isSetEnvironment_context()); + lastComparison = java.lang.Boolean.compare(isSetEnvironment_context(), other.isSetEnvironment_context()); if (lastComparison != 0) { return lastComparison; } @@ -116497,8 +116215,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof append_partition_by_name_with_environment_context_result) return this.equals((append_partition_by_name_with_environment_context_result)that); return false; @@ -116580,7 +116296,7 @@ public int compareTo(append_partition_by_name_with_environment_context_result ot int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -116590,7 +116306,7 @@ public int compareTo(append_partition_by_name_with_environment_context_result ot return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -116600,7 +116316,7 @@ public int compareTo(append_partition_by_name_with_environment_context_result ot return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -116610,7 +116326,7 @@ public int compareTo(append_partition_by_name_with_environment_context_result ot return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -117203,8 +116919,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_partition_args) return this.equals((drop_partition_args)that); return false; @@ -117284,7 +116998,7 @@ public int compareTo(drop_partition_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -117294,7 +117008,7 @@ public int compareTo(drop_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -117304,7 +117018,7 @@ public int compareTo(drop_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -117314,7 +117028,7 @@ public int compareTo(drop_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDeleteData()).compareTo(other.isSetDeleteData()); + lastComparison = java.lang.Boolean.compare(isSetDeleteData(), other.isSetDeleteData()); if (lastComparison != 0) { return lastComparison; } @@ -117562,7 +117276,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, drop_partition_args } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1627 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1627 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.ArrayList(_list1627.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1628; for (int _i1629 = 0; _i1629 < _list1627.size; ++_i1629) @@ -117856,8 +117570,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_partition_result) return this.equals((drop_partition_result)that); return false; @@ -117924,7 +117636,7 @@ public int compareTo(drop_partition_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -117934,7 +117646,7 @@ public int compareTo(drop_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -117944,7 +117656,7 @@ public int compareTo(drop_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -118547,8 +118259,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_partition_with_environment_context_args) return this.equals((drop_partition_with_environment_context_args)that); return false; @@ -118641,7 +118351,7 @@ public int compareTo(drop_partition_with_environment_context_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -118651,7 +118361,7 @@ public int compareTo(drop_partition_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -118661,7 +118371,7 @@ public int compareTo(drop_partition_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -118671,7 +118381,7 @@ public int compareTo(drop_partition_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDeleteData()).compareTo(other.isSetDeleteData()); + lastComparison = java.lang.Boolean.compare(isSetDeleteData(), other.isSetDeleteData()); if (lastComparison != 0) { return lastComparison; } @@ -118681,7 +118391,7 @@ public int compareTo(drop_partition_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironment_context()).compareTo(other.isSetEnvironment_context()); + lastComparison = java.lang.Boolean.compare(isSetEnvironment_context(), other.isSetEnvironment_context()); if (lastComparison != 0) { return lastComparison; } @@ -118960,7 +118670,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, drop_partition_with_ } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1635 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1635 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.ArrayList(_list1635.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1636; for (int _i1637 = 0; _i1637 < _list1635.size; ++_i1637) @@ -119259,8 +118969,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_partition_with_environment_context_result) return this.equals((drop_partition_with_environment_context_result)that); return false; @@ -119327,7 +119035,7 @@ public int compareTo(drop_partition_with_environment_context_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -119337,7 +119045,7 @@ public int compareTo(drop_partition_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -119347,7 +119055,7 @@ public int compareTo(drop_partition_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -119882,8 +119590,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_partition_by_name_args) return this.equals((drop_partition_by_name_args)that); return false; @@ -119963,7 +119669,7 @@ public int compareTo(drop_partition_by_name_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -119973,7 +119679,7 @@ public int compareTo(drop_partition_by_name_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -119983,7 +119689,7 @@ public int compareTo(drop_partition_by_name_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_name()).compareTo(other.isSetPart_name()); + lastComparison = java.lang.Boolean.compare(isSetPart_name(), other.isSetPart_name()); if (lastComparison != 0) { return lastComparison; } @@ -119993,7 +119699,7 @@ public int compareTo(drop_partition_by_name_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDeleteData()).compareTo(other.isSetDeleteData()); + lastComparison = java.lang.Boolean.compare(isSetDeleteData(), other.isSetDeleteData()); if (lastComparison != 0) { return lastComparison; } @@ -120503,8 +120209,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_partition_by_name_result) return this.equals((drop_partition_by_name_result)that); return false; @@ -120571,7 +120275,7 @@ public int compareTo(drop_partition_by_name_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -120581,7 +120285,7 @@ public int compareTo(drop_partition_by_name_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -120591,7 +120295,7 @@ public int compareTo(drop_partition_by_name_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -121176,8 +120880,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_partition_by_name_with_environment_context_args) return this.equals((drop_partition_by_name_with_environment_context_args)that); return false; @@ -121270,7 +120972,7 @@ public int compareTo(drop_partition_by_name_with_environment_context_args other) int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -121280,7 +120982,7 @@ public int compareTo(drop_partition_by_name_with_environment_context_args other) return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -121290,7 +120992,7 @@ public int compareTo(drop_partition_by_name_with_environment_context_args other) return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_name()).compareTo(other.isSetPart_name()); + lastComparison = java.lang.Boolean.compare(isSetPart_name(), other.isSetPart_name()); if (lastComparison != 0) { return lastComparison; } @@ -121300,7 +121002,7 @@ public int compareTo(drop_partition_by_name_with_environment_context_args other) return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDeleteData()).compareTo(other.isSetDeleteData()); + lastComparison = java.lang.Boolean.compare(isSetDeleteData(), other.isSetDeleteData()); if (lastComparison != 0) { return lastComparison; } @@ -121310,7 +121012,7 @@ public int compareTo(drop_partition_by_name_with_environment_context_args other) return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironment_context()).compareTo(other.isSetEnvironment_context()); + lastComparison = java.lang.Boolean.compare(isSetEnvironment_context(), other.isSetEnvironment_context()); if (lastComparison != 0) { return lastComparison; } @@ -121856,8 +121558,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_partition_by_name_with_environment_context_result) return this.equals((drop_partition_by_name_with_environment_context_result)that); return false; @@ -121924,7 +121624,7 @@ public int compareTo(drop_partition_by_name_with_environment_context_result othe int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -121934,7 +121634,7 @@ public int compareTo(drop_partition_by_name_with_environment_context_result othe return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -121944,7 +121644,7 @@ public int compareTo(drop_partition_by_name_with_environment_context_result othe return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -122328,8 +122028,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_partitions_req_args) return this.equals((drop_partitions_req_args)that); return false; @@ -122372,7 +122070,7 @@ public int compareTo(drop_partitions_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -122797,8 +122495,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_partitions_req_result) return this.equals((drop_partitions_req_result)that); return false; @@ -122867,7 +122563,7 @@ public int compareTo(drop_partitions_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -122877,7 +122573,7 @@ public int compareTo(drop_partitions_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -122887,7 +122583,7 @@ public int compareTo(drop_partitions_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -123396,8 +123092,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_args) return this.equals((get_partition_args)that); return false; @@ -123466,7 +123160,7 @@ public int compareTo(get_partition_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -123476,7 +123170,7 @@ public int compareTo(get_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -123486,7 +123180,7 @@ public int compareTo(get_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -123711,7 +123405,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_args s } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1643 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1643 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.ArrayList(_list1643.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1644; for (int _i1645 = 0; _i1645 < _list1643.size; ++_i1645) @@ -124000,8 +123694,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_result) return this.equals((get_partition_result)that); return false; @@ -124070,7 +123762,7 @@ public int compareTo(get_partition_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -124080,7 +123772,7 @@ public int compareTo(get_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -124090,7 +123782,7 @@ public int compareTo(get_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -124481,8 +124173,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_req_args) return this.equals((get_partition_req_args)that); return false; @@ -124525,7 +124215,7 @@ public int compareTo(get_partition_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -124950,8 +124640,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_req_result) return this.equals((get_partition_req_result)that); return false; @@ -125020,7 +124708,7 @@ public int compareTo(get_partition_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -125030,7 +124718,7 @@ public int compareTo(get_partition_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -125040,7 +124728,7 @@ public int compareTo(get_partition_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -125645,8 +125333,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof exchange_partition_args) return this.equals((exchange_partition_args)that); return false; @@ -125741,7 +125427,7 @@ public int compareTo(exchange_partition_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitionSpecs()).compareTo(other.isSetPartitionSpecs()); + lastComparison = java.lang.Boolean.compare(isSetPartitionSpecs(), other.isSetPartitionSpecs()); if (lastComparison != 0) { return lastComparison; } @@ -125751,7 +125437,7 @@ public int compareTo(exchange_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSource_db()).compareTo(other.isSetSource_db()); + lastComparison = java.lang.Boolean.compare(isSetSource_db(), other.isSetSource_db()); if (lastComparison != 0) { return lastComparison; } @@ -125761,7 +125447,7 @@ public int compareTo(exchange_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSource_table_name()).compareTo(other.isSetSource_table_name()); + lastComparison = java.lang.Boolean.compare(isSetSource_table_name(), other.isSetSource_table_name()); if (lastComparison != 0) { return lastComparison; } @@ -125771,7 +125457,7 @@ public int compareTo(exchange_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDest_db()).compareTo(other.isSetDest_db()); + lastComparison = java.lang.Boolean.compare(isSetDest_db(), other.isSetDest_db()); if (lastComparison != 0) { return lastComparison; } @@ -125781,7 +125467,7 @@ public int compareTo(exchange_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDest_table_name()).compareTo(other.isSetDest_table_name()); + lastComparison = java.lang.Boolean.compare(isSetDest_table_name(), other.isSetDest_table_name()); if (lastComparison != 0) { return lastComparison; } @@ -126056,7 +125742,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, exchange_partition_a java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1652 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map1652 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.partitionSpecs = new java.util.HashMap(2*_map1652.size); @org.apache.thrift.annotation.Nullable java.lang.String _key1653; @org.apache.thrift.annotation.Nullable java.lang.String _val1654; @@ -126463,8 +126149,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof exchange_partition_result) return this.equals((exchange_partition_result)that); return false; @@ -126559,7 +126243,7 @@ public int compareTo(exchange_partition_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -126569,7 +126253,7 @@ public int compareTo(exchange_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -126579,7 +126263,7 @@ public int compareTo(exchange_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -126589,7 +126273,7 @@ public int compareTo(exchange_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -126599,7 +126283,7 @@ public int compareTo(exchange_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -127270,8 +126954,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof exchange_partitions_args) return this.equals((exchange_partitions_args)that); return false; @@ -127366,7 +127048,7 @@ public int compareTo(exchange_partitions_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPartitionSpecs()).compareTo(other.isSetPartitionSpecs()); + lastComparison = java.lang.Boolean.compare(isSetPartitionSpecs(), other.isSetPartitionSpecs()); if (lastComparison != 0) { return lastComparison; } @@ -127376,7 +127058,7 @@ public int compareTo(exchange_partitions_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSource_db()).compareTo(other.isSetSource_db()); + lastComparison = java.lang.Boolean.compare(isSetSource_db(), other.isSetSource_db()); if (lastComparison != 0) { return lastComparison; } @@ -127386,7 +127068,7 @@ public int compareTo(exchange_partitions_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSource_table_name()).compareTo(other.isSetSource_table_name()); + lastComparison = java.lang.Boolean.compare(isSetSource_table_name(), other.isSetSource_table_name()); if (lastComparison != 0) { return lastComparison; } @@ -127396,7 +127078,7 @@ public int compareTo(exchange_partitions_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDest_db()).compareTo(other.isSetDest_db()); + lastComparison = java.lang.Boolean.compare(isSetDest_db(), other.isSetDest_db()); if (lastComparison != 0) { return lastComparison; } @@ -127406,7 +127088,7 @@ public int compareTo(exchange_partitions_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDest_table_name()).compareTo(other.isSetDest_table_name()); + lastComparison = java.lang.Boolean.compare(isSetDest_table_name(), other.isSetDest_table_name()); if (lastComparison != 0) { return lastComparison; } @@ -127681,7 +127363,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, exchange_partitions_ java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1662 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map1662 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.partitionSpecs = new java.util.HashMap(2*_map1662.size); @org.apache.thrift.annotation.Nullable java.lang.String _key1663; @org.apache.thrift.annotation.Nullable java.lang.String _val1664; @@ -128109,8 +127791,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof exchange_partitions_result) return this.equals((exchange_partitions_result)that); return false; @@ -128205,7 +127885,7 @@ public int compareTo(exchange_partitions_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -128215,7 +127895,7 @@ public int compareTo(exchange_partitions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -128225,7 +127905,7 @@ public int compareTo(exchange_partitions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -128235,7 +127915,7 @@ public int compareTo(exchange_partitions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -128245,7 +127925,7 @@ public int compareTo(exchange_partitions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -128521,7 +128201,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, exchange_partitions_ java.util.BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1671 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1671 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1671.size); @org.apache.thrift.annotation.Nullable Partition _elem1672; for (int _i1673 = 0; _i1673 < _list1671.size; ++_i1673) @@ -128967,8 +128647,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_with_auth_args) return this.equals((get_partition_with_auth_args)that); return false; @@ -129063,7 +128741,7 @@ public int compareTo(get_partition_with_auth_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -129073,7 +128751,7 @@ public int compareTo(get_partition_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -129083,7 +128761,7 @@ public int compareTo(get_partition_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -129093,7 +128771,7 @@ public int compareTo(get_partition_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUser_name()).compareTo(other.isSetUser_name()); + lastComparison = java.lang.Boolean.compare(isSetUser_name(), other.isSetUser_name()); if (lastComparison != 0) { return lastComparison; } @@ -129103,7 +128781,7 @@ public int compareTo(get_partition_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGroup_names()).compareTo(other.isSetGroup_names()); + lastComparison = java.lang.Boolean.compare(isSetGroup_names(), other.isSetGroup_names()); if (lastComparison != 0) { return lastComparison; } @@ -129405,7 +129083,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_with_a } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1684 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1684 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.ArrayList(_list1684.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1685; for (int _i1686 = 0; _i1686 < _list1684.size; ++_i1686) @@ -129422,7 +129100,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_with_a } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1687 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1687 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.group_names = new java.util.ArrayList(_list1687.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1688; for (int _i1689 = 0; _i1689 < _list1687.size; ++_i1689) @@ -129711,8 +129389,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_with_auth_result) return this.equals((get_partition_with_auth_result)that); return false; @@ -129781,7 +129457,7 @@ public int compareTo(get_partition_with_auth_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -129791,7 +129467,7 @@ public int compareTo(get_partition_with_auth_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -129801,7 +129477,7 @@ public int compareTo(get_partition_with_auth_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -130292,8 +129968,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_by_name_args) return this.equals((get_partition_by_name_args)that); return false; @@ -130362,7 +130036,7 @@ public int compareTo(get_partition_by_name_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -130372,7 +130046,7 @@ public int compareTo(get_partition_by_name_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -130382,7 +130056,7 @@ public int compareTo(get_partition_by_name_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_name()).compareTo(other.isSetPart_name()); + lastComparison = java.lang.Boolean.compare(isSetPart_name(), other.isSetPart_name()); if (lastComparison != 0) { return lastComparison; } @@ -130864,8 +130538,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_by_name_result) return this.equals((get_partition_by_name_result)that); return false; @@ -130934,7 +130606,7 @@ public int compareTo(get_partition_by_name_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -130944,7 +130616,7 @@ public int compareTo(get_partition_by_name_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -130954,7 +130626,7 @@ public int compareTo(get_partition_by_name_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -131448,8 +131120,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_args) return this.equals((get_partitions_args)that); return false; @@ -131516,7 +131186,7 @@ public int compareTo(get_partitions_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -131526,7 +131196,7 @@ public int compareTo(get_partitions_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -131536,7 +131206,7 @@ public int compareTo(get_partitions_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMax_parts()).compareTo(other.isSetMax_parts()); + lastComparison = java.lang.Boolean.compare(isSetMax_parts(), other.isSetMax_parts()); if (lastComparison != 0) { return lastComparison; } @@ -132035,8 +131705,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_result) return this.equals((get_partitions_result)that); return false; @@ -132105,7 +131773,7 @@ public int compareTo(get_partitions_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -132115,7 +131783,7 @@ public int compareTo(get_partitions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -132125,7 +131793,7 @@ public int compareTo(get_partitions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -132345,7 +132013,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_resul java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1695 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1695 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1695.size); @org.apache.thrift.annotation.Nullable Partition _elem1696; for (int _i1697 = 0; _i1697 < _list1695.size; ++_i1697) @@ -132545,8 +132213,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_req_args) return this.equals((get_partitions_req_args)that); return false; @@ -132589,7 +132255,7 @@ public int compareTo(get_partitions_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -133014,8 +132680,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_req_result) return this.equals((get_partitions_req_result)that); return false; @@ -133084,7 +132748,7 @@ public int compareTo(get_partitions_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -133094,7 +132758,7 @@ public int compareTo(get_partitions_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -133104,7 +132768,7 @@ public int compareTo(get_partitions_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -133716,8 +133380,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_with_auth_args) return this.equals((get_partitions_with_auth_args)that); return false; @@ -133810,7 +133472,7 @@ public int compareTo(get_partitions_with_auth_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -133820,7 +133482,7 @@ public int compareTo(get_partitions_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -133830,7 +133492,7 @@ public int compareTo(get_partitions_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMax_parts()).compareTo(other.isSetMax_parts()); + lastComparison = java.lang.Boolean.compare(isSetMax_parts(), other.isSetMax_parts()); if (lastComparison != 0) { return lastComparison; } @@ -133840,7 +133502,7 @@ public int compareTo(get_partitions_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUser_name()).compareTo(other.isSetUser_name()); + lastComparison = java.lang.Boolean.compare(isSetUser_name(), other.isSetUser_name()); if (lastComparison != 0) { return lastComparison; } @@ -133850,7 +133512,7 @@ public int compareTo(get_partitions_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGroup_names()).compareTo(other.isSetGroup_names()); + lastComparison = java.lang.Boolean.compare(isSetGroup_names(), other.isSetGroup_names()); if (lastComparison != 0) { return lastComparison; } @@ -134133,7 +133795,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_with_ } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1703 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1703 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.group_names = new java.util.ArrayList(_list1703.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1704; for (int _i1705 = 0; _i1705 < _list1703.size; ++_i1705) @@ -134443,8 +134105,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_with_auth_result) return this.equals((get_partitions_with_auth_result)that); return false; @@ -134513,7 +134173,7 @@ public int compareTo(get_partitions_with_auth_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -134523,7 +134183,7 @@ public int compareTo(get_partitions_with_auth_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -134533,7 +134193,7 @@ public int compareTo(get_partitions_with_auth_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -134753,7 +134413,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_with_ java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1711 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1711 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1711.size); @org.apache.thrift.annotation.Nullable Partition _elem1712; for (int _i1713 = 0; _i1713 < _list1711.size; ++_i1713) @@ -135056,8 +134716,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_pspec_args) return this.equals((get_partitions_pspec_args)that); return false; @@ -135124,7 +134782,7 @@ public int compareTo(get_partitions_pspec_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -135134,7 +134792,7 @@ public int compareTo(get_partitions_pspec_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -135144,7 +134802,7 @@ public int compareTo(get_partitions_pspec_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMax_parts()).compareTo(other.isSetMax_parts()); + lastComparison = java.lang.Boolean.compare(isSetMax_parts(), other.isSetMax_parts()); if (lastComparison != 0) { return lastComparison; } @@ -135643,8 +135301,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_pspec_result) return this.equals((get_partitions_pspec_result)that); return false; @@ -135713,7 +135369,7 @@ public int compareTo(get_partitions_pspec_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -135723,7 +135379,7 @@ public int compareTo(get_partitions_pspec_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -135733,7 +135389,7 @@ public int compareTo(get_partitions_pspec_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -135953,7 +135609,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_pspec java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1719 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1719 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1719.size); @org.apache.thrift.annotation.Nullable PartitionSpec _elem1720; for (int _i1721 = 0; _i1721 < _list1719.size; ++_i1721) @@ -136256,8 +135912,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_names_args) return this.equals((get_partition_names_args)that); return false; @@ -136324,7 +135978,7 @@ public int compareTo(get_partition_names_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -136334,7 +135988,7 @@ public int compareTo(get_partition_names_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -136344,7 +135998,7 @@ public int compareTo(get_partition_names_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMax_parts()).compareTo(other.isSetMax_parts()); + lastComparison = java.lang.Boolean.compare(isSetMax_parts(), other.isSetMax_parts()); if (lastComparison != 0) { return lastComparison; } @@ -136840,8 +136494,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_names_result) return this.equals((get_partition_names_result)that); return false; @@ -136910,7 +136562,7 @@ public int compareTo(get_partition_names_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -136920,7 +136572,7 @@ public int compareTo(get_partition_names_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -136930,7 +136582,7 @@ public int compareTo(get_partition_names_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -137149,7 +136801,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_names_ java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1727 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1727 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1727.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1728; for (int _i1729 = 0; _i1729 < _list1727.size; ++_i1729) @@ -137348,8 +137000,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_values_args) return this.equals((get_partition_values_args)that); return false; @@ -137392,7 +137042,7 @@ public int compareTo(get_partition_values_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -137817,8 +137467,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_values_result) return this.equals((get_partition_values_result)that); return false; @@ -137887,7 +137535,7 @@ public int compareTo(get_partition_values_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -137897,7 +137545,7 @@ public int compareTo(get_partition_values_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -137907,7 +137555,7 @@ public int compareTo(get_partition_values_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -138469,8 +138117,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_ps_args) return this.equals((get_partitions_ps_args)that); return false; @@ -138550,7 +138196,7 @@ public int compareTo(get_partitions_ps_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -138560,7 +138206,7 @@ public int compareTo(get_partitions_ps_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -138570,7 +138216,7 @@ public int compareTo(get_partitions_ps_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -138580,7 +138226,7 @@ public int compareTo(get_partitions_ps_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMax_parts()).compareTo(other.isSetMax_parts()); + lastComparison = java.lang.Boolean.compare(isSetMax_parts(), other.isSetMax_parts()); if (lastComparison != 0) { return lastComparison; } @@ -138828,7 +138474,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_ar } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1735 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1735 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.ArrayList(_list1735.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1736; for (int _i1737 = 0; _i1737 < _list1735.size; ++_i1737) @@ -139142,8 +138788,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_ps_result) return this.equals((get_partitions_ps_result)that); return false; @@ -139212,7 +138856,7 @@ public int compareTo(get_partitions_ps_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -139222,7 +138866,7 @@ public int compareTo(get_partitions_ps_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -139232,7 +138876,7 @@ public int compareTo(get_partitions_ps_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -139452,7 +139096,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_re java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1743 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1743 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1743.size); @org.apache.thrift.annotation.Nullable Partition _elem1744; for (int _i1745 = 0; _i1745 < _list1743.size; ++_i1745) @@ -139941,8 +139585,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_ps_with_auth_args) return this.equals((get_partitions_ps_with_auth_args)that); return false; @@ -140048,7 +139690,7 @@ public int compareTo(get_partitions_ps_with_auth_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -140058,7 +139700,7 @@ public int compareTo(get_partitions_ps_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -140068,7 +139710,7 @@ public int compareTo(get_partitions_ps_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -140078,7 +139720,7 @@ public int compareTo(get_partitions_ps_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMax_parts()).compareTo(other.isSetMax_parts()); + lastComparison = java.lang.Boolean.compare(isSetMax_parts(), other.isSetMax_parts()); if (lastComparison != 0) { return lastComparison; } @@ -140088,7 +139730,7 @@ public int compareTo(get_partitions_ps_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUser_name()).compareTo(other.isSetUser_name()); + lastComparison = java.lang.Boolean.compare(isSetUser_name(), other.isSetUser_name()); if (lastComparison != 0) { return lastComparison; } @@ -140098,7 +139740,7 @@ public int compareTo(get_partitions_ps_with_auth_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGroup_names()).compareTo(other.isSetGroup_names()); + lastComparison = java.lang.Boolean.compare(isSetGroup_names(), other.isSetGroup_names()); if (lastComparison != 0) { return lastComparison; } @@ -140423,7 +140065,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_wi } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1756 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1756 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.ArrayList(_list1756.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1757; for (int _i1758 = 0; _i1758 < _list1756.size; ++_i1758) @@ -140444,7 +140086,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_wi } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list1759 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1759 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.group_names = new java.util.ArrayList(_list1759.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1760; for (int _i1761 = 0; _i1761 < _list1759.size; ++_i1761) @@ -140754,8 +140396,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_ps_with_auth_result) return this.equals((get_partitions_ps_with_auth_result)that); return false; @@ -140824,7 +140464,7 @@ public int compareTo(get_partitions_ps_with_auth_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -140834,7 +140474,7 @@ public int compareTo(get_partitions_ps_with_auth_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -140844,7 +140484,7 @@ public int compareTo(get_partitions_ps_with_auth_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -141064,7 +140704,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_wi java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1767 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1767 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1767.size); @org.apache.thrift.annotation.Nullable Partition _elem1768; for (int _i1769 = 0; _i1769 < _list1767.size; ++_i1769) @@ -141264,8 +140904,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_ps_with_auth_req_args) return this.equals((get_partitions_ps_with_auth_req_args)that); return false; @@ -141308,7 +140946,7 @@ public int compareTo(get_partitions_ps_with_auth_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -141733,8 +141371,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_ps_with_auth_req_result) return this.equals((get_partitions_ps_with_auth_req_result)that); return false; @@ -141803,7 +141439,7 @@ public int compareTo(get_partitions_ps_with_auth_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -141813,7 +141449,7 @@ public int compareTo(get_partitions_ps_with_auth_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -141823,7 +141459,7 @@ public int compareTo(get_partitions_ps_with_auth_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -142385,8 +142021,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_names_ps_args) return this.equals((get_partition_names_ps_args)that); return false; @@ -142466,7 +142100,7 @@ public int compareTo(get_partition_names_ps_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -142476,7 +142110,7 @@ public int compareTo(get_partition_names_ps_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -142486,7 +142120,7 @@ public int compareTo(get_partition_names_ps_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -142496,7 +142130,7 @@ public int compareTo(get_partition_names_ps_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMax_parts()).compareTo(other.isSetMax_parts()); + lastComparison = java.lang.Boolean.compare(isSetMax_parts(), other.isSetMax_parts()); if (lastComparison != 0) { return lastComparison; } @@ -142744,7 +142378,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_names_ } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1775 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1775 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.ArrayList(_list1775.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1776; for (int _i1777 = 0; _i1777 < _list1775.size; ++_i1777) @@ -143055,8 +142689,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_names_ps_result) return this.equals((get_partition_names_ps_result)that); return false; @@ -143125,7 +142757,7 @@ public int compareTo(get_partition_names_ps_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -143135,7 +142767,7 @@ public int compareTo(get_partition_names_ps_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -143145,7 +142777,7 @@ public int compareTo(get_partition_names_ps_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -143364,7 +142996,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_names_ java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1783 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1783 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1783.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1784; for (int _i1785 = 0; _i1785 < _list1783.size; ++_i1785) @@ -143563,8 +143195,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_names_ps_req_args) return this.equals((get_partition_names_ps_req_args)that); return false; @@ -143607,7 +143237,7 @@ public int compareTo(get_partition_names_ps_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -144032,8 +143662,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_names_ps_req_result) return this.equals((get_partition_names_ps_req_result)that); return false; @@ -144102,7 +143730,7 @@ public int compareTo(get_partition_names_ps_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -144112,7 +143740,7 @@ public int compareTo(get_partition_names_ps_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -144122,7 +143750,7 @@ public int compareTo(get_partition_names_ps_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -144513,8 +144141,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_names_req_args) return this.equals((get_partition_names_req_args)that); return false; @@ -144557,7 +144183,7 @@ public int compareTo(get_partition_names_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -145000,8 +144626,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_names_req_result) return this.equals((get_partition_names_req_result)that); return false; @@ -145070,7 +144694,7 @@ public int compareTo(get_partition_names_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -145080,7 +144704,7 @@ public int compareTo(get_partition_names_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -145090,7 +144714,7 @@ public int compareTo(get_partition_names_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -145309,7 +144933,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_names_ java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1791 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1791 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1791.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1792; for (int _i1793 = 0; _i1793 < _list1791.size; ++_i1793) @@ -145661,8 +145285,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_by_filter_args) return this.equals((get_partitions_by_filter_args)that); return false; @@ -145742,7 +145364,7 @@ public int compareTo(get_partitions_by_filter_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -145752,7 +145374,7 @@ public int compareTo(get_partitions_by_filter_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -145762,7 +145384,7 @@ public int compareTo(get_partitions_by_filter_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFilter()).compareTo(other.isSetFilter()); + lastComparison = java.lang.Boolean.compare(isSetFilter(), other.isSetFilter()); if (lastComparison != 0) { return lastComparison; } @@ -145772,7 +145394,7 @@ public int compareTo(get_partitions_by_filter_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMax_parts()).compareTo(other.isSetMax_parts()); + lastComparison = java.lang.Boolean.compare(isSetMax_parts(), other.isSetMax_parts()); if (lastComparison != 0) { return lastComparison; } @@ -146302,8 +145924,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_by_filter_result) return this.equals((get_partitions_by_filter_result)that); return false; @@ -146372,7 +145992,7 @@ public int compareTo(get_partitions_by_filter_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -146382,7 +146002,7 @@ public int compareTo(get_partitions_by_filter_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -146392,7 +146012,7 @@ public int compareTo(get_partitions_by_filter_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -146612,7 +146232,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_fi java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1799 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1799 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1799.size); @org.apache.thrift.annotation.Nullable Partition _elem1800; for (int _i1801 = 0; _i1801 < _list1799.size; ++_i1801) @@ -146965,8 +146585,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_part_specs_by_filter_args) return this.equals((get_part_specs_by_filter_args)that); return false; @@ -147046,7 +146664,7 @@ public int compareTo(get_part_specs_by_filter_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -147056,7 +146674,7 @@ public int compareTo(get_part_specs_by_filter_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -147066,7 +146684,7 @@ public int compareTo(get_part_specs_by_filter_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFilter()).compareTo(other.isSetFilter()); + lastComparison = java.lang.Boolean.compare(isSetFilter(), other.isSetFilter()); if (lastComparison != 0) { return lastComparison; } @@ -147076,7 +146694,7 @@ public int compareTo(get_part_specs_by_filter_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMax_parts()).compareTo(other.isSetMax_parts()); + lastComparison = java.lang.Boolean.compare(isSetMax_parts(), other.isSetMax_parts()); if (lastComparison != 0) { return lastComparison; } @@ -147606,8 +147224,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_part_specs_by_filter_result) return this.equals((get_part_specs_by_filter_result)that); return false; @@ -147676,7 +147292,7 @@ public int compareTo(get_part_specs_by_filter_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -147686,7 +147302,7 @@ public int compareTo(get_part_specs_by_filter_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -147696,7 +147312,7 @@ public int compareTo(get_part_specs_by_filter_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -147916,7 +147532,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_part_specs_by_fi java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1807 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1807 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1807.size); @org.apache.thrift.annotation.Nullable PartitionSpec _elem1808; for (int _i1809 = 0; _i1809 < _list1807.size; ++_i1809) @@ -148116,8 +147732,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_by_expr_args) return this.equals((get_partitions_by_expr_args)that); return false; @@ -148160,7 +147774,7 @@ public int compareTo(get_partitions_by_expr_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -148585,8 +148199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_by_expr_result) return this.equals((get_partitions_by_expr_result)that); return false; @@ -148655,7 +148267,7 @@ public int compareTo(get_partitions_by_expr_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -148665,7 +148277,7 @@ public int compareTo(get_partitions_by_expr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -148675,7 +148287,7 @@ public int compareTo(get_partitions_by_expr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -149066,8 +148678,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_spec_by_expr_args) return this.equals((get_partitions_spec_by_expr_args)that); return false; @@ -149110,7 +148720,7 @@ public int compareTo(get_partitions_spec_by_expr_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -149535,8 +149145,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_spec_by_expr_result) return this.equals((get_partitions_spec_by_expr_result)that); return false; @@ -149605,7 +149213,7 @@ public int compareTo(get_partitions_spec_by_expr_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -149615,7 +149223,7 @@ public int compareTo(get_partitions_spec_by_expr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -149625,7 +149233,7 @@ public int compareTo(get_partitions_spec_by_expr_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -150116,8 +149724,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_num_partitions_by_filter_args) return this.equals((get_num_partitions_by_filter_args)that); return false; @@ -150186,7 +149792,7 @@ public int compareTo(get_num_partitions_by_filter_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -150196,7 +149802,7 @@ public int compareTo(get_num_partitions_by_filter_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -150206,7 +149812,7 @@ public int compareTo(get_num_partitions_by_filter_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFilter()).compareTo(other.isSetFilter()); + lastComparison = java.lang.Boolean.compare(isSetFilter(), other.isSetFilter()); if (lastComparison != 0) { return lastComparison; } @@ -150689,8 +150295,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_num_partitions_by_filter_result) return this.equals((get_num_partitions_by_filter_result)that); return false; @@ -150757,7 +150361,7 @@ public int compareTo(get_num_partitions_by_filter_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -150767,7 +150371,7 @@ public int compareTo(get_num_partitions_by_filter_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -150777,7 +150381,7 @@ public int compareTo(get_num_partitions_by_filter_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -151279,8 +150883,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_by_names_args) return this.equals((get_partitions_by_names_args)that); return false; @@ -151349,7 +150951,7 @@ public int compareTo(get_partitions_by_names_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -151359,7 +150961,7 @@ public int compareTo(get_partitions_by_names_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -151369,7 +150971,7 @@ public int compareTo(get_partitions_by_names_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNames()).compareTo(other.isSetNames()); + lastComparison = java.lang.Boolean.compare(isSetNames(), other.isSetNames()); if (lastComparison != 0) { return lastComparison; } @@ -151594,7 +151196,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_na } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1815 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1815 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.names = new java.util.ArrayList(_list1815.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1816; for (int _i1817 = 0; _i1817 < _list1815.size; ++_i1817) @@ -151904,8 +151506,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_by_names_result) return this.equals((get_partitions_by_names_result)that); return false; @@ -151974,7 +151574,7 @@ public int compareTo(get_partitions_by_names_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -151984,7 +151584,7 @@ public int compareTo(get_partitions_by_names_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -151994,7 +151594,7 @@ public int compareTo(get_partitions_by_names_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -152214,7 +151814,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_na java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1823 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1823 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1823.size); @org.apache.thrift.annotation.Nullable Partition _elem1824; for (int _i1825 = 0; _i1825 < _list1823.size; ++_i1825) @@ -152414,8 +152014,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_by_names_req_args) return this.equals((get_partitions_by_names_req_args)that); return false; @@ -152458,7 +152056,7 @@ public int compareTo(get_partitions_by_names_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -152883,8 +152481,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_by_names_req_result) return this.equals((get_partitions_by_names_req_result)that); return false; @@ -152953,7 +152549,7 @@ public int compareTo(get_partitions_by_names_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -152963,7 +152559,7 @@ public int compareTo(get_partitions_by_names_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -152973,7 +152569,7 @@ public int compareTo(get_partitions_by_names_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -153464,8 +153060,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_partition_args) return this.equals((alter_partition_args)that); return false; @@ -153534,7 +153128,7 @@ public int compareTo(alter_partition_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -153544,7 +153138,7 @@ public int compareTo(alter_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -153554,7 +153148,7 @@ public int compareTo(alter_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNew_part()).compareTo(other.isSetNew_part()); + lastComparison = java.lang.Boolean.compare(isSetNew_part(), other.isSetNew_part()); if (lastComparison != 0) { return lastComparison; } @@ -153991,8 +153585,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_partition_result) return this.equals((alter_partition_result)that); return false; @@ -154048,7 +153640,7 @@ public int compareTo(alter_partition_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -154058,7 +153650,7 @@ public int compareTo(alter_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -154534,8 +154126,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_partitions_args) return this.equals((alter_partitions_args)that); return false; @@ -154604,7 +154194,7 @@ public int compareTo(alter_partitions_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -154614,7 +154204,7 @@ public int compareTo(alter_partitions_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -154624,7 +154214,7 @@ public int compareTo(alter_partitions_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNew_parts()).compareTo(other.isSetNew_parts()); + lastComparison = java.lang.Boolean.compare(isSetNew_parts(), other.isSetNew_parts()); if (lastComparison != 0) { return lastComparison; } @@ -154850,7 +154440,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, alter_partitions_arg } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1831 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1831 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.new_parts = new java.util.ArrayList(_list1831.size); @org.apache.thrift.annotation.Nullable Partition _elem1832; for (int _i1833 = 0; _i1833 < _list1831.size; ++_i1833) @@ -155090,8 +154680,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_partitions_result) return this.equals((alter_partitions_result)that); return false; @@ -155147,7 +154735,7 @@ public int compareTo(alter_partitions_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -155157,7 +154745,7 @@ public int compareTo(alter_partitions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -155683,8 +155271,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_partitions_with_environment_context_args) return this.equals((alter_partitions_with_environment_context_args)that); return false; @@ -155766,7 +155352,7 @@ public int compareTo(alter_partitions_with_environment_context_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -155776,7 +155362,7 @@ public int compareTo(alter_partitions_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -155786,7 +155372,7 @@ public int compareTo(alter_partitions_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNew_parts()).compareTo(other.isSetNew_parts()); + lastComparison = java.lang.Boolean.compare(isSetNew_parts(), other.isSetNew_parts()); if (lastComparison != 0) { return lastComparison; } @@ -155796,7 +155382,7 @@ public int compareTo(alter_partitions_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironment_context()).compareTo(other.isSetEnvironment_context()); + lastComparison = java.lang.Boolean.compare(isSetEnvironment_context(), other.isSetEnvironment_context()); if (lastComparison != 0) { return lastComparison; } @@ -156053,7 +155639,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, alter_partitions_wit } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1839 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1839 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.new_parts = new java.util.ArrayList(_list1839.size); @org.apache.thrift.annotation.Nullable Partition _elem1840; for (int _i1841 = 0; _i1841 < _list1839.size; ++_i1841) @@ -156298,8 +155884,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_partitions_with_environment_context_result) return this.equals((alter_partitions_with_environment_context_result)that); return false; @@ -156355,7 +155939,7 @@ public int compareTo(alter_partitions_with_environment_context_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -156365,7 +155949,7 @@ public int compareTo(alter_partitions_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -156720,8 +156304,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_partitions_req_args) return this.equals((alter_partitions_req_args)that); return false; @@ -156764,7 +156346,7 @@ public int compareTo(alter_partitions_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -157189,8 +156771,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_partitions_req_result) return this.equals((alter_partitions_req_result)that); return false; @@ -157259,7 +156839,7 @@ public int compareTo(alter_partitions_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -157269,7 +156849,7 @@ public int compareTo(alter_partitions_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -157279,7 +156859,7 @@ public int compareTo(alter_partitions_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -157820,8 +157400,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_partition_with_environment_context_args) return this.equals((alter_partition_with_environment_context_args)that); return false; @@ -157903,7 +157481,7 @@ public int compareTo(alter_partition_with_environment_context_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -157913,7 +157491,7 @@ public int compareTo(alter_partition_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -157923,7 +157501,7 @@ public int compareTo(alter_partition_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNew_part()).compareTo(other.isSetNew_part()); + lastComparison = java.lang.Boolean.compare(isSetNew_part(), other.isSetNew_part()); if (lastComparison != 0) { return lastComparison; } @@ -157933,7 +157511,7 @@ public int compareTo(alter_partition_with_environment_context_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEnvironment_context()).compareTo(other.isSetEnvironment_context()); + lastComparison = java.lang.Boolean.compare(isSetEnvironment_context(), other.isSetEnvironment_context()); if (lastComparison != 0) { return lastComparison; } @@ -158406,8 +157984,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_partition_with_environment_context_result) return this.equals((alter_partition_with_environment_context_result)that); return false; @@ -158463,7 +158039,7 @@ public int compareTo(alter_partition_with_environment_context_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -158473,7 +158049,7 @@ public int compareTo(alter_partition_with_environment_context_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -158996,8 +158572,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof rename_partition_args) return this.equals((rename_partition_args)that); return false; @@ -159079,7 +158653,7 @@ public int compareTo(rename_partition_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -159089,7 +158663,7 @@ public int compareTo(rename_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -159099,7 +158673,7 @@ public int compareTo(rename_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -159109,7 +158683,7 @@ public int compareTo(rename_partition_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNew_part()).compareTo(other.isSetNew_part()); + lastComparison = java.lang.Boolean.compare(isSetNew_part(), other.isSetNew_part()); if (lastComparison != 0) { return lastComparison; } @@ -159365,7 +158939,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, rename_partition_arg } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1847 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1847 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.ArrayList(_list1847.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1848; for (int _i1849 = 0; _i1849 < _list1847.size; ++_i1849) @@ -159609,8 +159183,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof rename_partition_result) return this.equals((rename_partition_result)that); return false; @@ -159666,7 +159238,7 @@ public int compareTo(rename_partition_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -159676,7 +159248,7 @@ public int compareTo(rename_partition_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -160031,8 +159603,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof rename_partition_req_args) return this.equals((rename_partition_req_args)that); return false; @@ -160075,7 +159645,7 @@ public int compareTo(rename_partition_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -160500,8 +160070,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof rename_partition_req_result) return this.equals((rename_partition_req_result)that); return false; @@ -160570,7 +160138,7 @@ public int compareTo(rename_partition_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -160580,7 +160148,7 @@ public int compareTo(rename_partition_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -160590,7 +160158,7 @@ public int compareTo(rename_partition_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -161050,8 +160618,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof partition_name_has_valid_characters_args) return this.equals((partition_name_has_valid_characters_args)that); return false; @@ -161105,7 +160671,7 @@ public int compareTo(partition_name_has_valid_characters_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -161115,7 +160681,7 @@ public int compareTo(partition_name_has_valid_characters_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetThrow_exception()).compareTo(other.isSetThrow_exception()); + lastComparison = java.lang.Boolean.compare(isSetThrow_exception(), other.isSetThrow_exception()); if (lastComparison != 0) { return lastComparison; } @@ -161301,7 +160867,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, partition_name_has_v java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1855 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1855 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.ArrayList(_list1855.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1856; for (int _i1857 = 0; _i1857 < _list1855.size; ++_i1857) @@ -161545,8 +161111,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof partition_name_has_valid_characters_result) return this.equals((partition_name_has_valid_characters_result)that); return false; @@ -161600,7 +161164,7 @@ public int compareTo(partition_name_has_valid_characters_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -161610,7 +161174,7 @@ public int compareTo(partition_name_has_valid_characters_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -162011,8 +161575,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_config_value_args) return this.equals((get_config_value_args)that); return false; @@ -162068,7 +161630,7 @@ public int compareTo(get_config_value_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -162078,7 +161640,7 @@ public int compareTo(get_config_value_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDefaultValue()).compareTo(other.isSetDefaultValue()); + lastComparison = java.lang.Boolean.compare(isSetDefaultValue(), other.isSetDefaultValue()); if (lastComparison != 0) { return lastComparison; } @@ -162479,8 +162041,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_config_value_result) return this.equals((get_config_value_result)that); return false; @@ -162536,7 +162096,7 @@ public int compareTo(get_config_value_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -162546,7 +162106,7 @@ public int compareTo(get_config_value_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -162899,8 +162459,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof partition_name_to_vals_args) return this.equals((partition_name_to_vals_args)that); return false; @@ -162943,7 +162501,7 @@ public int compareTo(partition_name_to_vals_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPart_name()).compareTo(other.isSetPart_name()); + lastComparison = java.lang.Boolean.compare(isSetPart_name(), other.isSetPart_name()); if (lastComparison != 0) { return lastComparison; } @@ -163331,8 +162889,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof partition_name_to_vals_result) return this.equals((partition_name_to_vals_result)that); return false; @@ -163388,7 +162944,7 @@ public int compareTo(partition_name_to_vals_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -163398,7 +162954,7 @@ public int compareTo(partition_name_to_vals_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -163589,7 +163145,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, partition_name_to_va java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1863 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1863 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1863.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1864; for (int _i1865 = 0; _i1865 < _list1863.size; ++_i1865) @@ -163783,8 +163339,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof partition_name_to_spec_args) return this.equals((partition_name_to_spec_args)that); return false; @@ -163827,7 +163381,7 @@ public int compareTo(partition_name_to_spec_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPart_name()).compareTo(other.isSetPart_name()); + lastComparison = java.lang.Boolean.compare(isSetPart_name(), other.isSetPart_name()); if (lastComparison != 0) { return lastComparison; } @@ -164211,8 +163765,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof partition_name_to_spec_result) return this.equals((partition_name_to_spec_result)that); return false; @@ -164268,7 +163820,7 @@ public int compareTo(partition_name_to_spec_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -164278,7 +163830,7 @@ public int compareTo(partition_name_to_spec_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -164473,7 +164025,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, partition_name_to_sp java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1872 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map1872 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.HashMap(2*_map1872.size); @org.apache.thrift.annotation.Nullable java.lang.String _key1873; @org.apache.thrift.annotation.Nullable java.lang.String _val1874; @@ -164845,8 +164397,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof markPartitionForEvent_args) return this.equals((markPartitionForEvent_args)that); return false; @@ -164928,7 +164478,7 @@ public int compareTo(markPartitionForEvent_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -164938,7 +164488,7 @@ public int compareTo(markPartitionForEvent_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -164948,7 +164498,7 @@ public int compareTo(markPartitionForEvent_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -164958,7 +164508,7 @@ public int compareTo(markPartitionForEvent_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEventType()).compareTo(other.isSetEventType()); + lastComparison = java.lang.Boolean.compare(isSetEventType(), other.isSetEventType()); if (lastComparison != 0) { return lastComparison; } @@ -165214,7 +164764,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, markPartitionForEven } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map1882 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map1882 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.HashMap(2*_map1882.size); @org.apache.thrift.annotation.Nullable java.lang.String _key1883; @org.apache.thrift.annotation.Nullable java.lang.String _val1884; @@ -165659,8 +165209,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof markPartitionForEvent_result) return this.equals((markPartitionForEvent_result)that); return false; @@ -165768,7 +165316,7 @@ public int compareTo(markPartitionForEvent_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -165778,7 +165326,7 @@ public int compareTo(markPartitionForEvent_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -165788,7 +165336,7 @@ public int compareTo(markPartitionForEvent_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -165798,7 +165346,7 @@ public int compareTo(markPartitionForEvent_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -165808,7 +165356,7 @@ public int compareTo(markPartitionForEvent_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO5()).compareTo(other.isSetO5()); + lastComparison = java.lang.Boolean.compare(isSetO5(), other.isSetO5()); if (lastComparison != 0) { return lastComparison; } @@ -165818,7 +165366,7 @@ public int compareTo(markPartitionForEvent_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO6()).compareTo(other.isSetO6()); + lastComparison = java.lang.Boolean.compare(isSetO6(), other.isSetO6()); if (lastComparison != 0) { return lastComparison; } @@ -166481,8 +166029,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof isPartitionMarkedForEvent_args) return this.equals((isPartitionMarkedForEvent_args)that); return false; @@ -166564,7 +166110,7 @@ public int compareTo(isPartitionMarkedForEvent_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -166574,7 +166120,7 @@ public int compareTo(isPartitionMarkedForEvent_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -166584,7 +166130,7 @@ public int compareTo(isPartitionMarkedForEvent_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_vals()).compareTo(other.isSetPart_vals()); + lastComparison = java.lang.Boolean.compare(isSetPart_vals(), other.isSetPart_vals()); if (lastComparison != 0) { return lastComparison; } @@ -166594,7 +166140,7 @@ public int compareTo(isPartitionMarkedForEvent_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEventType()).compareTo(other.isSetEventType()); + lastComparison = java.lang.Boolean.compare(isSetEventType(), other.isSetEventType()); if (lastComparison != 0) { return lastComparison; } @@ -166850,7 +166396,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, isPartitionMarkedFor } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map1892 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TMap _map1892 = iprot.readMapBegin(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING); struct.part_vals = new java.util.HashMap(2*_map1892.size); @org.apache.thrift.annotation.Nullable java.lang.String _key1893; @org.apache.thrift.annotation.Nullable java.lang.String _val1894; @@ -167346,8 +166892,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof isPartitionMarkedForEvent_result) return this.equals((isPartitionMarkedForEvent_result)that); return false; @@ -167466,7 +167010,7 @@ public int compareTo(isPartitionMarkedForEvent_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -167476,7 +167020,7 @@ public int compareTo(isPartitionMarkedForEvent_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -167486,7 +167030,7 @@ public int compareTo(isPartitionMarkedForEvent_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -167496,7 +167040,7 @@ public int compareTo(isPartitionMarkedForEvent_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -167506,7 +167050,7 @@ public int compareTo(isPartitionMarkedForEvent_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -167516,7 +167060,7 @@ public int compareTo(isPartitionMarkedForEvent_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO5()).compareTo(other.isSetO5()); + lastComparison = java.lang.Boolean.compare(isSetO5(), other.isSetO5()); if (lastComparison != 0) { return lastComparison; } @@ -167526,7 +167070,7 @@ public int compareTo(isPartitionMarkedForEvent_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO6()).compareTo(other.isSetO6()); + lastComparison = java.lang.Boolean.compare(isSetO6(), other.isSetO6()); if (lastComparison != 0) { return lastComparison; } @@ -168042,8 +167586,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_primary_keys_args) return this.equals((get_primary_keys_args)that); return false; @@ -168086,7 +167628,7 @@ public int compareTo(get_primary_keys_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -168511,8 +168053,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_primary_keys_result) return this.equals((get_primary_keys_result)that); return false; @@ -168581,7 +168121,7 @@ public int compareTo(get_primary_keys_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -168591,7 +168131,7 @@ public int compareTo(get_primary_keys_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -168601,7 +168141,7 @@ public int compareTo(get_primary_keys_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -168992,8 +168532,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_foreign_keys_args) return this.equals((get_foreign_keys_args)that); return false; @@ -169036,7 +168574,7 @@ public int compareTo(get_foreign_keys_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -169461,8 +168999,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_foreign_keys_result) return this.equals((get_foreign_keys_result)that); return false; @@ -169531,7 +169067,7 @@ public int compareTo(get_foreign_keys_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -169541,7 +169077,7 @@ public int compareTo(get_foreign_keys_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -169551,7 +169087,7 @@ public int compareTo(get_foreign_keys_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -169942,8 +169478,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_unique_constraints_args) return this.equals((get_unique_constraints_args)that); return false; @@ -169986,7 +169520,7 @@ public int compareTo(get_unique_constraints_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -170411,8 +169945,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_unique_constraints_result) return this.equals((get_unique_constraints_result)that); return false; @@ -170481,7 +170013,7 @@ public int compareTo(get_unique_constraints_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -170491,7 +170023,7 @@ public int compareTo(get_unique_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -170501,7 +170033,7 @@ public int compareTo(get_unique_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -170892,8 +170424,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_not_null_constraints_args) return this.equals((get_not_null_constraints_args)that); return false; @@ -170936,7 +170466,7 @@ public int compareTo(get_not_null_constraints_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -171361,8 +170891,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_not_null_constraints_result) return this.equals((get_not_null_constraints_result)that); return false; @@ -171431,7 +170959,7 @@ public int compareTo(get_not_null_constraints_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -171441,7 +170969,7 @@ public int compareTo(get_not_null_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -171451,7 +170979,7 @@ public int compareTo(get_not_null_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -171842,8 +171370,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_default_constraints_args) return this.equals((get_default_constraints_args)that); return false; @@ -171886,7 +171412,7 @@ public int compareTo(get_default_constraints_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -172311,8 +171837,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_default_constraints_result) return this.equals((get_default_constraints_result)that); return false; @@ -172381,7 +171905,7 @@ public int compareTo(get_default_constraints_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -172391,7 +171915,7 @@ public int compareTo(get_default_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -172401,7 +171925,7 @@ public int compareTo(get_default_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -172792,8 +172316,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_check_constraints_args) return this.equals((get_check_constraints_args)that); return false; @@ -172836,7 +172358,7 @@ public int compareTo(get_check_constraints_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -173261,8 +172783,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_check_constraints_result) return this.equals((get_check_constraints_result)that); return false; @@ -173331,7 +172851,7 @@ public int compareTo(get_check_constraints_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -173341,7 +172861,7 @@ public int compareTo(get_check_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -173351,7 +172871,7 @@ public int compareTo(get_check_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -173742,8 +173262,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_table_constraints_args) return this.equals((get_all_table_constraints_args)that); return false; @@ -173786,7 +173304,7 @@ public int compareTo(get_all_table_constraints_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -174211,8 +173729,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_table_constraints_result) return this.equals((get_all_table_constraints_result)that); return false; @@ -174281,7 +173797,7 @@ public int compareTo(get_all_table_constraints_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -174291,7 +173807,7 @@ public int compareTo(get_all_table_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -174301,7 +173817,7 @@ public int compareTo(get_all_table_constraints_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -174692,8 +174208,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_table_column_statistics_args) return this.equals((update_table_column_statistics_args)that); return false; @@ -174736,7 +174250,7 @@ public int compareTo(update_table_column_statistics_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStats_obj()).compareTo(other.isSetStats_obj()); + lastComparison = java.lang.Boolean.compare(isSetStats_obj(), other.isSetStats_obj()); if (lastComparison != 0) { return lastComparison; } @@ -175262,8 +174776,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_table_column_statistics_result) return this.equals((update_table_column_statistics_result)that); return false; @@ -175356,7 +174868,7 @@ public int compareTo(update_table_column_statistics_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -175366,7 +174878,7 @@ public int compareTo(update_table_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -175376,7 +174888,7 @@ public int compareTo(update_table_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -175386,7 +174898,7 @@ public int compareTo(update_table_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -175396,7 +174908,7 @@ public int compareTo(update_table_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -175846,8 +175358,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_partition_column_statistics_args) return this.equals((update_partition_column_statistics_args)that); return false; @@ -175890,7 +175400,7 @@ public int compareTo(update_partition_column_statistics_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStats_obj()).compareTo(other.isSetStats_obj()); + lastComparison = java.lang.Boolean.compare(isSetStats_obj(), other.isSetStats_obj()); if (lastComparison != 0) { return lastComparison; } @@ -176416,8 +175926,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_partition_column_statistics_result) return this.equals((update_partition_column_statistics_result)that); return false; @@ -176510,7 +176018,7 @@ public int compareTo(update_partition_column_statistics_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -176520,7 +176028,7 @@ public int compareTo(update_partition_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -176530,7 +176038,7 @@ public int compareTo(update_partition_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -176540,7 +176048,7 @@ public int compareTo(update_partition_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -176550,7 +176058,7 @@ public int compareTo(update_partition_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -177000,8 +176508,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_table_column_statistics_req_args) return this.equals((update_table_column_statistics_req_args)that); return false; @@ -177044,7 +176550,7 @@ public int compareTo(update_table_column_statistics_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -177569,8 +177075,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_table_column_statistics_req_result) return this.equals((update_table_column_statistics_req_result)that); return false; @@ -177665,7 +177169,7 @@ public int compareTo(update_table_column_statistics_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -177675,7 +177179,7 @@ public int compareTo(update_table_column_statistics_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -177685,7 +177189,7 @@ public int compareTo(update_table_column_statistics_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -177695,7 +177199,7 @@ public int compareTo(update_table_column_statistics_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -177705,7 +177209,7 @@ public int compareTo(update_table_column_statistics_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -178162,8 +177666,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_partition_column_statistics_req_args) return this.equals((update_partition_column_statistics_req_args)that); return false; @@ -178206,7 +177708,7 @@ public int compareTo(update_partition_column_statistics_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -178731,8 +178233,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_partition_column_statistics_req_result) return this.equals((update_partition_column_statistics_req_result)that); return false; @@ -178827,7 +178327,7 @@ public int compareTo(update_partition_column_statistics_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -178837,7 +178337,7 @@ public int compareTo(update_partition_column_statistics_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -178847,7 +178347,7 @@ public int compareTo(update_partition_column_statistics_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -178857,7 +178357,7 @@ public int compareTo(update_partition_column_statistics_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -178867,7 +178367,7 @@ public int compareTo(update_partition_column_statistics_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -179424,8 +178924,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_column_statistics_args) return this.equals((get_table_column_statistics_args)that); return false; @@ -179494,7 +178992,7 @@ public int compareTo(get_table_column_statistics_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -179504,7 +179002,7 @@ public int compareTo(get_table_column_statistics_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -179514,7 +179012,7 @@ public int compareTo(get_table_column_statistics_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCol_name()).compareTo(other.isSetCol_name()); + lastComparison = java.lang.Boolean.compare(isSetCol_name(), other.isSetCol_name()); if (lastComparison != 0) { return lastComparison; } @@ -180096,8 +179594,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_column_statistics_result) return this.equals((get_table_column_statistics_result)that); return false; @@ -180192,7 +179688,7 @@ public int compareTo(get_table_column_statistics_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -180202,7 +179698,7 @@ public int compareTo(get_table_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -180212,7 +179708,7 @@ public int compareTo(get_table_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -180222,7 +179718,7 @@ public int compareTo(get_table_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -180232,7 +179728,7 @@ public int compareTo(get_table_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -180839,8 +180335,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_column_statistics_args) return this.equals((get_partition_column_statistics_args)that); return false; @@ -180922,7 +180416,7 @@ public int compareTo(get_partition_column_statistics_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -180932,7 +180426,7 @@ public int compareTo(get_partition_column_statistics_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -180942,7 +180436,7 @@ public int compareTo(get_partition_column_statistics_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_name()).compareTo(other.isSetPart_name()); + lastComparison = java.lang.Boolean.compare(isSetPart_name(), other.isSetPart_name()); if (lastComparison != 0) { return lastComparison; } @@ -180952,7 +180446,7 @@ public int compareTo(get_partition_column_statistics_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCol_name()).compareTo(other.isSetCol_name()); + lastComparison = java.lang.Boolean.compare(isSetCol_name(), other.isSetCol_name()); if (lastComparison != 0) { return lastComparison; } @@ -181565,8 +181059,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partition_column_statistics_result) return this.equals((get_partition_column_statistics_result)that); return false; @@ -181661,7 +181153,7 @@ public int compareTo(get_partition_column_statistics_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -181671,7 +181163,7 @@ public int compareTo(get_partition_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -181681,7 +181173,7 @@ public int compareTo(get_partition_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -181691,7 +181183,7 @@ public int compareTo(get_partition_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -181701,7 +181193,7 @@ public int compareTo(get_partition_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -182158,8 +181650,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_statistics_req_args) return this.equals((get_table_statistics_req_args)that); return false; @@ -182202,7 +181692,7 @@ public int compareTo(get_table_statistics_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -182627,8 +182117,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_table_statistics_req_result) return this.equals((get_table_statistics_req_result)that); return false; @@ -182697,7 +182185,7 @@ public int compareTo(get_table_statistics_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -182707,7 +182195,7 @@ public int compareTo(get_table_statistics_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -182717,7 +182205,7 @@ public int compareTo(get_table_statistics_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -183108,8 +182596,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_statistics_req_args) return this.equals((get_partitions_statistics_req_args)that); return false; @@ -183152,7 +182638,7 @@ public int compareTo(get_partitions_statistics_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -183577,8 +183063,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_statistics_req_result) return this.equals((get_partitions_statistics_req_result)that); return false; @@ -183647,7 +183131,7 @@ public int compareTo(get_partitions_statistics_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -183657,7 +183141,7 @@ public int compareTo(get_partitions_statistics_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -183667,7 +183151,7 @@ public int compareTo(get_partitions_statistics_req_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -184058,8 +183542,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_aggr_stats_for_args) return this.equals((get_aggr_stats_for_args)that); return false; @@ -184102,7 +183584,7 @@ public int compareTo(get_aggr_stats_for_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -184527,8 +184009,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_aggr_stats_for_result) return this.equals((get_aggr_stats_for_result)that); return false; @@ -184597,7 +184077,7 @@ public int compareTo(get_aggr_stats_for_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -184607,7 +184087,7 @@ public int compareTo(get_aggr_stats_for_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -184617,7 +184097,7 @@ public int compareTo(get_aggr_stats_for_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -185008,8 +184488,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof set_aggr_stats_for_args) return this.equals((set_aggr_stats_for_args)that); return false; @@ -185052,7 +184530,7 @@ public int compareTo(set_aggr_stats_for_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -185578,8 +185056,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof set_aggr_stats_for_result) return this.equals((set_aggr_stats_for_result)that); return false; @@ -185672,7 +185148,7 @@ public int compareTo(set_aggr_stats_for_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -185682,7 +185158,7 @@ public int compareTo(set_aggr_stats_for_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -185692,7 +185168,7 @@ public int compareTo(set_aggr_stats_for_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -185702,7 +185178,7 @@ public int compareTo(set_aggr_stats_for_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -185712,7 +185188,7 @@ public int compareTo(set_aggr_stats_for_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -186362,8 +185838,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof delete_partition_column_statistics_args) return this.equals((delete_partition_column_statistics_args)that); return false; @@ -186458,7 +185932,7 @@ public int compareTo(delete_partition_column_statistics_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -186468,7 +185942,7 @@ public int compareTo(delete_partition_column_statistics_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -186478,7 +185952,7 @@ public int compareTo(delete_partition_column_statistics_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPart_name()).compareTo(other.isSetPart_name()); + lastComparison = java.lang.Boolean.compare(isSetPart_name(), other.isSetPart_name()); if (lastComparison != 0) { return lastComparison; } @@ -186488,7 +185962,7 @@ public int compareTo(delete_partition_column_statistics_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCol_name()).compareTo(other.isSetCol_name()); + lastComparison = java.lang.Boolean.compare(isSetCol_name(), other.isSetCol_name()); if (lastComparison != 0) { return lastComparison; } @@ -186498,7 +185972,7 @@ public int compareTo(delete_partition_column_statistics_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEngine()).compareTo(other.isSetEngine()); + lastComparison = java.lang.Boolean.compare(isSetEngine(), other.isSetEngine()); if (lastComparison != 0) { return lastComparison; } @@ -187143,8 +186617,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof delete_partition_column_statistics_result) return this.equals((delete_partition_column_statistics_result)that); return false; @@ -187237,7 +186709,7 @@ public int compareTo(delete_partition_column_statistics_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -187247,7 +186719,7 @@ public int compareTo(delete_partition_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -187257,7 +186729,7 @@ public int compareTo(delete_partition_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -187267,7 +186739,7 @@ public int compareTo(delete_partition_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -187277,7 +186749,7 @@ public int compareTo(delete_partition_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -187877,8 +187349,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof delete_table_column_statistics_args) return this.equals((delete_table_column_statistics_args)that); return false; @@ -187960,7 +187430,7 @@ public int compareTo(delete_table_column_statistics_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -187970,7 +187440,7 @@ public int compareTo(delete_table_column_statistics_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } @@ -187980,7 +187450,7 @@ public int compareTo(delete_table_column_statistics_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCol_name()).compareTo(other.isSetCol_name()); + lastComparison = java.lang.Boolean.compare(isSetCol_name(), other.isSetCol_name()); if (lastComparison != 0) { return lastComparison; } @@ -187990,7 +187460,7 @@ public int compareTo(delete_table_column_statistics_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEngine()).compareTo(other.isSetEngine()); + lastComparison = java.lang.Boolean.compare(isSetEngine(), other.isSetEngine()); if (lastComparison != 0) { return lastComparison; } @@ -188604,8 +188074,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof delete_table_column_statistics_result) return this.equals((delete_table_column_statistics_result)that); return false; @@ -188698,7 +188166,7 @@ public int compareTo(delete_table_column_statistics_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -188708,7 +188176,7 @@ public int compareTo(delete_table_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -188718,7 +188186,7 @@ public int compareTo(delete_table_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -188728,7 +188196,7 @@ public int compareTo(delete_table_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -188738,7 +188206,7 @@ public int compareTo(delete_table_column_statistics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -189188,8 +188656,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_function_args) return this.equals((create_function_args)that); return false; @@ -189232,7 +188698,7 @@ public int compareTo(create_function_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFunc()).compareTo(other.isSetFunc()); + lastComparison = java.lang.Boolean.compare(isSetFunc(), other.isSetFunc()); if (lastComparison != 0) { return lastComparison; } @@ -189707,8 +189173,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_function_result) return this.equals((create_function_result)that); return false; @@ -189790,7 +189254,7 @@ public int compareTo(create_function_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -189800,7 +189264,7 @@ public int compareTo(create_function_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -189810,7 +189274,7 @@ public int compareTo(create_function_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -189820,7 +189284,7 @@ public int compareTo(create_function_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -190291,8 +189755,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_function_args) return this.equals((drop_function_args)that); return false; @@ -190348,7 +189810,7 @@ public int compareTo(drop_function_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -190358,7 +189820,7 @@ public int compareTo(drop_function_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFuncName()).compareTo(other.isSetFuncName()); + lastComparison = java.lang.Boolean.compare(isSetFuncName(), other.isSetFuncName()); if (lastComparison != 0) { return lastComparison; } @@ -190759,8 +190221,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_function_result) return this.equals((drop_function_result)that); return false; @@ -190816,7 +190276,7 @@ public int compareTo(drop_function_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -190826,7 +190286,7 @@ public int compareTo(drop_function_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -191281,8 +190741,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_function_args) return this.equals((alter_function_args)that); return false; @@ -191351,7 +190809,7 @@ public int compareTo(alter_function_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -191361,7 +190819,7 @@ public int compareTo(alter_function_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFuncName()).compareTo(other.isSetFuncName()); + lastComparison = java.lang.Boolean.compare(isSetFuncName(), other.isSetFuncName()); if (lastComparison != 0) { return lastComparison; } @@ -191371,7 +190829,7 @@ public int compareTo(alter_function_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNewFunc()).compareTo(other.isSetNewFunc()); + lastComparison = java.lang.Boolean.compare(isSetNewFunc(), other.isSetNewFunc()); if (lastComparison != 0) { return lastComparison; } @@ -191808,8 +191266,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_function_result) return this.equals((alter_function_result)that); return false; @@ -191865,7 +191321,7 @@ public int compareTo(alter_function_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -191875,7 +191331,7 @@ public int compareTo(alter_function_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -192280,8 +191736,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_functions_args) return this.equals((get_functions_args)that); return false; @@ -192337,7 +191791,7 @@ public int compareTo(get_functions_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -192347,7 +191801,7 @@ public int compareTo(get_functions_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPattern()).compareTo(other.isSetPattern()); + lastComparison = java.lang.Boolean.compare(isSetPattern(), other.isSetPattern()); if (lastComparison != 0) { return lastComparison; } @@ -192766,8 +192220,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_functions_result) return this.equals((get_functions_result)that); return false; @@ -192823,7 +192275,7 @@ public int compareTo(get_functions_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -192833,7 +192285,7 @@ public int compareTo(get_functions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -193024,7 +192476,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_functions_result java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1901 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1901 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1901.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1902; for (int _i1903 = 0; _i1903 < _list1901.size; ++_i1903) @@ -193268,8 +192720,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_function_args) return this.equals((get_function_args)that); return false; @@ -193325,7 +192775,7 @@ public int compareTo(get_function_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -193335,7 +192785,7 @@ public int compareTo(get_function_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFuncName()).compareTo(other.isSetFuncName()); + lastComparison = java.lang.Boolean.compare(isSetFuncName(), other.isSetFuncName()); if (lastComparison != 0) { return lastComparison; } @@ -193786,8 +193236,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_function_result) return this.equals((get_function_result)that); return false; @@ -193856,7 +193304,7 @@ public int compareTo(get_function_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -193866,7 +193314,7 @@ public int compareTo(get_function_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -193876,7 +193324,7 @@ public int compareTo(get_function_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -194211,8 +193659,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_functions_args) return this.equals((get_all_functions_args)that); return false; @@ -194569,8 +194015,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_functions_result) return this.equals((get_all_functions_result)that); return false; @@ -194626,7 +194070,7 @@ public int compareTo(get_all_functions_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -194636,7 +194080,7 @@ public int compareTo(get_all_functions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -194994,8 +194438,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_role_args) return this.equals((create_role_args)that); return false; @@ -195038,7 +194480,7 @@ public int compareTo(create_role_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRole()).compareTo(other.isSetRole()); + lastComparison = java.lang.Boolean.compare(isSetRole(), other.isSetRole()); if (lastComparison != 0) { return lastComparison; } @@ -195414,8 +194856,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_role_result) return this.equals((create_role_result)that); return false; @@ -195469,7 +194909,7 @@ public int compareTo(create_role_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -195479,7 +194919,7 @@ public int compareTo(create_role_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -195830,8 +195270,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_role_args) return this.equals((drop_role_args)that); return false; @@ -195874,7 +195312,7 @@ public int compareTo(drop_role_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRole_name()).compareTo(other.isSetRole_name()); + lastComparison = java.lang.Boolean.compare(isSetRole_name(), other.isSetRole_name()); if (lastComparison != 0) { return lastComparison; } @@ -196245,8 +195683,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_role_result) return this.equals((drop_role_result)that); return false; @@ -196300,7 +195736,7 @@ public int compareTo(drop_role_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -196310,7 +195746,7 @@ public int compareTo(drop_role_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -196605,8 +196041,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_role_names_args) return this.equals((get_role_names_args)that); return false; @@ -196981,8 +196415,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_role_names_result) return this.equals((get_role_names_result)that); return false; @@ -197038,7 +196470,7 @@ public int compareTo(get_role_names_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -197048,7 +196480,7 @@ public int compareTo(get_role_names_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -197239,7 +196671,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_role_names_resul java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1909 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1909 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1909.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1910; for (int _i1911 = 0; _i1911 < _list1909.size; ++_i1911) @@ -197708,8 +197140,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof grant_role_args) return this.equals((grant_role_args)that); return false; @@ -197815,7 +197245,7 @@ public int compareTo(grant_role_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRole_name()).compareTo(other.isSetRole_name()); + lastComparison = java.lang.Boolean.compare(isSetRole_name(), other.isSetRole_name()); if (lastComparison != 0) { return lastComparison; } @@ -197825,7 +197255,7 @@ public int compareTo(grant_role_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipal_name()).compareTo(other.isSetPrincipal_name()); + lastComparison = java.lang.Boolean.compare(isSetPrincipal_name(), other.isSetPrincipal_name()); if (lastComparison != 0) { return lastComparison; } @@ -197835,7 +197265,7 @@ public int compareTo(grant_role_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipal_type()).compareTo(other.isSetPrincipal_type()); + lastComparison = java.lang.Boolean.compare(isSetPrincipal_type(), other.isSetPrincipal_type()); if (lastComparison != 0) { return lastComparison; } @@ -197845,7 +197275,7 @@ public int compareTo(grant_role_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantor()).compareTo(other.isSetGrantor()); + lastComparison = java.lang.Boolean.compare(isSetGrantor(), other.isSetGrantor()); if (lastComparison != 0) { return lastComparison; } @@ -197855,7 +197285,7 @@ public int compareTo(grant_role_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantorType()).compareTo(other.isSetGrantorType()); + lastComparison = java.lang.Boolean.compare(isSetGrantorType(), other.isSetGrantorType()); if (lastComparison != 0) { return lastComparison; } @@ -197865,7 +197295,7 @@ public int compareTo(grant_role_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrant_option()).compareTo(other.isSetGrant_option()); + lastComparison = java.lang.Boolean.compare(isSetGrant_option(), other.isSetGrant_option()); if (lastComparison != 0) { return lastComparison; } @@ -198387,8 +197817,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof grant_role_result) return this.equals((grant_role_result)that); return false; @@ -198442,7 +197870,7 @@ public int compareTo(grant_role_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -198452,7 +197880,7 @@ public int compareTo(grant_role_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -198915,8 +198343,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof revoke_role_args) return this.equals((revoke_role_args)that); return false; @@ -198985,7 +198411,7 @@ public int compareTo(revoke_role_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRole_name()).compareTo(other.isSetRole_name()); + lastComparison = java.lang.Boolean.compare(isSetRole_name(), other.isSetRole_name()); if (lastComparison != 0) { return lastComparison; } @@ -198995,7 +198421,7 @@ public int compareTo(revoke_role_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipal_name()).compareTo(other.isSetPrincipal_name()); + lastComparison = java.lang.Boolean.compare(isSetPrincipal_name(), other.isSetPrincipal_name()); if (lastComparison != 0) { return lastComparison; } @@ -199005,7 +198431,7 @@ public int compareTo(revoke_role_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipal_type()).compareTo(other.isSetPrincipal_type()); + lastComparison = java.lang.Boolean.compare(isSetPrincipal_type(), other.isSetPrincipal_type()); if (lastComparison != 0) { return lastComparison; } @@ -199438,8 +198864,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof revoke_role_result) return this.equals((revoke_role_result)that); return false; @@ -199493,7 +198917,7 @@ public int compareTo(revoke_role_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -199503,7 +198927,7 @@ public int compareTo(revoke_role_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -199916,8 +199340,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof list_roles_args) return this.equals((list_roles_args)that); return false; @@ -199973,7 +199395,7 @@ public int compareTo(list_roles_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPrincipal_name()).compareTo(other.isSetPrincipal_name()); + lastComparison = java.lang.Boolean.compare(isSetPrincipal_name(), other.isSetPrincipal_name()); if (lastComparison != 0) { return lastComparison; } @@ -199983,7 +199405,7 @@ public int compareTo(list_roles_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipal_type()).compareTo(other.isSetPrincipal_type()); + lastComparison = java.lang.Boolean.compare(isSetPrincipal_type(), other.isSetPrincipal_type()); if (lastComparison != 0) { return lastComparison; } @@ -200405,8 +199827,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof list_roles_result) return this.equals((list_roles_result)that); return false; @@ -200462,7 +199882,7 @@ public int compareTo(list_roles_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -200472,7 +199892,7 @@ public int compareTo(list_roles_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -200664,7 +200084,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, list_roles_result st java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1917 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1917 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1917.size); @org.apache.thrift.annotation.Nullable Role _elem1918; for (int _i1919 = 0; _i1919 < _list1917.size; ++_i1919) @@ -200859,8 +200279,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof grant_revoke_role_args) return this.equals((grant_revoke_role_args)that); return false; @@ -200903,7 +200321,7 @@ public int compareTo(grant_revoke_role_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -201278,8 +200696,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof grant_revoke_role_result) return this.equals((grant_revoke_role_result)that); return false; @@ -201335,7 +200751,7 @@ public int compareTo(grant_revoke_role_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -201345,7 +200761,7 @@ public int compareTo(grant_revoke_role_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -201703,8 +201119,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_principals_in_role_args) return this.equals((get_principals_in_role_args)that); return false; @@ -201747,7 +201161,7 @@ public int compareTo(get_principals_in_role_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -202122,8 +201536,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_principals_in_role_result) return this.equals((get_principals_in_role_result)that); return false; @@ -202179,7 +201591,7 @@ public int compareTo(get_principals_in_role_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -202189,7 +201601,7 @@ public int compareTo(get_principals_in_role_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -202547,8 +201959,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_role_grants_for_principal_args) return this.equals((get_role_grants_for_principal_args)that); return false; @@ -202591,7 +202001,7 @@ public int compareTo(get_role_grants_for_principal_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -202966,8 +202376,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_role_grants_for_principal_result) return this.equals((get_role_grants_for_principal_result)that); return false; @@ -203023,7 +202431,7 @@ public int compareTo(get_role_grants_for_principal_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -203033,7 +202441,7 @@ public int compareTo(get_role_grants_for_principal_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -203509,8 +202917,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_privilege_set_args) return this.equals((get_privilege_set_args)that); return false; @@ -203579,7 +202985,7 @@ public int compareTo(get_privilege_set_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetHiveObject()).compareTo(other.isSetHiveObject()); + lastComparison = java.lang.Boolean.compare(isSetHiveObject(), other.isSetHiveObject()); if (lastComparison != 0) { return lastComparison; } @@ -203589,7 +202995,7 @@ public int compareTo(get_privilege_set_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUser_name()).compareTo(other.isSetUser_name()); + lastComparison = java.lang.Boolean.compare(isSetUser_name(), other.isSetUser_name()); if (lastComparison != 0) { return lastComparison; } @@ -203599,7 +203005,7 @@ public int compareTo(get_privilege_set_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGroup_names()).compareTo(other.isSetGroup_names()); + lastComparison = java.lang.Boolean.compare(isSetGroup_names(), other.isSetGroup_names()); if (lastComparison != 0) { return lastComparison; } @@ -203829,7 +203235,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_privilege_set_ar } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1925 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1925 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.group_names = new java.util.ArrayList(_list1925.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1926; for (int _i1927 = 0; _i1927 < _list1925.size; ++_i1927) @@ -204068,8 +203474,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_privilege_set_result) return this.equals((get_privilege_set_result)that); return false; @@ -204125,7 +203529,7 @@ public int compareTo(get_privilege_set_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -204135,7 +203539,7 @@ public int compareTo(get_privilege_set_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -204605,8 +204009,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof list_privileges_args) return this.equals((list_privileges_args)that); return false; @@ -204675,7 +204077,7 @@ public int compareTo(list_privileges_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPrincipal_name()).compareTo(other.isSetPrincipal_name()); + lastComparison = java.lang.Boolean.compare(isSetPrincipal_name(), other.isSetPrincipal_name()); if (lastComparison != 0) { return lastComparison; } @@ -204685,7 +204087,7 @@ public int compareTo(list_privileges_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPrincipal_type()).compareTo(other.isSetPrincipal_type()); + lastComparison = java.lang.Boolean.compare(isSetPrincipal_type(), other.isSetPrincipal_type()); if (lastComparison != 0) { return lastComparison; } @@ -204695,7 +204097,7 @@ public int compareTo(list_privileges_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHiveObject()).compareTo(other.isSetHiveObject()); + lastComparison = java.lang.Boolean.compare(isSetHiveObject(), other.isSetHiveObject()); if (lastComparison != 0) { return lastComparison; } @@ -205153,8 +204555,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof list_privileges_result) return this.equals((list_privileges_result)that); return false; @@ -205210,7 +204610,7 @@ public int compareTo(list_privileges_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -205220,7 +204620,7 @@ public int compareTo(list_privileges_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -205412,7 +204812,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, list_privileges_resu java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1933 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1933 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1933.size); @org.apache.thrift.annotation.Nullable HiveObjectPrivilege _elem1934; for (int _i1935 = 0; _i1935 < _list1933.size; ++_i1935) @@ -205607,8 +205007,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof grant_privileges_args) return this.equals((grant_privileges_args)that); return false; @@ -205651,7 +205049,7 @@ public int compareTo(grant_privileges_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPrivileges()).compareTo(other.isSetPrivileges()); + lastComparison = java.lang.Boolean.compare(isSetPrivileges(), other.isSetPrivileges()); if (lastComparison != 0) { return lastComparison; } @@ -206027,8 +205425,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof grant_privileges_result) return this.equals((grant_privileges_result)that); return false; @@ -206082,7 +205478,7 @@ public int compareTo(grant_privileges_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -206092,7 +205488,7 @@ public int compareTo(grant_privileges_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -206443,8 +205839,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof revoke_privileges_args) return this.equals((revoke_privileges_args)that); return false; @@ -206487,7 +205881,7 @@ public int compareTo(revoke_privileges_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPrivileges()).compareTo(other.isSetPrivileges()); + lastComparison = java.lang.Boolean.compare(isSetPrivileges(), other.isSetPrivileges()); if (lastComparison != 0) { return lastComparison; } @@ -206863,8 +206257,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof revoke_privileges_result) return this.equals((revoke_privileges_result)that); return false; @@ -206918,7 +206310,7 @@ public int compareTo(revoke_privileges_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -206928,7 +206320,7 @@ public int compareTo(revoke_privileges_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -207279,8 +206671,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof grant_revoke_privileges_args) return this.equals((grant_revoke_privileges_args)that); return false; @@ -207323,7 +206713,7 @@ public int compareTo(grant_revoke_privileges_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -207698,8 +207088,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof grant_revoke_privileges_result) return this.equals((grant_revoke_privileges_result)that); return false; @@ -207755,7 +207143,7 @@ public int compareTo(grant_revoke_privileges_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -207765,7 +207153,7 @@ public int compareTo(grant_revoke_privileges_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -208223,8 +207611,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof refresh_privileges_args) return this.equals((refresh_privileges_args)that); return false; @@ -208293,7 +207679,7 @@ public int compareTo(refresh_privileges_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetObjToRefresh()).compareTo(other.isSetObjToRefresh()); + lastComparison = java.lang.Boolean.compare(isSetObjToRefresh(), other.isSetObjToRefresh()); if (lastComparison != 0) { return lastComparison; } @@ -208303,7 +207689,7 @@ public int compareTo(refresh_privileges_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAuthorizer()).compareTo(other.isSetAuthorizer()); + lastComparison = java.lang.Boolean.compare(isSetAuthorizer(), other.isSetAuthorizer()); if (lastComparison != 0) { return lastComparison; } @@ -208313,7 +207699,7 @@ public int compareTo(refresh_privileges_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGrantRequest()).compareTo(other.isSetGrantRequest()); + lastComparison = java.lang.Boolean.compare(isSetGrantRequest(), other.isSetGrantRequest()); if (lastComparison != 0) { return lastComparison; } @@ -208755,8 +208141,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof refresh_privileges_result) return this.equals((refresh_privileges_result)that); return false; @@ -208812,7 +208196,7 @@ public int compareTo(refresh_privileges_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -208822,7 +208206,7 @@ public int compareTo(refresh_privileges_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -209248,8 +208632,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof set_ugi_args) return this.equals((set_ugi_args)that); return false; @@ -209305,7 +208687,7 @@ public int compareTo(set_ugi_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetUser_name()).compareTo(other.isSetUser_name()); + lastComparison = java.lang.Boolean.compare(isSetUser_name(), other.isSetUser_name()); if (lastComparison != 0) { return lastComparison; } @@ -209315,7 +208697,7 @@ public int compareTo(set_ugi_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetGroup_names()).compareTo(other.isSetGroup_names()); + lastComparison = java.lang.Boolean.compare(isSetGroup_names(), other.isSetGroup_names()); if (lastComparison != 0) { return lastComparison; } @@ -209509,7 +208891,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, set_ugi_args struct) } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1941 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1941 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.group_names = new java.util.ArrayList(_list1941.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1942; for (int _i1943 = 0; _i1943 < _list1941.size; ++_i1943) @@ -209766,8 +209148,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof set_ugi_result) return this.equals((set_ugi_result)that); return false; @@ -209823,7 +209203,7 @@ public int compareTo(set_ugi_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -209833,7 +209213,7 @@ public int compareTo(set_ugi_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -210024,7 +209404,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, set_ugi_result struc java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1949 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1949 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1949.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1950; for (int _i1951 = 0; _i1951 < _list1949.size; ++_i1951) @@ -210268,8 +209648,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_delegation_token_args) return this.equals((get_delegation_token_args)that); return false; @@ -210325,7 +209703,7 @@ public int compareTo(get_delegation_token_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetToken_owner()).compareTo(other.isSetToken_owner()); + lastComparison = java.lang.Boolean.compare(isSetToken_owner(), other.isSetToken_owner()); if (lastComparison != 0) { return lastComparison; } @@ -210335,7 +209713,7 @@ public int compareTo(get_delegation_token_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetRenewer_kerberos_principal_name()).compareTo(other.isSetRenewer_kerberos_principal_name()); + lastComparison = java.lang.Boolean.compare(isSetRenewer_kerberos_principal_name(), other.isSetRenewer_kerberos_principal_name()); if (lastComparison != 0) { return lastComparison; } @@ -210736,8 +210114,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_delegation_token_result) return this.equals((get_delegation_token_result)that); return false; @@ -210793,7 +210169,7 @@ public int compareTo(get_delegation_token_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -210803,7 +210179,7 @@ public int compareTo(get_delegation_token_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -211156,8 +210532,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof renew_delegation_token_args) return this.equals((renew_delegation_token_args)that); return false; @@ -211200,7 +210574,7 @@ public int compareTo(renew_delegation_token_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetToken_str_form()).compareTo(other.isSetToken_str_form()); + lastComparison = java.lang.Boolean.compare(isSetToken_str_form(), other.isSetToken_str_form()); if (lastComparison != 0) { return lastComparison; } @@ -211571,8 +210945,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof renew_delegation_token_result) return this.equals((renew_delegation_token_result)that); return false; @@ -211626,7 +210998,7 @@ public int compareTo(renew_delegation_token_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -211636,7 +211008,7 @@ public int compareTo(renew_delegation_token_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -211987,8 +211359,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof cancel_delegation_token_args) return this.equals((cancel_delegation_token_args)that); return false; @@ -212031,7 +211401,7 @@ public int compareTo(cancel_delegation_token_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetToken_str_form()).compareTo(other.isSetToken_str_form()); + lastComparison = java.lang.Boolean.compare(isSetToken_str_form(), other.isSetToken_str_form()); if (lastComparison != 0) { return lastComparison; } @@ -212351,8 +211721,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof cancel_delegation_token_result) return this.equals((cancel_delegation_token_result)that); return false; @@ -212395,7 +211763,7 @@ public int compareTo(cancel_delegation_token_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -212767,8 +212135,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_token_args) return this.equals((add_token_args)that); return false; @@ -212824,7 +212190,7 @@ public int compareTo(add_token_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetToken_identifier()).compareTo(other.isSetToken_identifier()); + lastComparison = java.lang.Boolean.compare(isSetToken_identifier(), other.isSetToken_identifier()); if (lastComparison != 0) { return lastComparison; } @@ -212834,7 +212200,7 @@ public int compareTo(add_token_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDelegation_token()).compareTo(other.isSetDelegation_token()); + lastComparison = java.lang.Boolean.compare(isSetDelegation_token(), other.isSetDelegation_token()); if (lastComparison != 0) { return lastComparison; } @@ -213186,8 +212552,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_token_result) return this.equals((add_token_result)that); return false; @@ -213228,7 +212592,7 @@ public int compareTo(add_token_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -213546,8 +212910,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof remove_token_args) return this.equals((remove_token_args)that); return false; @@ -213590,7 +212952,7 @@ public int compareTo(remove_token_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetToken_identifier()).compareTo(other.isSetToken_identifier()); + lastComparison = java.lang.Boolean.compare(isSetToken_identifier(), other.isSetToken_identifier()); if (lastComparison != 0) { return lastComparison; } @@ -213911,8 +213273,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof remove_token_result) return this.equals((remove_token_result)that); return false; @@ -213953,7 +213313,7 @@ public int compareTo(remove_token_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -214271,8 +213631,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_token_args) return this.equals((get_token_args)that); return false; @@ -214315,7 +213673,7 @@ public int compareTo(get_token_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetToken_identifier()).compareTo(other.isSetToken_identifier()); + lastComparison = java.lang.Boolean.compare(isSetToken_identifier(), other.isSetToken_identifier()); if (lastComparison != 0) { return lastComparison; } @@ -214635,8 +213993,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_token_result) return this.equals((get_token_result)that); return false; @@ -214679,7 +214035,7 @@ public int compareTo(get_token_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -214943,8 +214299,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_token_identifiers_args) return this.equals((get_all_token_identifiers_args)that); return false; @@ -215269,8 +214623,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_token_identifiers_result) return this.equals((get_all_token_identifiers_result)that); return false; @@ -215313,7 +214665,7 @@ public int compareTo(get_all_token_identifiers_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -215476,7 +214828,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_all_token_identi java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1957 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1957 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1957.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1958; for (int _i1959 = 0; _i1959 < _list1957.size; ++_i1959) @@ -215665,8 +215017,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_master_key_args) return this.equals((add_master_key_args)that); return false; @@ -215709,7 +215059,7 @@ public int compareTo(add_master_key_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetKey()).compareTo(other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } @@ -216080,8 +215430,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_master_key_result) return this.equals((add_master_key_result)that); return false; @@ -216135,7 +215483,7 @@ public int compareTo(add_master_key_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -216145,7 +215493,7 @@ public int compareTo(add_master_key_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -216547,8 +215895,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_master_key_args) return this.equals((update_master_key_args)that); return false; @@ -216602,7 +215948,7 @@ public int compareTo(update_master_key_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSeq_number()).compareTo(other.isSetSeq_number()); + lastComparison = java.lang.Boolean.compare(isSetSeq_number(), other.isSetSeq_number()); if (lastComparison != 0) { return lastComparison; } @@ -216612,7 +215958,7 @@ public int compareTo(update_master_key_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetKey()).compareTo(other.isSetKey()); + lastComparison = java.lang.Boolean.compare(isSetKey(), other.isSetKey()); if (lastComparison != 0) { return lastComparison; } @@ -217009,8 +216355,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_master_key_result) return this.equals((update_master_key_result)that); return false; @@ -217066,7 +216410,7 @@ public int compareTo(update_master_key_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -217076,7 +216420,7 @@ public int compareTo(update_master_key_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -217432,8 +216776,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof remove_master_key_args) return this.equals((remove_master_key_args)that); return false; @@ -217474,7 +216816,7 @@ public int compareTo(remove_master_key_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetKey_seq()).compareTo(other.isSetKey_seq()); + lastComparison = java.lang.Boolean.compare(isSetKey_seq(), other.isSetKey_seq()); if (lastComparison != 0) { return lastComparison; } @@ -217791,8 +217133,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof remove_master_key_result) return this.equals((remove_master_key_result)that); return false; @@ -217833,7 +217173,7 @@ public int compareTo(remove_master_key_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -218095,8 +217435,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_master_keys_args) return this.equals((get_master_keys_args)that); return false; @@ -218421,8 +217759,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_master_keys_result) return this.equals((get_master_keys_result)that); return false; @@ -218465,7 +217801,7 @@ public int compareTo(get_master_keys_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -218628,7 +217964,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_master_keys_resu java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1965 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1965 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1965.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1966; for (int _i1967 = 0; _i1967 < _list1965.size; ++_i1967) @@ -218761,8 +218097,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_open_txns_args) return this.equals((get_open_txns_args)that); return false; @@ -219069,8 +218403,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_open_txns_result) return this.equals((get_open_txns_result)that); return false; @@ -219113,7 +218445,7 @@ public int compareTo(get_open_txns_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -219382,8 +218714,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_open_txns_info_args) return this.equals((get_open_txns_info_args)that); return false; @@ -219690,8 +219020,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_open_txns_info_result) return this.equals((get_open_txns_info_result)that); return false; @@ -219734,7 +219062,7 @@ public int compareTo(get_open_txns_info_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -220059,8 +219387,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof open_txns_args) return this.equals((open_txns_args)that); return false; @@ -220103,7 +219429,7 @@ public int compareTo(open_txns_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -220428,8 +219754,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof open_txns_result) return this.equals((open_txns_result)that); return false; @@ -220472,7 +219796,7 @@ public int compareTo(open_txns_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -220797,8 +220121,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof abort_txn_args) return this.equals((abort_txn_args)that); return false; @@ -220841,7 +220163,7 @@ public int compareTo(abort_txn_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -221166,8 +220488,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof abort_txn_result) return this.equals((abort_txn_result)that); return false; @@ -221210,7 +220530,7 @@ public int compareTo(abort_txn_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -221532,8 +220852,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof abort_txns_args) return this.equals((abort_txns_args)that); return false; @@ -221576,7 +220894,7 @@ public int compareTo(abort_txns_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -221901,8 +221219,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof abort_txns_result) return this.equals((abort_txns_result)that); return false; @@ -221945,7 +221261,7 @@ public int compareTo(abort_txns_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -222267,8 +221583,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof commit_txn_args) return this.equals((commit_txn_args)that); return false; @@ -222311,7 +221625,7 @@ public int compareTo(commit_txn_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -222686,8 +222000,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof commit_txn_result) return this.equals((commit_txn_result)that); return false; @@ -222743,7 +222055,7 @@ public int compareTo(commit_txn_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -222753,7 +222065,7 @@ public int compareTo(commit_txn_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -223109,8 +222421,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_latest_txnid_in_conflict_args) return this.equals((get_latest_txnid_in_conflict_args)that); return false; @@ -223151,7 +222461,7 @@ public int compareTo(get_latest_txnid_in_conflict_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTxnId()).compareTo(other.isSetTxnId()); + lastComparison = java.lang.Boolean.compare(isSetTxnId(), other.isSetTxnId()); if (lastComparison != 0) { return lastComparison; } @@ -223518,8 +222828,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_latest_txnid_in_conflict_result) return this.equals((get_latest_txnid_in_conflict_result)that); return false; @@ -223573,7 +222881,7 @@ public int compareTo(get_latest_txnid_in_conflict_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -223583,7 +222891,7 @@ public int compareTo(get_latest_txnid_in_conflict_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -223934,8 +223242,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof repl_tbl_writeid_state_args) return this.equals((repl_tbl_writeid_state_args)that); return false; @@ -223978,7 +223284,7 @@ public int compareTo(repl_tbl_writeid_state_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -224247,8 +223553,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof repl_tbl_writeid_state_result) return this.equals((repl_tbl_writeid_state_result)that); return false; @@ -224555,8 +223859,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_valid_write_ids_args) return this.equals((get_valid_write_ids_args)that); return false; @@ -224599,7 +223901,7 @@ public int compareTo(get_valid_write_ids_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -225024,8 +224326,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_valid_write_ids_result) return this.equals((get_valid_write_ids_result)that); return false; @@ -225094,7 +224394,7 @@ public int compareTo(get_valid_write_ids_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -225104,7 +224404,7 @@ public int compareTo(get_valid_write_ids_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -225114,7 +224414,7 @@ public int compareTo(get_valid_write_ids_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -225505,8 +224805,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof allocate_table_write_ids_args) return this.equals((allocate_table_write_ids_args)that); return false; @@ -225549,7 +224847,7 @@ public int compareTo(allocate_table_write_ids_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -226024,8 +225322,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof allocate_table_write_ids_result) return this.equals((allocate_table_write_ids_result)that); return false; @@ -226107,7 +225403,7 @@ public int compareTo(allocate_table_write_ids_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -226117,7 +225413,7 @@ public int compareTo(allocate_table_write_ids_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -226127,7 +225423,7 @@ public int compareTo(allocate_table_write_ids_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -226137,7 +225433,7 @@ public int compareTo(allocate_table_write_ids_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -226561,8 +225857,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_max_allocated_table_write_id_args) return this.equals((get_max_allocated_table_write_id_args)that); return false; @@ -226605,7 +225899,7 @@ public int compareTo(get_max_allocated_table_write_id_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -226980,8 +226274,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_max_allocated_table_write_id_result) return this.equals((get_max_allocated_table_write_id_result)that); return false; @@ -227037,7 +226329,7 @@ public int compareTo(get_max_allocated_table_write_id_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -227047,7 +226339,7 @@ public int compareTo(get_max_allocated_table_write_id_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -227405,8 +226697,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof seed_write_id_args) return this.equals((seed_write_id_args)that); return false; @@ -227449,7 +226739,7 @@ public int compareTo(seed_write_id_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -227774,8 +227064,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof seed_write_id_result) return this.equals((seed_write_id_result)that); return false; @@ -227818,7 +227106,7 @@ public int compareTo(seed_write_id_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -228140,8 +227428,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof seed_txn_id_args) return this.equals((seed_txn_id_args)that); return false; @@ -228184,7 +227470,7 @@ public int compareTo(seed_txn_id_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -228509,8 +227795,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof seed_txn_id_result) return this.equals((seed_txn_id_result)that); return false; @@ -228553,7 +227837,7 @@ public int compareTo(seed_txn_id_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -228875,8 +228159,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof lock_args) return this.equals((lock_args)that); return false; @@ -228919,7 +228201,7 @@ public int compareTo(lock_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -229344,8 +228626,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof lock_result) return this.equals((lock_result)that); return false; @@ -229414,7 +228694,7 @@ public int compareTo(lock_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -229424,7 +228704,7 @@ public int compareTo(lock_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -229434,7 +228714,7 @@ public int compareTo(lock_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -229825,8 +229105,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof check_lock_args) return this.equals((check_lock_args)that); return false; @@ -229869,7 +229147,7 @@ public int compareTo(check_lock_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -230344,8 +229622,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof check_lock_result) return this.equals((check_lock_result)that); return false; @@ -230427,7 +229703,7 @@ public int compareTo(check_lock_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -230437,7 +229713,7 @@ public int compareTo(check_lock_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -230447,7 +229723,7 @@ public int compareTo(check_lock_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -230457,7 +229733,7 @@ public int compareTo(check_lock_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -230881,8 +230157,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof unlock_args) return this.equals((unlock_args)that); return false; @@ -230925,7 +230199,7 @@ public int compareTo(unlock_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -231300,8 +230574,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof unlock_result) return this.equals((unlock_result)that); return false; @@ -231357,7 +230629,7 @@ public int compareTo(unlock_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -231367,7 +230639,7 @@ public int compareTo(unlock_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -231722,8 +230994,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof show_locks_args) return this.equals((show_locks_args)that); return false; @@ -231766,7 +231036,7 @@ public int compareTo(show_locks_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -232091,8 +231361,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof show_locks_result) return this.equals((show_locks_result)that); return false; @@ -232135,7 +231403,7 @@ public int compareTo(show_locks_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -232460,8 +231728,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof heartbeat_args) return this.equals((heartbeat_args)that); return false; @@ -232504,7 +231770,7 @@ public int compareTo(heartbeat_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetIds()).compareTo(other.isSetIds()); + lastComparison = java.lang.Boolean.compare(isSetIds(), other.isSetIds()); if (lastComparison != 0) { return lastComparison; } @@ -232929,8 +232195,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof heartbeat_result) return this.equals((heartbeat_result)that); return false; @@ -232999,7 +232263,7 @@ public int compareTo(heartbeat_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -233009,7 +232273,7 @@ public int compareTo(heartbeat_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -233019,7 +232283,7 @@ public int compareTo(heartbeat_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -233407,8 +232671,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof heartbeat_txn_range_args) return this.equals((heartbeat_txn_range_args)that); return false; @@ -233451,7 +232713,7 @@ public int compareTo(heartbeat_txn_range_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTxns()).compareTo(other.isSetTxns()); + lastComparison = java.lang.Boolean.compare(isSetTxns(), other.isSetTxns()); if (lastComparison != 0) { return lastComparison; } @@ -233776,8 +233038,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof heartbeat_txn_range_result) return this.equals((heartbeat_txn_range_result)that); return false; @@ -233820,7 +233080,7 @@ public int compareTo(heartbeat_txn_range_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -234145,8 +233405,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof compact_args) return this.equals((compact_args)that); return false; @@ -234189,7 +233447,7 @@ public int compareTo(compact_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -234458,8 +233716,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof compact_result) return this.equals((compact_result)that); return false; @@ -234766,8 +234022,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof compact2_args) return this.equals((compact2_args)that); return false; @@ -234810,7 +234064,7 @@ public int compareTo(compact2_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -235135,8 +234389,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof compact2_result) return this.equals((compact2_result)that); return false; @@ -235179,7 +234431,7 @@ public int compareTo(compact2_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -235504,8 +234756,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof show_compact_args) return this.equals((show_compact_args)that); return false; @@ -235548,7 +234798,7 @@ public int compareTo(show_compact_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -235873,8 +235123,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof show_compact_result) return this.equals((show_compact_result)that); return false; @@ -235917,7 +235165,7 @@ public int compareTo(show_compact_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -236242,8 +235490,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_dynamic_partitions_args) return this.equals((add_dynamic_partitions_args)that); return false; @@ -236286,7 +235532,7 @@ public int compareTo(add_dynamic_partitions_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -236661,8 +235907,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_dynamic_partitions_result) return this.equals((add_dynamic_partitions_result)that); return false; @@ -236718,7 +235962,7 @@ public int compareTo(add_dynamic_partitions_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -236728,7 +235972,7 @@ public int compareTo(add_dynamic_partitions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -237133,8 +236377,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof find_next_compact_args) return this.equals((find_next_compact_args)that); return false; @@ -237190,7 +236432,7 @@ public int compareTo(find_next_compact_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetWorkerId()).compareTo(other.isSetWorkerId()); + lastComparison = java.lang.Boolean.compare(isSetWorkerId(), other.isSetWorkerId()); if (lastComparison != 0) { return lastComparison; } @@ -237200,7 +236442,7 @@ public int compareTo(find_next_compact_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWorkerVersion()).compareTo(other.isSetWorkerVersion()); + lastComparison = java.lang.Boolean.compare(isSetWorkerVersion(), other.isSetWorkerVersion()); if (lastComparison != 0) { return lastComparison; } @@ -237601,8 +236843,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof find_next_compact_result) return this.equals((find_next_compact_result)that); return false; @@ -237658,7 +236898,7 @@ public int compareTo(find_next_compact_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -237668,7 +236908,7 @@ public int compareTo(find_next_compact_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -238077,8 +237317,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_compactor_state_args) return this.equals((update_compactor_state_args)that); return false; @@ -238132,7 +237370,7 @@ public int compareTo(update_compactor_state_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCr()).compareTo(other.isSetCr()); + lastComparison = java.lang.Boolean.compare(isSetCr(), other.isSetCr()); if (lastComparison != 0) { return lastComparison; } @@ -238142,7 +237380,7 @@ public int compareTo(update_compactor_state_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxn_id()).compareTo(other.isSetTxn_id()); + lastComparison = java.lang.Boolean.compare(isSetTxn_id(), other.isSetTxn_id()); if (lastComparison != 0) { return lastComparison; } @@ -238438,8 +237676,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof update_compactor_state_result) return this.equals((update_compactor_state_result)that); return false; @@ -238746,8 +237982,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof find_columns_with_stats_args) return this.equals((find_columns_with_stats_args)that); return false; @@ -238790,7 +238024,7 @@ public int compareTo(find_columns_with_stats_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCr()).compareTo(other.isSetCr()); + lastComparison = java.lang.Boolean.compare(isSetCr(), other.isSetCr()); if (lastComparison != 0) { return lastComparison; } @@ -239133,8 +238367,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof find_columns_with_stats_result) return this.equals((find_columns_with_stats_result)that); return false; @@ -239177,7 +238409,7 @@ public int compareTo(find_columns_with_stats_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -239340,7 +238572,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, find_columns_with_st java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1973 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1973 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1973.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1974; for (int _i1975 = 0; _i1975 < _list1973.size; ++_i1975) @@ -239529,8 +238761,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof mark_cleaned_args) return this.equals((mark_cleaned_args)that); return false; @@ -239573,7 +238803,7 @@ public int compareTo(mark_cleaned_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCr()).compareTo(other.isSetCr()); + lastComparison = java.lang.Boolean.compare(isSetCr(), other.isSetCr()); if (lastComparison != 0) { return lastComparison; } @@ -239898,8 +239128,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof mark_cleaned_result) return this.equals((mark_cleaned_result)that); return false; @@ -239942,7 +239170,7 @@ public int compareTo(mark_cleaned_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -240264,8 +239492,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof mark_compacted_args) return this.equals((mark_compacted_args)that); return false; @@ -240308,7 +239534,7 @@ public int compareTo(mark_compacted_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCr()).compareTo(other.isSetCr()); + lastComparison = java.lang.Boolean.compare(isSetCr(), other.isSetCr()); if (lastComparison != 0) { return lastComparison; } @@ -240633,8 +239859,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof mark_compacted_result) return this.equals((mark_compacted_result)that); return false; @@ -240677,7 +239901,7 @@ public int compareTo(mark_compacted_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -240999,8 +240223,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof mark_failed_args) return this.equals((mark_failed_args)that); return false; @@ -241043,7 +240265,7 @@ public int compareTo(mark_failed_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCr()).compareTo(other.isSetCr()); + lastComparison = java.lang.Boolean.compare(isSetCr(), other.isSetCr()); if (lastComparison != 0) { return lastComparison; } @@ -241368,8 +240590,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof mark_failed_result) return this.equals((mark_failed_result)that); return false; @@ -241412,7 +240632,7 @@ public int compareTo(mark_failed_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -241785,8 +241005,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof set_hadoop_jobid_args) return this.equals((set_hadoop_jobid_args)that); return false; @@ -241840,7 +241058,7 @@ public int compareTo(set_hadoop_jobid_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetJobId()).compareTo(other.isSetJobId()); + lastComparison = java.lang.Boolean.compare(isSetJobId(), other.isSetJobId()); if (lastComparison != 0) { return lastComparison; } @@ -241850,7 +241068,7 @@ public int compareTo(set_hadoop_jobid_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCq_id()).compareTo(other.isSetCq_id()); + lastComparison = java.lang.Boolean.compare(isSetCq_id(), other.isSetCq_id()); if (lastComparison != 0) { return lastComparison; } @@ -242141,8 +241359,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof set_hadoop_jobid_result) return this.equals((set_hadoop_jobid_result)that); return false; @@ -242449,8 +241665,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_latest_committed_compaction_info_args) return this.equals((get_latest_committed_compaction_info_args)that); return false; @@ -242493,7 +241707,7 @@ public int compareTo(get_latest_committed_compaction_info_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -242818,8 +242032,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_latest_committed_compaction_info_result) return this.equals((get_latest_committed_compaction_info_result)that); return false; @@ -242862,7 +242074,7 @@ public int compareTo(get_latest_committed_compaction_info_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -243187,8 +242399,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_next_notification_args) return this.equals((get_next_notification_args)that); return false; @@ -243231,7 +242441,7 @@ public int compareTo(get_next_notification_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -243556,8 +242766,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_next_notification_result) return this.equals((get_next_notification_result)that); return false; @@ -243600,7 +242808,7 @@ public int compareTo(get_next_notification_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -243869,8 +243077,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_current_notificationEventId_args) return this.equals((get_current_notificationEventId_args)that); return false; @@ -244177,8 +243383,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_current_notificationEventId_result) return this.equals((get_current_notificationEventId_result)that); return false; @@ -244221,7 +243425,7 @@ public int compareTo(get_current_notificationEventId_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -244546,8 +243750,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_notification_events_count_args) return this.equals((get_notification_events_count_args)that); return false; @@ -244590,7 +243792,7 @@ public int compareTo(get_notification_events_count_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -244915,8 +244117,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_notification_events_count_result) return this.equals((get_notification_events_count_result)that); return false; @@ -244959,7 +244159,7 @@ public int compareTo(get_notification_events_count_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -245284,8 +244484,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof fire_listener_event_args) return this.equals((fire_listener_event_args)that); return false; @@ -245328,7 +244526,7 @@ public int compareTo(fire_listener_event_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -245653,8 +244851,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof fire_listener_event_result) return this.equals((fire_listener_event_result)that); return false; @@ -245697,7 +244893,7 @@ public int compareTo(fire_listener_event_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -245966,8 +245162,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof flushCache_args) return this.equals((flushCache_args)that); return false; @@ -246218,8 +245412,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof flushCache_result) return this.equals((flushCache_result)that); return false; @@ -246526,8 +245718,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_write_notification_log_args) return this.equals((add_write_notification_log_args)that); return false; @@ -246570,7 +245760,7 @@ public int compareTo(add_write_notification_log_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -246895,8 +246085,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_write_notification_log_result) return this.equals((add_write_notification_log_result)that); return false; @@ -246939,7 +246127,7 @@ public int compareTo(add_write_notification_log_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -247264,8 +246452,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof cm_recycle_args) return this.equals((cm_recycle_args)that); return false; @@ -247308,7 +246494,7 @@ public int compareTo(cm_recycle_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -247683,8 +246869,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof cm_recycle_result) return this.equals((cm_recycle_result)that); return false; @@ -247740,7 +246924,7 @@ public int compareTo(cm_recycle_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -247750,7 +246934,7 @@ public int compareTo(cm_recycle_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -248108,8 +247292,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_file_metadata_by_expr_args) return this.equals((get_file_metadata_by_expr_args)that); return false; @@ -248152,7 +247334,7 @@ public int compareTo(get_file_metadata_by_expr_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -248477,8 +247659,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_file_metadata_by_expr_result) return this.equals((get_file_metadata_by_expr_result)that); return false; @@ -248521,7 +247701,7 @@ public int compareTo(get_file_metadata_by_expr_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -248846,8 +248026,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_file_metadata_args) return this.equals((get_file_metadata_args)that); return false; @@ -248890,7 +248068,7 @@ public int compareTo(get_file_metadata_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -249215,8 +248393,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_file_metadata_result) return this.equals((get_file_metadata_result)that); return false; @@ -249259,7 +248435,7 @@ public int compareTo(get_file_metadata_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -249584,8 +248760,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof put_file_metadata_args) return this.equals((put_file_metadata_args)that); return false; @@ -249628,7 +248802,7 @@ public int compareTo(put_file_metadata_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -249953,8 +249127,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof put_file_metadata_result) return this.equals((put_file_metadata_result)that); return false; @@ -249997,7 +249169,7 @@ public int compareTo(put_file_metadata_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -250322,8 +249494,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof clear_file_metadata_args) return this.equals((clear_file_metadata_args)that); return false; @@ -250366,7 +249536,7 @@ public int compareTo(clear_file_metadata_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -250691,8 +249861,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof clear_file_metadata_result) return this.equals((clear_file_metadata_result)that); return false; @@ -250735,7 +249903,7 @@ public int compareTo(clear_file_metadata_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -251060,8 +250228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof cache_file_metadata_args) return this.equals((cache_file_metadata_args)that); return false; @@ -251104,7 +250270,7 @@ public int compareTo(cache_file_metadata_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReq()).compareTo(other.isSetReq()); + lastComparison = java.lang.Boolean.compare(isSetReq(), other.isSetReq()); if (lastComparison != 0) { return lastComparison; } @@ -251429,8 +250595,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof cache_file_metadata_result) return this.equals((cache_file_metadata_result)that); return false; @@ -251473,7 +250637,7 @@ public int compareTo(cache_file_metadata_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -251742,8 +250906,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_metastore_db_uuid_args) return this.equals((get_metastore_db_uuid_args)that); return false; @@ -252100,8 +251262,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_metastore_db_uuid_result) return this.equals((get_metastore_db_uuid_result)that); return false; @@ -252157,7 +251317,7 @@ public int compareTo(get_metastore_db_uuid_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -252167,7 +251327,7 @@ public int compareTo(get_metastore_db_uuid_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -252520,8 +251680,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_resource_plan_args) return this.equals((create_resource_plan_args)that); return false; @@ -252564,7 +251722,7 @@ public int compareTo(create_resource_plan_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -253039,8 +252197,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_resource_plan_result) return this.equals((create_resource_plan_result)that); return false; @@ -253122,7 +252278,7 @@ public int compareTo(create_resource_plan_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -253132,7 +252288,7 @@ public int compareTo(create_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -253142,7 +252298,7 @@ public int compareTo(create_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -253152,7 +252308,7 @@ public int compareTo(create_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -253576,8 +252732,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_resource_plan_args) return this.equals((get_resource_plan_args)that); return false; @@ -253620,7 +252774,7 @@ public int compareTo(get_resource_plan_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -254045,8 +253199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_resource_plan_result) return this.equals((get_resource_plan_result)that); return false; @@ -254115,7 +253267,7 @@ public int compareTo(get_resource_plan_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -254125,7 +253277,7 @@ public int compareTo(get_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -254135,7 +253287,7 @@ public int compareTo(get_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -254526,8 +253678,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_active_resource_plan_args) return this.equals((get_active_resource_plan_args)that); return false; @@ -254570,7 +253720,7 @@ public int compareTo(get_active_resource_plan_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -254945,8 +254095,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_active_resource_plan_result) return this.equals((get_active_resource_plan_result)that); return false; @@ -255002,7 +254150,7 @@ public int compareTo(get_active_resource_plan_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -255012,7 +254160,7 @@ public int compareTo(get_active_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -255370,8 +254518,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_resource_plans_args) return this.equals((get_all_resource_plans_args)that); return false; @@ -255414,7 +254560,7 @@ public int compareTo(get_all_resource_plans_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -255789,8 +254935,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_resource_plans_result) return this.equals((get_all_resource_plans_result)that); return false; @@ -255846,7 +254990,7 @@ public int compareTo(get_all_resource_plans_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -255856,7 +255000,7 @@ public int compareTo(get_all_resource_plans_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -256214,8 +255358,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_resource_plan_args) return this.equals((alter_resource_plan_args)that); return false; @@ -256258,7 +255400,7 @@ public int compareTo(alter_resource_plan_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -256733,8 +255875,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_resource_plan_result) return this.equals((alter_resource_plan_result)that); return false; @@ -256816,7 +255956,7 @@ public int compareTo(alter_resource_plan_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -256826,7 +255966,7 @@ public int compareTo(alter_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -256836,7 +255976,7 @@ public int compareTo(alter_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -256846,7 +255986,7 @@ public int compareTo(alter_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -257270,8 +256410,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof validate_resource_plan_args) return this.equals((validate_resource_plan_args)that); return false; @@ -257314,7 +256452,7 @@ public int compareTo(validate_resource_plan_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -257739,8 +256877,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof validate_resource_plan_result) return this.equals((validate_resource_plan_result)that); return false; @@ -257809,7 +256945,7 @@ public int compareTo(validate_resource_plan_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -257819,7 +256955,7 @@ public int compareTo(validate_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -257829,7 +256965,7 @@ public int compareTo(validate_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -258220,8 +257356,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_resource_plan_args) return this.equals((drop_resource_plan_args)that); return false; @@ -258264,7 +257398,7 @@ public int compareTo(drop_resource_plan_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -258739,8 +257873,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_resource_plan_result) return this.equals((drop_resource_plan_result)that); return false; @@ -258822,7 +257954,7 @@ public int compareTo(drop_resource_plan_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -258832,7 +257964,7 @@ public int compareTo(drop_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -258842,7 +257974,7 @@ public int compareTo(drop_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -258852,7 +257984,7 @@ public int compareTo(drop_resource_plan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -259276,8 +258408,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_wm_trigger_args) return this.equals((create_wm_trigger_args)that); return false; @@ -259320,7 +258450,7 @@ public int compareTo(create_wm_trigger_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -259845,8 +258975,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_wm_trigger_result) return this.equals((create_wm_trigger_result)that); return false; @@ -259941,7 +259069,7 @@ public int compareTo(create_wm_trigger_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -259951,7 +259079,7 @@ public int compareTo(create_wm_trigger_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -259961,7 +259089,7 @@ public int compareTo(create_wm_trigger_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -259971,7 +259099,7 @@ public int compareTo(create_wm_trigger_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -259981,7 +259109,7 @@ public int compareTo(create_wm_trigger_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -260438,8 +259566,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_wm_trigger_args) return this.equals((alter_wm_trigger_args)that); return false; @@ -260482,7 +259608,7 @@ public int compareTo(alter_wm_trigger_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -260957,8 +260083,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_wm_trigger_result) return this.equals((alter_wm_trigger_result)that); return false; @@ -261040,7 +260164,7 @@ public int compareTo(alter_wm_trigger_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -261050,7 +260174,7 @@ public int compareTo(alter_wm_trigger_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -261060,7 +260184,7 @@ public int compareTo(alter_wm_trigger_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -261070,7 +260194,7 @@ public int compareTo(alter_wm_trigger_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -261494,8 +260618,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_wm_trigger_args) return this.equals((drop_wm_trigger_args)that); return false; @@ -261538,7 +260660,7 @@ public int compareTo(drop_wm_trigger_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -262013,8 +261135,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_wm_trigger_result) return this.equals((drop_wm_trigger_result)that); return false; @@ -262096,7 +261216,7 @@ public int compareTo(drop_wm_trigger_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -262106,7 +261226,7 @@ public int compareTo(drop_wm_trigger_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -262116,7 +261236,7 @@ public int compareTo(drop_wm_trigger_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -262126,7 +261246,7 @@ public int compareTo(drop_wm_trigger_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -262550,8 +261670,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_triggers_for_resourceplan_args) return this.equals((get_triggers_for_resourceplan_args)that); return false; @@ -262594,7 +261712,7 @@ public int compareTo(get_triggers_for_resourceplan_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -263019,8 +262137,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_triggers_for_resourceplan_result) return this.equals((get_triggers_for_resourceplan_result)that); return false; @@ -263089,7 +262205,7 @@ public int compareTo(get_triggers_for_resourceplan_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -263099,7 +262215,7 @@ public int compareTo(get_triggers_for_resourceplan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -263109,7 +262225,7 @@ public int compareTo(get_triggers_for_resourceplan_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -263500,8 +262616,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_wm_pool_args) return this.equals((create_wm_pool_args)that); return false; @@ -263544,7 +262658,7 @@ public int compareTo(create_wm_pool_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -264069,8 +263183,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_wm_pool_result) return this.equals((create_wm_pool_result)that); return false; @@ -264165,7 +263277,7 @@ public int compareTo(create_wm_pool_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -264175,7 +263287,7 @@ public int compareTo(create_wm_pool_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -264185,7 +263297,7 @@ public int compareTo(create_wm_pool_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -264195,7 +263307,7 @@ public int compareTo(create_wm_pool_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -264205,7 +263317,7 @@ public int compareTo(create_wm_pool_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -264662,8 +263774,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_wm_pool_args) return this.equals((alter_wm_pool_args)that); return false; @@ -264706,7 +263816,7 @@ public int compareTo(alter_wm_pool_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -265231,8 +264341,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_wm_pool_result) return this.equals((alter_wm_pool_result)that); return false; @@ -265327,7 +264435,7 @@ public int compareTo(alter_wm_pool_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -265337,7 +264445,7 @@ public int compareTo(alter_wm_pool_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -265347,7 +264455,7 @@ public int compareTo(alter_wm_pool_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -265357,7 +264465,7 @@ public int compareTo(alter_wm_pool_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -265367,7 +264475,7 @@ public int compareTo(alter_wm_pool_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -265824,8 +264932,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_wm_pool_args) return this.equals((drop_wm_pool_args)that); return false; @@ -265868,7 +264974,7 @@ public int compareTo(drop_wm_pool_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -266343,8 +265449,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_wm_pool_result) return this.equals((drop_wm_pool_result)that); return false; @@ -266426,7 +265530,7 @@ public int compareTo(drop_wm_pool_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -266436,7 +265540,7 @@ public int compareTo(drop_wm_pool_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -266446,7 +265550,7 @@ public int compareTo(drop_wm_pool_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -266456,7 +265560,7 @@ public int compareTo(drop_wm_pool_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -266880,8 +265984,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_or_update_wm_mapping_args) return this.equals((create_or_update_wm_mapping_args)that); return false; @@ -266924,7 +266026,7 @@ public int compareTo(create_or_update_wm_mapping_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -267449,8 +266551,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_or_update_wm_mapping_result) return this.equals((create_or_update_wm_mapping_result)that); return false; @@ -267545,7 +266645,7 @@ public int compareTo(create_or_update_wm_mapping_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -267555,7 +266655,7 @@ public int compareTo(create_or_update_wm_mapping_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -267565,7 +266665,7 @@ public int compareTo(create_or_update_wm_mapping_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -267575,7 +266675,7 @@ public int compareTo(create_or_update_wm_mapping_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -267585,7 +266685,7 @@ public int compareTo(create_or_update_wm_mapping_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -268042,8 +267142,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_wm_mapping_args) return this.equals((drop_wm_mapping_args)that); return false; @@ -268086,7 +267184,7 @@ public int compareTo(drop_wm_mapping_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -268561,8 +267659,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_wm_mapping_result) return this.equals((drop_wm_mapping_result)that); return false; @@ -268644,7 +267740,7 @@ public int compareTo(drop_wm_mapping_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -268654,7 +267750,7 @@ public int compareTo(drop_wm_mapping_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -268664,7 +267760,7 @@ public int compareTo(drop_wm_mapping_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -268674,7 +267770,7 @@ public int compareTo(drop_wm_mapping_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -269098,8 +268194,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_or_drop_wm_trigger_to_pool_mapping_args) return this.equals((create_or_drop_wm_trigger_to_pool_mapping_args)that); return false; @@ -269142,7 +268236,7 @@ public int compareTo(create_or_drop_wm_trigger_to_pool_mapping_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -269667,8 +268761,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_or_drop_wm_trigger_to_pool_mapping_result) return this.equals((create_or_drop_wm_trigger_to_pool_mapping_result)that); return false; @@ -269763,7 +268855,7 @@ public int compareTo(create_or_drop_wm_trigger_to_pool_mapping_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -269773,7 +268865,7 @@ public int compareTo(create_or_drop_wm_trigger_to_pool_mapping_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -269783,7 +268875,7 @@ public int compareTo(create_or_drop_wm_trigger_to_pool_mapping_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -269793,7 +268885,7 @@ public int compareTo(create_or_drop_wm_trigger_to_pool_mapping_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -269803,7 +268895,7 @@ public int compareTo(create_or_drop_wm_trigger_to_pool_mapping_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -270260,8 +269352,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_ischema_args) return this.equals((create_ischema_args)that); return false; @@ -270304,7 +269394,7 @@ public int compareTo(create_ischema_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSchema()).compareTo(other.isSetSchema()); + lastComparison = java.lang.Boolean.compare(isSetSchema(), other.isSetSchema()); if (lastComparison != 0) { return lastComparison; } @@ -270729,8 +269819,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_ischema_result) return this.equals((create_ischema_result)that); return false; @@ -270799,7 +269887,7 @@ public int compareTo(create_ischema_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -270809,7 +269897,7 @@ public int compareTo(create_ischema_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -270819,7 +269907,7 @@ public int compareTo(create_ischema_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -271207,8 +270295,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_ischema_args) return this.equals((alter_ischema_args)that); return false; @@ -271251,7 +270337,7 @@ public int compareTo(alter_ischema_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -271626,8 +270712,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof alter_ischema_result) return this.equals((alter_ischema_result)that); return false; @@ -271683,7 +270767,7 @@ public int compareTo(alter_ischema_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -271693,7 +270777,7 @@ public int compareTo(alter_ischema_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -272048,8 +271132,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_ischema_args) return this.equals((get_ischema_args)that); return false; @@ -272092,7 +271174,7 @@ public int compareTo(get_ischema_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -272517,8 +271599,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_ischema_result) return this.equals((get_ischema_result)that); return false; @@ -272587,7 +271667,7 @@ public int compareTo(get_ischema_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -272597,7 +271677,7 @@ public int compareTo(get_ischema_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -272607,7 +271687,7 @@ public int compareTo(get_ischema_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -272998,8 +272078,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_ischema_args) return this.equals((drop_ischema_args)that); return false; @@ -273042,7 +272120,7 @@ public int compareTo(drop_ischema_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -273467,8 +272545,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_ischema_result) return this.equals((drop_ischema_result)that); return false; @@ -273537,7 +272613,7 @@ public int compareTo(drop_ischema_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -273547,7 +272623,7 @@ public int compareTo(drop_ischema_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -273557,7 +272633,7 @@ public int compareTo(drop_ischema_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -273945,8 +273021,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_schema_version_args) return this.equals((add_schema_version_args)that); return false; @@ -273989,7 +273063,7 @@ public int compareTo(add_schema_version_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSchemaVersion()).compareTo(other.isSetSchemaVersion()); + lastComparison = java.lang.Boolean.compare(isSetSchemaVersion(), other.isSetSchemaVersion()); if (lastComparison != 0) { return lastComparison; } @@ -274414,8 +273488,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_schema_version_result) return this.equals((add_schema_version_result)that); return false; @@ -274484,7 +273556,7 @@ public int compareTo(add_schema_version_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -274494,7 +273566,7 @@ public int compareTo(add_schema_version_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -274504,7 +273576,7 @@ public int compareTo(add_schema_version_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -274892,8 +273964,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schema_version_args) return this.equals((get_schema_version_args)that); return false; @@ -274936,7 +274006,7 @@ public int compareTo(get_schema_version_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSchemaVersion()).compareTo(other.isSetSchemaVersion()); + lastComparison = java.lang.Boolean.compare(isSetSchemaVersion(), other.isSetSchemaVersion()); if (lastComparison != 0) { return lastComparison; } @@ -275361,8 +274431,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schema_version_result) return this.equals((get_schema_version_result)that); return false; @@ -275431,7 +274499,7 @@ public int compareTo(get_schema_version_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -275441,7 +274509,7 @@ public int compareTo(get_schema_version_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -275451,7 +274519,7 @@ public int compareTo(get_schema_version_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -275842,8 +274910,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schema_latest_version_args) return this.equals((get_schema_latest_version_args)that); return false; @@ -275886,7 +274952,7 @@ public int compareTo(get_schema_latest_version_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSchemaName()).compareTo(other.isSetSchemaName()); + lastComparison = java.lang.Boolean.compare(isSetSchemaName(), other.isSetSchemaName()); if (lastComparison != 0) { return lastComparison; } @@ -276311,8 +275377,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schema_latest_version_result) return this.equals((get_schema_latest_version_result)that); return false; @@ -276381,7 +275445,7 @@ public int compareTo(get_schema_latest_version_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -276391,7 +275455,7 @@ public int compareTo(get_schema_latest_version_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -276401,7 +275465,7 @@ public int compareTo(get_schema_latest_version_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -276792,8 +275856,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schema_all_versions_args) return this.equals((get_schema_all_versions_args)that); return false; @@ -276836,7 +275898,7 @@ public int compareTo(get_schema_all_versions_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSchemaName()).compareTo(other.isSetSchemaName()); + lastComparison = java.lang.Boolean.compare(isSetSchemaName(), other.isSetSchemaName()); if (lastComparison != 0) { return lastComparison; } @@ -277282,8 +276344,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schema_all_versions_result) return this.equals((get_schema_all_versions_result)that); return false; @@ -277352,7 +276412,7 @@ public int compareTo(get_schema_all_versions_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -277362,7 +276422,7 @@ public int compareTo(get_schema_all_versions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -277372,7 +276432,7 @@ public int compareTo(get_schema_all_versions_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -277592,7 +276652,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_schema_all_versi java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1981 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1981 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1981.size); @org.apache.thrift.annotation.Nullable SchemaVersion _elem1982; for (int _i1983 = 0; _i1983 < _list1981.size; ++_i1983) @@ -277792,8 +276852,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_schema_version_args) return this.equals((drop_schema_version_args)that); return false; @@ -277836,7 +276894,7 @@ public int compareTo(drop_schema_version_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSchemaVersion()).compareTo(other.isSetSchemaVersion()); + lastComparison = java.lang.Boolean.compare(isSetSchemaVersion(), other.isSetSchemaVersion()); if (lastComparison != 0) { return lastComparison; } @@ -278211,8 +277269,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_schema_version_result) return this.equals((drop_schema_version_result)that); return false; @@ -278268,7 +277324,7 @@ public int compareTo(drop_schema_version_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -278278,7 +277334,7 @@ public int compareTo(drop_schema_version_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -278633,8 +277689,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schemas_by_cols_args) return this.equals((get_schemas_by_cols_args)that); return false; @@ -278677,7 +277731,7 @@ public int compareTo(get_schemas_by_cols_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -279052,8 +278106,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_schemas_by_cols_result) return this.equals((get_schemas_by_cols_result)that); return false; @@ -279109,7 +278161,7 @@ public int compareTo(get_schemas_by_cols_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -279119,7 +278171,7 @@ public int compareTo(get_schemas_by_cols_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -279477,8 +278529,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof map_schema_version_to_serde_args) return this.equals((map_schema_version_to_serde_args)that); return false; @@ -279521,7 +278571,7 @@ public int compareTo(map_schema_version_to_serde_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -279896,8 +278946,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof map_schema_version_to_serde_result) return this.equals((map_schema_version_to_serde_result)that); return false; @@ -279953,7 +279001,7 @@ public int compareTo(map_schema_version_to_serde_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -279963,7 +279011,7 @@ public int compareTo(map_schema_version_to_serde_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -280318,8 +279366,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof set_schema_version_state_args) return this.equals((set_schema_version_state_args)that); return false; @@ -280362,7 +279408,7 @@ public int compareTo(set_schema_version_state_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -280787,8 +279833,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof set_schema_version_state_result) return this.equals((set_schema_version_state_result)that); return false; @@ -280857,7 +279901,7 @@ public int compareTo(set_schema_version_state_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -280867,7 +279911,7 @@ public int compareTo(set_schema_version_state_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -280877,7 +279921,7 @@ public int compareTo(set_schema_version_state_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -281265,8 +280309,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_serde_args) return this.equals((add_serde_args)that); return false; @@ -281309,7 +280351,7 @@ public int compareTo(add_serde_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSerde()).compareTo(other.isSetSerde()); + lastComparison = java.lang.Boolean.compare(isSetSerde(), other.isSetSerde()); if (lastComparison != 0) { return lastComparison; } @@ -281684,8 +280726,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_serde_result) return this.equals((add_serde_result)that); return false; @@ -281741,7 +280781,7 @@ public int compareTo(add_serde_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -281751,7 +280791,7 @@ public int compareTo(add_serde_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -282106,8 +281146,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_serde_args) return this.equals((get_serde_args)that); return false; @@ -282150,7 +281188,7 @@ public int compareTo(get_serde_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -282575,8 +281613,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_serde_result) return this.equals((get_serde_result)that); return false; @@ -282645,7 +281681,7 @@ public int compareTo(get_serde_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -282655,7 +281691,7 @@ public int compareTo(get_serde_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -282665,7 +281701,7 @@ public int compareTo(get_serde_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -283157,8 +282193,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_lock_materialization_rebuild_args) return this.equals((get_lock_materialization_rebuild_args)that); return false; @@ -283225,7 +282259,7 @@ public int compareTo(get_lock_materialization_rebuild_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -283235,7 +282269,7 @@ public int compareTo(get_lock_materialization_rebuild_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -283245,7 +282279,7 @@ public int compareTo(get_lock_materialization_rebuild_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxnId()).compareTo(other.isSetTxnId()); + lastComparison = java.lang.Boolean.compare(isSetTxnId(), other.isSetTxnId()); if (lastComparison != 0) { return lastComparison; } @@ -283623,8 +282657,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_lock_materialization_rebuild_result) return this.equals((get_lock_materialization_rebuild_result)that); return false; @@ -283667,7 +282699,7 @@ public int compareTo(get_lock_materialization_rebuild_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -284093,8 +283125,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof heartbeat_lock_materialization_rebuild_args) return this.equals((heartbeat_lock_materialization_rebuild_args)that); return false; @@ -284161,7 +283191,7 @@ public int compareTo(heartbeat_lock_materialization_rebuild_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -284171,7 +283201,7 @@ public int compareTo(heartbeat_lock_materialization_rebuild_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -284181,7 +283211,7 @@ public int compareTo(heartbeat_lock_materialization_rebuild_args other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTxnId()).compareTo(other.isSetTxnId()); + lastComparison = java.lang.Boolean.compare(isSetTxnId(), other.isSetTxnId()); if (lastComparison != 0) { return lastComparison; } @@ -284560,8 +283590,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof heartbeat_lock_materialization_rebuild_result) return this.equals((heartbeat_lock_materialization_rebuild_result)that); return false; @@ -284602,7 +283630,7 @@ public int compareTo(heartbeat_lock_materialization_rebuild_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -284920,8 +283948,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_runtime_stats_args) return this.equals((add_runtime_stats_args)that); return false; @@ -284964,7 +283990,7 @@ public int compareTo(add_runtime_stats_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetStat()).compareTo(other.isSetStat()); + lastComparison = java.lang.Boolean.compare(isSetStat(), other.isSetStat()); if (lastComparison != 0) { return lastComparison; } @@ -285289,8 +284315,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_runtime_stats_result) return this.equals((add_runtime_stats_result)that); return false; @@ -285333,7 +284357,7 @@ public int compareTo(add_runtime_stats_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -285655,8 +284679,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_runtime_stats_args) return this.equals((get_runtime_stats_args)that); return false; @@ -285699,7 +284721,7 @@ public int compareTo(get_runtime_stats_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -286095,8 +285117,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_runtime_stats_result) return this.equals((get_runtime_stats_result)that); return false; @@ -286152,7 +285172,7 @@ public int compareTo(get_runtime_stats_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -286162,7 +285182,7 @@ public int compareTo(get_runtime_stats_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -286354,7 +285374,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_runtime_stats_re java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1989 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1989 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.success = new java.util.ArrayList(_list1989.size); @org.apache.thrift.annotation.Nullable RuntimeStat _elem1990; for (int _i1991 = 0; _i1991 < _list1989.size; ++_i1991) @@ -286549,8 +285569,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_with_specs_args) return this.equals((get_partitions_with_specs_args)that); return false; @@ -286593,7 +285611,7 @@ public int compareTo(get_partitions_with_specs_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -286968,8 +285986,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_partitions_with_specs_result) return this.equals((get_partitions_with_specs_result)that); return false; @@ -287025,7 +286041,7 @@ public int compareTo(get_partitions_with_specs_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -287035,7 +286051,7 @@ public int compareTo(get_partitions_with_specs_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -287393,8 +286409,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof scheduled_query_poll_args) return this.equals((scheduled_query_poll_args)that); return false; @@ -287437,7 +286451,7 @@ public int compareTo(scheduled_query_poll_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -287812,8 +286826,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof scheduled_query_poll_result) return this.equals((scheduled_query_poll_result)that); return false; @@ -287869,7 +286881,7 @@ public int compareTo(scheduled_query_poll_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -287879,7 +286891,7 @@ public int compareTo(scheduled_query_poll_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -288237,8 +287249,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof scheduled_query_maintenance_args) return this.equals((scheduled_query_maintenance_args)that); return false; @@ -288281,7 +287291,7 @@ public int compareTo(scheduled_query_maintenance_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -288756,8 +287766,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof scheduled_query_maintenance_result) return this.equals((scheduled_query_maintenance_result)that); return false; @@ -288839,7 +287847,7 @@ public int compareTo(scheduled_query_maintenance_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -288849,7 +287857,7 @@ public int compareTo(scheduled_query_maintenance_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -288859,7 +287867,7 @@ public int compareTo(scheduled_query_maintenance_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO3()).compareTo(other.isSetO3()); + lastComparison = java.lang.Boolean.compare(isSetO3(), other.isSetO3()); if (lastComparison != 0) { return lastComparison; } @@ -288869,7 +287877,7 @@ public int compareTo(scheduled_query_maintenance_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO4()).compareTo(other.isSetO4()); + lastComparison = java.lang.Boolean.compare(isSetO4(), other.isSetO4()); if (lastComparison != 0) { return lastComparison; } @@ -289290,8 +288298,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof scheduled_query_progress_args) return this.equals((scheduled_query_progress_args)that); return false; @@ -289334,7 +288340,7 @@ public int compareTo(scheduled_query_progress_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetInfo()).compareTo(other.isSetInfo()); + lastComparison = java.lang.Boolean.compare(isSetInfo(), other.isSetInfo()); if (lastComparison != 0) { return lastComparison; } @@ -289709,8 +288715,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof scheduled_query_progress_result) return this.equals((scheduled_query_progress_result)that); return false; @@ -289766,7 +288770,7 @@ public int compareTo(scheduled_query_progress_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -289776,7 +288780,7 @@ public int compareTo(scheduled_query_progress_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -290131,8 +289135,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_scheduled_query_args) return this.equals((get_scheduled_query_args)that); return false; @@ -290175,7 +289177,7 @@ public int compareTo(get_scheduled_query_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetScheduleKey()).compareTo(other.isSetScheduleKey()); + lastComparison = java.lang.Boolean.compare(isSetScheduleKey(), other.isSetScheduleKey()); if (lastComparison != 0) { return lastComparison; } @@ -290600,8 +289602,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_scheduled_query_result) return this.equals((get_scheduled_query_result)that); return false; @@ -290670,7 +289670,7 @@ public int compareTo(get_scheduled_query_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -290680,7 +289680,7 @@ public int compareTo(get_scheduled_query_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -290690,7 +289690,7 @@ public int compareTo(get_scheduled_query_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -291081,8 +290081,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_replication_metrics_args) return this.equals((add_replication_metrics_args)that); return false; @@ -291125,7 +290123,7 @@ public int compareTo(add_replication_metrics_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetReplicationMetricList()).compareTo(other.isSetReplicationMetricList()); + lastComparison = java.lang.Boolean.compare(isSetReplicationMetricList(), other.isSetReplicationMetricList()); if (lastComparison != 0) { return lastComparison; } @@ -291450,8 +290448,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_replication_metrics_result) return this.equals((add_replication_metrics_result)that); return false; @@ -291494,7 +290490,7 @@ public int compareTo(add_replication_metrics_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -291816,8 +290812,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_replication_metrics_args) return this.equals((get_replication_metrics_args)that); return false; @@ -291860,7 +290854,7 @@ public int compareTo(get_replication_metrics_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRqst()).compareTo(other.isSetRqst()); + lastComparison = java.lang.Boolean.compare(isSetRqst(), other.isSetRqst()); if (lastComparison != 0) { return lastComparison; } @@ -292235,8 +291229,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_replication_metrics_result) return this.equals((get_replication_metrics_result)that); return false; @@ -292292,7 +291284,7 @@ public int compareTo(get_replication_metrics_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -292302,7 +291294,7 @@ public int compareTo(get_replication_metrics_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -292660,8 +291652,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_open_txns_req_args) return this.equals((get_open_txns_req_args)that); return false; @@ -292704,7 +291694,7 @@ public int compareTo(get_open_txns_req_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetGetOpenTxnsRequest()).compareTo(other.isSetGetOpenTxnsRequest()); + lastComparison = java.lang.Boolean.compare(isSetGetOpenTxnsRequest(), other.isSetGetOpenTxnsRequest()); if (lastComparison != 0) { return lastComparison; } @@ -293029,8 +292019,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_open_txns_req_result) return this.equals((get_open_txns_req_result)that); return false; @@ -293073,7 +292061,7 @@ public int compareTo(get_open_txns_req_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -293398,8 +292386,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_stored_procedure_args) return this.equals((create_stored_procedure_args)that); return false; @@ -293442,7 +292428,7 @@ public int compareTo(create_stored_procedure_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetProc()).compareTo(other.isSetProc()); + lastComparison = java.lang.Boolean.compare(isSetProc(), other.isSetProc()); if (lastComparison != 0) { return lastComparison; } @@ -293817,8 +292803,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof create_stored_procedure_result) return this.equals((create_stored_procedure_result)that); return false; @@ -293874,7 +292858,7 @@ public int compareTo(create_stored_procedure_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -293884,7 +292868,7 @@ public int compareTo(create_stored_procedure_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -294239,8 +293223,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_stored_procedure_args) return this.equals((get_stored_procedure_args)that); return false; @@ -294283,7 +293265,7 @@ public int compareTo(get_stored_procedure_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -294708,8 +293690,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_stored_procedure_result) return this.equals((get_stored_procedure_result)that); return false; @@ -294778,7 +293758,7 @@ public int compareTo(get_stored_procedure_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -294788,7 +293768,7 @@ public int compareTo(get_stored_procedure_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -294798,7 +293778,7 @@ public int compareTo(get_stored_procedure_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -295189,8 +294169,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_stored_procedure_args) return this.equals((drop_stored_procedure_args)that); return false; @@ -295233,7 +294211,7 @@ public int compareTo(drop_stored_procedure_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -295558,8 +294536,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_stored_procedure_result) return this.equals((drop_stored_procedure_result)that); return false; @@ -295602,7 +294578,7 @@ public int compareTo(drop_stored_procedure_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -295924,8 +294900,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_stored_procedures_args) return this.equals((get_all_stored_procedures_args)that); return false; @@ -295968,7 +294942,7 @@ public int compareTo(get_all_stored_procedures_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -296361,8 +295335,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_stored_procedures_result) return this.equals((get_all_stored_procedures_result)that); return false; @@ -296418,7 +295390,7 @@ public int compareTo(get_all_stored_procedures_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -296428,7 +295400,7 @@ public int compareTo(get_all_stored_procedures_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -296619,7 +295591,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_all_stored_proce java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1997 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1997 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list1997.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1998; for (int _i1999 = 0; _i1999 < _list1997.size; ++_i1999) @@ -296813,8 +295785,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof find_package_args) return this.equals((find_package_args)that); return false; @@ -296857,7 +295827,7 @@ public int compareTo(find_package_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -297282,8 +296252,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof find_package_result) return this.equals((find_package_result)that); return false; @@ -297352,7 +296320,7 @@ public int compareTo(find_package_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -297362,7 +296330,7 @@ public int compareTo(find_package_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -297372,7 +296340,7 @@ public int compareTo(find_package_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO2()).compareTo(other.isSetO2()); + lastComparison = java.lang.Boolean.compare(isSetO2(), other.isSetO2()); if (lastComparison != 0) { return lastComparison; } @@ -297763,8 +296731,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_package_args) return this.equals((add_package_args)that); return false; @@ -297807,7 +296773,7 @@ public int compareTo(add_package_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -298132,8 +297098,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof add_package_result) return this.equals((add_package_result)that); return false; @@ -298176,7 +297140,7 @@ public int compareTo(add_package_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -298498,8 +297462,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_packages_args) return this.equals((get_all_packages_args)that); return false; @@ -298542,7 +297504,7 @@ public int compareTo(get_all_packages_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -298935,8 +297897,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof get_all_packages_result) return this.equals((get_all_packages_result)that); return false; @@ -298992,7 +297952,7 @@ public int compareTo(get_all_packages_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + lastComparison = java.lang.Boolean.compare(isSetSuccess(), other.isSetSuccess()); if (lastComparison != 0) { return lastComparison; } @@ -299002,7 +297962,7 @@ public int compareTo(get_all_packages_result other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } @@ -299193,7 +298153,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_all_packages_res java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list2005 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list2005 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.success = new java.util.ArrayList(_list2005.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem2006; for (int _i2007 = 0; _i2007 < _list2005.size; ++_i2007) @@ -299387,8 +298347,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_package_args) return this.equals((drop_package_args)that); return false; @@ -299431,7 +298389,7 @@ public int compareTo(drop_package_args other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetRequest()).compareTo(other.isSetRequest()); + lastComparison = java.lang.Boolean.compare(isSetRequest(), other.isSetRequest()); if (lastComparison != 0) { return lastComparison; } @@ -299756,8 +298714,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof drop_package_result) return this.equals((drop_package_result)that); return false; @@ -299800,7 +298756,7 @@ public int compareTo(drop_package_result other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + lastComparison = java.lang.Boolean.compare(isSetO1(), other.isSetO1()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Timestamp.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Timestamp.java index f42c717457dd..4149fb002816 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Timestamp.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Timestamp.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Timestamp 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("Timestamp"); @@ -179,8 +179,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Timestamp) return this.equals((Timestamp)that); return false; @@ -221,7 +219,7 @@ public int compareTo(Timestamp other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetSecondsSinceEpoch()).compareTo(other.isSetSecondsSinceEpoch()); + lastComparison = java.lang.Boolean.compare(isSetSecondsSinceEpoch(), other.isSetSecondsSinceEpoch()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TimestampColumnStatsData.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TimestampColumnStatsData.java index 7439055910a3..c881d5fd5294 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TimestampColumnStatsData.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TimestampColumnStatsData.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class TimestampColumnStatsData 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("TimestampColumnStatsData"); @@ -385,8 +385,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TimestampColumnStatsData) return this.equals((TimestampColumnStatsData)that); return false; @@ -477,7 +475,7 @@ public int compareTo(TimestampColumnStatsData other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetLowValue()).compareTo(other.isSetLowValue()); + lastComparison = java.lang.Boolean.compare(isSetLowValue(), other.isSetLowValue()); if (lastComparison != 0) { return lastComparison; } @@ -487,7 +485,7 @@ public int compareTo(TimestampColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHighValue()).compareTo(other.isSetHighValue()); + lastComparison = java.lang.Boolean.compare(isSetHighValue(), other.isSetHighValue()); if (lastComparison != 0) { return lastComparison; } @@ -497,7 +495,7 @@ public int compareTo(TimestampColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumNulls()).compareTo(other.isSetNumNulls()); + lastComparison = java.lang.Boolean.compare(isSetNumNulls(), other.isSetNumNulls()); if (lastComparison != 0) { return lastComparison; } @@ -507,7 +505,7 @@ public int compareTo(TimestampColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNumDVs()).compareTo(other.isSetNumDVs()); + lastComparison = java.lang.Boolean.compare(isSetNumDVs(), other.isSetNumDVs()); if (lastComparison != 0) { return lastComparison; } @@ -517,7 +515,7 @@ public int compareTo(TimestampColumnStatsData other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetBitVectors()).compareTo(other.isSetBitVectors()); + lastComparison = java.lang.Boolean.compare(isSetBitVectors(), other.isSetBitVectors()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TruncateTableRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TruncateTableRequest.java index 62191a8b098a..d1892a3b5312 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TruncateTableRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TruncateTableRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class TruncateTableRequest 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("TruncateTableRequest"); @@ -393,8 +393,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TruncateTableRequest) return this.equals((TruncateTableRequest)that); return false; @@ -489,7 +487,7 @@ public int compareTo(TruncateTableRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = java.lang.Boolean.compare(isSetDbName(), other.isSetDbName()); if (lastComparison != 0) { return lastComparison; } @@ -499,7 +497,7 @@ public int compareTo(TruncateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = java.lang.Boolean.compare(isSetTableName(), other.isSetTableName()); if (lastComparison != 0) { return lastComparison; } @@ -509,7 +507,7 @@ public int compareTo(TruncateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartNames()).compareTo(other.isSetPartNames()); + lastComparison = java.lang.Boolean.compare(isSetPartNames(), other.isSetPartNames()); if (lastComparison != 0) { return lastComparison; } @@ -519,7 +517,7 @@ public int compareTo(TruncateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteId()).compareTo(other.isSetWriteId()); + lastComparison = java.lang.Boolean.compare(isSetWriteId(), other.isSetWriteId()); if (lastComparison != 0) { return lastComparison; } @@ -529,7 +527,7 @@ public int compareTo(TruncateTableRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetValidWriteIdList()).compareTo(other.isSetValidWriteIdList()); + lastComparison = java.lang.Boolean.compare(isSetValidWriteIdList(), other.isSetValidWriteIdList()); if (lastComparison != 0) { return lastComparison; } @@ -810,7 +808,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, TruncateTableRequest java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list131 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list131 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partNames = new java.util.ArrayList(_list131.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem132; for (int _i133 = 0; _i133 < _list131.size; ++_i133) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TruncateTableResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TruncateTableResponse.java index 85bc9c5026eb..9b1c0439540d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TruncateTableResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TruncateTableResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class TruncateTableResponse 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("TruncateTableResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TruncateTableResponse) return this.equals((TruncateTableResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnAbortedException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnAbortedException.java index 5e2a5af8e0c7..62694daa9fca 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnAbortedException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnAbortedException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class TxnAbortedException 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("TxnAbortedException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TxnAbortedException) return this.equals((TxnAbortedException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TxnAbortedException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnInfo.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnInfo.java index cd6ed970bbf7..060d362d5ad6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnInfo.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnInfo.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class TxnInfo 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("TxnInfo"); @@ -581,8 +581,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TxnInfo) return this.equals((TxnInfo)that); return false; @@ -727,7 +725,7 @@ public int compareTo(TxnInfo other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetId()).compareTo(other.isSetId()); + lastComparison = java.lang.Boolean.compare(isSetId(), other.isSetId()); if (lastComparison != 0) { return lastComparison; } @@ -737,7 +735,7 @@ public int compareTo(TxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetState()).compareTo(other.isSetState()); + lastComparison = java.lang.Boolean.compare(isSetState(), other.isSetState()); if (lastComparison != 0) { return lastComparison; } @@ -747,7 +745,7 @@ public int compareTo(TxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUser()).compareTo(other.isSetUser()); + lastComparison = java.lang.Boolean.compare(isSetUser(), other.isSetUser()); if (lastComparison != 0) { return lastComparison; } @@ -757,7 +755,7 @@ public int compareTo(TxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHostname()).compareTo(other.isSetHostname()); + lastComparison = java.lang.Boolean.compare(isSetHostname(), other.isSetHostname()); if (lastComparison != 0) { return lastComparison; } @@ -767,7 +765,7 @@ public int compareTo(TxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAgentInfo()).compareTo(other.isSetAgentInfo()); + lastComparison = java.lang.Boolean.compare(isSetAgentInfo(), other.isSetAgentInfo()); if (lastComparison != 0) { return lastComparison; } @@ -777,7 +775,7 @@ public int compareTo(TxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetHeartbeatCount()).compareTo(other.isSetHeartbeatCount()); + lastComparison = java.lang.Boolean.compare(isSetHeartbeatCount(), other.isSetHeartbeatCount()); if (lastComparison != 0) { return lastComparison; } @@ -787,7 +785,7 @@ public int compareTo(TxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMetaInfo()).compareTo(other.isSetMetaInfo()); + lastComparison = java.lang.Boolean.compare(isSetMetaInfo(), other.isSetMetaInfo()); if (lastComparison != 0) { return lastComparison; } @@ -797,7 +795,7 @@ public int compareTo(TxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStartedTime()).compareTo(other.isSetStartedTime()); + lastComparison = java.lang.Boolean.compare(isSetStartedTime(), other.isSetStartedTime()); if (lastComparison != 0) { return lastComparison; } @@ -807,7 +805,7 @@ public int compareTo(TxnInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetLastHeartbeatTime()).compareTo(other.isSetLastHeartbeatTime()); + lastComparison = java.lang.Boolean.compare(isSetLastHeartbeatTime(), other.isSetLastHeartbeatTime()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnOpenException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnOpenException.java index 58a5869d5ffa..90ee3086297b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnOpenException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnOpenException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class TxnOpenException 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("TxnOpenException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TxnOpenException) return this.equals((TxnOpenException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(TxnOpenException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnState.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnState.java index 97eaafcba425..cbcc9da4dde4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnState.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnState.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum TxnState implements org.apache.thrift.TEnum { COMMITTED(1), ABORTED(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnToWriteId.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnToWriteId.java index 0c89c6c514e7..b5d731dc49cd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnToWriteId.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnToWriteId.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class TxnToWriteId 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("TxnToWriteId"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof TxnToWriteId) return this.equals((TxnToWriteId)that); return false; @@ -281,7 +279,7 @@ public int compareTo(TxnToWriteId other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTxnId()).compareTo(other.isSetTxnId()); + lastComparison = java.lang.Boolean.compare(isSetTxnId(), other.isSetTxnId()); if (lastComparison != 0) { return lastComparison; } @@ -291,7 +289,7 @@ public int compareTo(TxnToWriteId other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteId()).compareTo(other.isSetWriteId()); + lastComparison = java.lang.Boolean.compare(isSetWriteId(), other.isSetWriteId()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnType.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnType.java index a43d8e6134de..ea2b2fc1bd0a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnType.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/TxnType.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum TxnType implements org.apache.thrift.TEnum { DEFAULT(0), REPL_CREATED(1), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Type.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Type.java index 01db772c4564..b415ac7d2a36 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Type.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Type.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Type 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("Type"); @@ -344,8 +344,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Type) return this.equals((Type)that); return false; @@ -427,7 +425,7 @@ public int compareTo(Type other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -437,7 +435,7 @@ public int compareTo(Type other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType1()).compareTo(other.isSetType1()); + lastComparison = java.lang.Boolean.compare(isSetType1(), other.isSetType1()); if (lastComparison != 0) { return lastComparison; } @@ -447,7 +445,7 @@ public int compareTo(Type other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetType2()).compareTo(other.isSetType2()); + lastComparison = java.lang.Boolean.compare(isSetType2(), other.isSetType2()); if (lastComparison != 0) { return lastComparison; } @@ -457,7 +455,7 @@ public int compareTo(Type other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFields()).compareTo(other.isSetFields()); + lastComparison = java.lang.Boolean.compare(isSetFields(), other.isSetFields()); if (lastComparison != 0) { return lastComparison; } @@ -726,7 +724,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, Type struct) throws } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list53 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list53 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.fields = new java.util.ArrayList(_list53.size); @org.apache.thrift.annotation.Nullable FieldSchema _elem54; for (int _i55 = 0; _i55 < _list53.size; ++_i55) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UniqueConstraintsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UniqueConstraintsRequest.java index 1ca8baa23785..1bb1d08d5c39 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UniqueConstraintsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UniqueConstraintsRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class UniqueConstraintsRequest 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("UniqueConstraintsRequest"); @@ -278,8 +278,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof UniqueConstraintsRequest) return this.equals((UniqueConstraintsRequest)that); return false; @@ -348,7 +346,7 @@ public int compareTo(UniqueConstraintsRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetCatName()).compareTo(other.isSetCatName()); + lastComparison = java.lang.Boolean.compare(isSetCatName(), other.isSetCatName()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(UniqueConstraintsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + lastComparison = java.lang.Boolean.compare(isSetDb_name(), other.isSetDb_name()); if (lastComparison != 0) { return lastComparison; } @@ -368,7 +366,7 @@ public int compareTo(UniqueConstraintsRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTbl_name()).compareTo(other.isSetTbl_name()); + lastComparison = java.lang.Boolean.compare(isSetTbl_name(), other.isSetTbl_name()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UniqueConstraintsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UniqueConstraintsResponse.java index 80cd49d96c3b..6111a992231e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UniqueConstraintsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UniqueConstraintsResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class UniqueConstraintsResponse 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("UniqueConstraintsResponse"); @@ -199,8 +199,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof UniqueConstraintsResponse) return this.equals((UniqueConstraintsResponse)that); return false; @@ -243,7 +241,7 @@ public int compareTo(UniqueConstraintsResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetUniqueConstraints()).compareTo(other.isSetUniqueConstraints()); + lastComparison = java.lang.Boolean.compare(isSetUniqueConstraints(), other.isSetUniqueConstraints()); if (lastComparison != 0) { return lastComparison; } @@ -402,7 +400,7 @@ public void write(org.apache.thrift.protocol.TProtocol prot, UniqueConstraintsRe public void read(org.apache.thrift.protocol.TProtocol prot, UniqueConstraintsResponse struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list421 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list421 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.uniqueConstraints = new java.util.ArrayList(_list421.size); @org.apache.thrift.annotation.Nullable SQLUniqueConstraint _elem422; for (int _i423 = 0; _i423 < _list421.size; ++_i423) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnknownDBException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnknownDBException.java index 234bf6f2b03d..01172b55add1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnknownDBException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnknownDBException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class UnknownDBException 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("UnknownDBException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof UnknownDBException) return this.equals((UnknownDBException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(UnknownDBException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnknownPartitionException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnknownPartitionException.java index 3e2ccb1bd372..6fb8e8ace825 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnknownPartitionException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnknownPartitionException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class UnknownPartitionException 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("UnknownPartitionException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof UnknownPartitionException) return this.equals((UnknownPartitionException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(UnknownPartitionException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnknownTableException.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnknownTableException.java index b986d0045232..2bb9fae57456 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnknownTableException.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnknownTableException.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class UnknownTableException 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("UnknownTableException"); @@ -178,8 +178,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof UnknownTableException) return this.equals((UnknownTableException)that); return false; @@ -222,7 +220,7 @@ public int compareTo(UnknownTableException other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMessage()).compareTo(other.isSetMessage()); + lastComparison = java.lang.Boolean.compare(isSetMessage(), other.isSetMessage()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnlockRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnlockRequest.java index 6eac8264b985..37a8696a4574 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnlockRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/UnlockRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class UnlockRequest 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("UnlockRequest"); @@ -179,8 +179,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof UnlockRequest) return this.equals((UnlockRequest)that); return false; @@ -221,7 +219,7 @@ public int compareTo(UnlockRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetLockid()).compareTo(other.isSetLockid()); + lastComparison = java.lang.Boolean.compare(isSetLockid(), other.isSetLockid()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Version.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Version.java index 577ef78fa3ab..d55344d1a974 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Version.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Version.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class Version 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("Version"); @@ -228,8 +228,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof Version) return this.equals((Version)that); return false; @@ -285,7 +283,7 @@ public int compareTo(Version other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetVersion()).compareTo(other.isSetVersion()); + lastComparison = java.lang.Boolean.compare(isSetVersion(), other.isSetVersion()); if (lastComparison != 0) { return lastComparison; } @@ -295,7 +293,7 @@ public int compareTo(Version other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetComments()).compareTo(other.isSetComments()); + lastComparison = java.lang.Boolean.compare(isSetComments(), other.isSetComments()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterPoolRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterPoolRequest.java index 9bc294f01c1c..c7b6386dcee7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterPoolRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterPoolRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMAlterPoolRequest 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("WMAlterPoolRequest"); @@ -220,8 +220,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMAlterPoolRequest) return this.equals((WMAlterPoolRequest)that); return false; @@ -277,7 +275,7 @@ public int compareTo(WMAlterPoolRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPool()).compareTo(other.isSetPool()); + lastComparison = java.lang.Boolean.compare(isSetPool(), other.isSetPool()); if (lastComparison != 0) { return lastComparison; } @@ -287,7 +285,7 @@ public int compareTo(WMAlterPoolRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPoolPath()).compareTo(other.isSetPoolPath()); + lastComparison = java.lang.Boolean.compare(isSetPoolPath(), other.isSetPoolPath()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterPoolResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterPoolResponse.java index 63dba3339156..f3610a2b817c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterPoolResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterPoolResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMAlterPoolResponse 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("WMAlterPoolResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMAlterPoolResponse) return this.equals((WMAlterPoolResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterResourcePlanRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterResourcePlanRequest.java index 1d70f76a049e..da2e4db0e556 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterResourcePlanRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterResourcePlanRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMAlterResourcePlanRequest 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("WMAlterResourcePlanRequest"); @@ -408,8 +408,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMAlterResourcePlanRequest) return this.equals((WMAlterResourcePlanRequest)that); return false; @@ -517,7 +515,7 @@ public int compareTo(WMAlterResourcePlanRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlanName()).compareTo(other.isSetResourcePlanName()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlanName(), other.isSetResourcePlanName()); if (lastComparison != 0) { return lastComparison; } @@ -527,7 +525,7 @@ public int compareTo(WMAlterResourcePlanRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlan()).compareTo(other.isSetResourcePlan()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlan(), other.isSetResourcePlan()); if (lastComparison != 0) { return lastComparison; } @@ -537,7 +535,7 @@ public int compareTo(WMAlterResourcePlanRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsEnableAndActivate()).compareTo(other.isSetIsEnableAndActivate()); + lastComparison = java.lang.Boolean.compare(isSetIsEnableAndActivate(), other.isSetIsEnableAndActivate()); if (lastComparison != 0) { return lastComparison; } @@ -547,7 +545,7 @@ public int compareTo(WMAlterResourcePlanRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsForceDeactivate()).compareTo(other.isSetIsForceDeactivate()); + lastComparison = java.lang.Boolean.compare(isSetIsForceDeactivate(), other.isSetIsForceDeactivate()); if (lastComparison != 0) { return lastComparison; } @@ -557,7 +555,7 @@ public int compareTo(WMAlterResourcePlanRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsReplace()).compareTo(other.isSetIsReplace()); + lastComparison = java.lang.Boolean.compare(isSetIsReplace(), other.isSetIsReplace()); if (lastComparison != 0) { return lastComparison; } @@ -567,7 +565,7 @@ public int compareTo(WMAlterResourcePlanRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterResourcePlanResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterResourcePlanResponse.java index 1b7b8a8edaac..1eb4422d065d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterResourcePlanResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterResourcePlanResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMAlterResourcePlanResponse 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("WMAlterResourcePlanResponse"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMAlterResourcePlanResponse) return this.equals((WMAlterResourcePlanResponse)that); return false; @@ -216,7 +214,7 @@ public int compareTo(WMAlterResourcePlanResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetFullResourcePlan()).compareTo(other.isSetFullResourcePlan()); + lastComparison = java.lang.Boolean.compare(isSetFullResourcePlan(), other.isSetFullResourcePlan()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterTriggerRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterTriggerRequest.java index 82a75ac4788c..87210c6ba4b7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterTriggerRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterTriggerRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMAlterTriggerRequest 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("WMAlterTriggerRequest"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMAlterTriggerRequest) return this.equals((WMAlterTriggerRequest)that); return false; @@ -216,7 +214,7 @@ public int compareTo(WMAlterTriggerRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTrigger()).compareTo(other.isSetTrigger()); + lastComparison = java.lang.Boolean.compare(isSetTrigger(), other.isSetTrigger()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterTriggerResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterTriggerResponse.java index 89e1ede39537..e5bdf7337363 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterTriggerResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMAlterTriggerResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMAlterTriggerResponse 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("WMAlterTriggerResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMAlterTriggerResponse) return this.equals((WMAlterTriggerResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrDropTriggerToPoolMappingRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrDropTriggerToPoolMappingRequest.java index a2c762a78e65..4f6b9420682a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrDropTriggerToPoolMappingRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrDropTriggerToPoolMappingRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMCreateOrDropTriggerToPoolMappingRequest 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("WMCreateOrDropTriggerToPoolMappingRequest"); @@ -364,8 +364,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMCreateOrDropTriggerToPoolMappingRequest) return this.equals((WMCreateOrDropTriggerToPoolMappingRequest)that); return false; @@ -460,7 +458,7 @@ public int compareTo(WMCreateOrDropTriggerToPoolMappingRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlanName()).compareTo(other.isSetResourcePlanName()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlanName(), other.isSetResourcePlanName()); if (lastComparison != 0) { return lastComparison; } @@ -470,7 +468,7 @@ public int compareTo(WMCreateOrDropTriggerToPoolMappingRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTriggerName()).compareTo(other.isSetTriggerName()); + lastComparison = java.lang.Boolean.compare(isSetTriggerName(), other.isSetTriggerName()); if (lastComparison != 0) { return lastComparison; } @@ -480,7 +478,7 @@ public int compareTo(WMCreateOrDropTriggerToPoolMappingRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPoolPath()).compareTo(other.isSetPoolPath()); + lastComparison = java.lang.Boolean.compare(isSetPoolPath(), other.isSetPoolPath()); if (lastComparison != 0) { return lastComparison; } @@ -490,7 +488,7 @@ public int compareTo(WMCreateOrDropTriggerToPoolMappingRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDrop()).compareTo(other.isSetDrop()); + lastComparison = java.lang.Boolean.compare(isSetDrop(), other.isSetDrop()); if (lastComparison != 0) { return lastComparison; } @@ -500,7 +498,7 @@ public int compareTo(WMCreateOrDropTriggerToPoolMappingRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrDropTriggerToPoolMappingResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrDropTriggerToPoolMappingResponse.java index 619e0bd369f6..7cb862ba0ad4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrDropTriggerToPoolMappingResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrDropTriggerToPoolMappingResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMCreateOrDropTriggerToPoolMappingResponse 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("WMCreateOrDropTriggerToPoolMappingResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMCreateOrDropTriggerToPoolMappingResponse) return this.equals((WMCreateOrDropTriggerToPoolMappingResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrUpdateMappingRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrUpdateMappingRequest.java index afdfc0b22c39..a7dcd32a3d64 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrUpdateMappingRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrUpdateMappingRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMCreateOrUpdateMappingRequest 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("WMCreateOrUpdateMappingRequest"); @@ -220,8 +220,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMCreateOrUpdateMappingRequest) return this.equals((WMCreateOrUpdateMappingRequest)that); return false; @@ -277,7 +275,7 @@ public int compareTo(WMCreateOrUpdateMappingRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMapping()).compareTo(other.isSetMapping()); + lastComparison = java.lang.Boolean.compare(isSetMapping(), other.isSetMapping()); if (lastComparison != 0) { return lastComparison; } @@ -287,7 +285,7 @@ public int compareTo(WMCreateOrUpdateMappingRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetUpdate()).compareTo(other.isSetUpdate()); + lastComparison = java.lang.Boolean.compare(isSetUpdate(), other.isSetUpdate()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrUpdateMappingResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrUpdateMappingResponse.java index 884a85097814..8b9002ceae1e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrUpdateMappingResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateOrUpdateMappingResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMCreateOrUpdateMappingResponse 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("WMCreateOrUpdateMappingResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMCreateOrUpdateMappingResponse) return this.equals((WMCreateOrUpdateMappingResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreatePoolRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreatePoolRequest.java index c8ae875574c1..7c3107a3f6e1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreatePoolRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreatePoolRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMCreatePoolRequest 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("WMCreatePoolRequest"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMCreatePoolRequest) return this.equals((WMCreatePoolRequest)that); return false; @@ -216,7 +214,7 @@ public int compareTo(WMCreatePoolRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPool()).compareTo(other.isSetPool()); + lastComparison = java.lang.Boolean.compare(isSetPool(), other.isSetPool()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreatePoolResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreatePoolResponse.java index dbc5d78ed38a..50ca39d241f5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreatePoolResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreatePoolResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMCreatePoolResponse 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("WMCreatePoolResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMCreatePoolResponse) return this.equals((WMCreatePoolResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateResourcePlanRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateResourcePlanRequest.java index 32a90cd13d77..08881b7634c9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateResourcePlanRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateResourcePlanRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMCreateResourcePlanRequest 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("WMCreateResourcePlanRequest"); @@ -220,8 +220,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMCreateResourcePlanRequest) return this.equals((WMCreateResourcePlanRequest)that); return false; @@ -277,7 +275,7 @@ public int compareTo(WMCreateResourcePlanRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlan()).compareTo(other.isSetResourcePlan()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlan(), other.isSetResourcePlan()); if (lastComparison != 0) { return lastComparison; } @@ -287,7 +285,7 @@ public int compareTo(WMCreateResourcePlanRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetCopyFrom()).compareTo(other.isSetCopyFrom()); + lastComparison = java.lang.Boolean.compare(isSetCopyFrom(), other.isSetCopyFrom()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateResourcePlanResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateResourcePlanResponse.java index 160c5c583946..ffff3e18492c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateResourcePlanResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateResourcePlanResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMCreateResourcePlanResponse 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("WMCreateResourcePlanResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMCreateResourcePlanResponse) return this.equals((WMCreateResourcePlanResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateTriggerRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateTriggerRequest.java index a74d3ab36dd6..114b8188fd27 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateTriggerRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateTriggerRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMCreateTriggerRequest 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("WMCreateTriggerRequest"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMCreateTriggerRequest) return this.equals((WMCreateTriggerRequest)that); return false; @@ -216,7 +214,7 @@ public int compareTo(WMCreateTriggerRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTrigger()).compareTo(other.isSetTrigger()); + lastComparison = java.lang.Boolean.compare(isSetTrigger(), other.isSetTrigger()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateTriggerResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateTriggerResponse.java index dbdf3aecbc96..3bacb033e414 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateTriggerResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMCreateTriggerResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMCreateTriggerResponse 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("WMCreateTriggerResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMCreateTriggerResponse) return this.equals((WMCreateTriggerResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropMappingRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropMappingRequest.java index 3ea0059f633b..b7c02b68d846 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropMappingRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropMappingRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMDropMappingRequest 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("WMDropMappingRequest"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMDropMappingRequest) return this.equals((WMDropMappingRequest)that); return false; @@ -216,7 +214,7 @@ public int compareTo(WMDropMappingRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetMapping()).compareTo(other.isSetMapping()); + lastComparison = java.lang.Boolean.compare(isSetMapping(), other.isSetMapping()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropMappingResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropMappingResponse.java index 2eda8785733f..56e878b93626 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropMappingResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropMappingResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMDropMappingResponse 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("WMDropMappingResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMDropMappingResponse) return this.equals((WMDropMappingResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropPoolRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropPoolRequest.java index ad7c8046c226..9bfd8ee93e47 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropPoolRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropPoolRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMDropPoolRequest 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("WMDropPoolRequest"); @@ -268,8 +268,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMDropPoolRequest) return this.equals((WMDropPoolRequest)that); return false; @@ -338,7 +336,7 @@ public int compareTo(WMDropPoolRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlanName()).compareTo(other.isSetResourcePlanName()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlanName(), other.isSetResourcePlanName()); if (lastComparison != 0) { return lastComparison; } @@ -348,7 +346,7 @@ public int compareTo(WMDropPoolRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPoolPath()).compareTo(other.isSetPoolPath()); + lastComparison = java.lang.Boolean.compare(isSetPoolPath(), other.isSetPoolPath()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(WMDropPoolRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropPoolResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropPoolResponse.java index 16943ce77b40..781e7fbc71ec 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropPoolResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropPoolResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMDropPoolResponse 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("WMDropPoolResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMDropPoolResponse) return this.equals((WMDropPoolResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropResourcePlanRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropResourcePlanRequest.java index 4e25a10a9f97..c0513d522b77 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropResourcePlanRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropResourcePlanRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMDropResourcePlanRequest 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("WMDropResourcePlanRequest"); @@ -220,8 +220,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMDropResourcePlanRequest) return this.equals((WMDropResourcePlanRequest)that); return false; @@ -277,7 +275,7 @@ public int compareTo(WMDropResourcePlanRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlanName()).compareTo(other.isSetResourcePlanName()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlanName(), other.isSetResourcePlanName()); if (lastComparison != 0) { return lastComparison; } @@ -287,7 +285,7 @@ public int compareTo(WMDropResourcePlanRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropResourcePlanResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropResourcePlanResponse.java index d6deaaff503c..131211da8e97 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropResourcePlanResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropResourcePlanResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMDropResourcePlanResponse 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("WMDropResourcePlanResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMDropResourcePlanResponse) return this.equals((WMDropResourcePlanResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropTriggerRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropTriggerRequest.java index 579e18acd079..2794780fc172 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropTriggerRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropTriggerRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMDropTriggerRequest 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("WMDropTriggerRequest"); @@ -268,8 +268,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMDropTriggerRequest) return this.equals((WMDropTriggerRequest)that); return false; @@ -338,7 +336,7 @@ public int compareTo(WMDropTriggerRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlanName()).compareTo(other.isSetResourcePlanName()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlanName(), other.isSetResourcePlanName()); if (lastComparison != 0) { return lastComparison; } @@ -348,7 +346,7 @@ public int compareTo(WMDropTriggerRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTriggerName()).compareTo(other.isSetTriggerName()); + lastComparison = java.lang.Boolean.compare(isSetTriggerName(), other.isSetTriggerName()); if (lastComparison != 0) { return lastComparison; } @@ -358,7 +356,7 @@ public int compareTo(WMDropTriggerRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropTriggerResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropTriggerResponse.java index d42d9f13d6d3..0eabfc3fdfa0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropTriggerResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMDropTriggerResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMDropTriggerResponse 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("WMDropTriggerResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMDropTriggerResponse) return this.equals((WMDropTriggerResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMFullResourcePlan.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMFullResourcePlan.java index 9c66c96a8b47..c2f20727fd0f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMFullResourcePlan.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMFullResourcePlan.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMFullResourcePlan 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("WMFullResourcePlan"); @@ -457,8 +457,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMFullResourcePlan) return this.equals((WMFullResourcePlan)that); return false; @@ -553,7 +551,7 @@ public int compareTo(WMFullResourcePlan other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPlan()).compareTo(other.isSetPlan()); + lastComparison = java.lang.Boolean.compare(isSetPlan(), other.isSetPlan()); if (lastComparison != 0) { return lastComparison; } @@ -563,7 +561,7 @@ public int compareTo(WMFullResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPools()).compareTo(other.isSetPools()); + lastComparison = java.lang.Boolean.compare(isSetPools(), other.isSetPools()); if (lastComparison != 0) { return lastComparison; } @@ -573,7 +571,7 @@ public int compareTo(WMFullResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetMappings()).compareTo(other.isSetMappings()); + lastComparison = java.lang.Boolean.compare(isSetMappings(), other.isSetMappings()); if (lastComparison != 0) { return lastComparison; } @@ -583,7 +581,7 @@ public int compareTo(WMFullResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTriggers()).compareTo(other.isSetTriggers()); + lastComparison = java.lang.Boolean.compare(isSetTriggers(), other.isSetTriggers()); if (lastComparison != 0) { return lastComparison; } @@ -593,7 +591,7 @@ public int compareTo(WMFullResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPoolTriggers()).compareTo(other.isSetPoolTriggers()); + lastComparison = java.lang.Boolean.compare(isSetPoolTriggers(), other.isSetPoolTriggers()); if (lastComparison != 0) { return lastComparison; } @@ -952,7 +950,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WMFullResourcePlan s struct.plan.read(iprot); struct.setPlanIsSet(true); { - org.apache.thrift.protocol.TList _list1110 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1110 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.pools = new java.util.ArrayList(_list1110.size); @org.apache.thrift.annotation.Nullable WMPool _elem1111; for (int _i1112 = 0; _i1112 < _list1110.size; ++_i1112) @@ -966,7 +964,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WMFullResourcePlan s java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1113 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1113 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.mappings = new java.util.ArrayList(_list1113.size); @org.apache.thrift.annotation.Nullable WMMapping _elem1114; for (int _i1115 = 0; _i1115 < _list1113.size; ++_i1115) @@ -980,7 +978,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WMFullResourcePlan s } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1116 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1116 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.triggers = new java.util.ArrayList(_list1116.size); @org.apache.thrift.annotation.Nullable WMTrigger _elem1117; for (int _i1118 = 0; _i1118 < _list1116.size; ++_i1118) @@ -994,7 +992,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WMFullResourcePlan s } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1119 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1119 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.poolTriggers = new java.util.ArrayList(_list1119.size); @org.apache.thrift.annotation.Nullable WMPoolTrigger _elem1120; for (int _i1121 = 0; _i1121 < _list1119.size; ++_i1121) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetActiveResourcePlanRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetActiveResourcePlanRequest.java index c7b220c4747c..6fe00506d342 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetActiveResourcePlanRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetActiveResourcePlanRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMGetActiveResourcePlanRequest 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("WMGetActiveResourcePlanRequest"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMGetActiveResourcePlanRequest) return this.equals((WMGetActiveResourcePlanRequest)that); return false; @@ -216,7 +214,7 @@ public int compareTo(WMGetActiveResourcePlanRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetActiveResourcePlanResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetActiveResourcePlanResponse.java index 87b0f285d8a7..72803423a506 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetActiveResourcePlanResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetActiveResourcePlanResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMGetActiveResourcePlanResponse 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("WMGetActiveResourcePlanResponse"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMGetActiveResourcePlanResponse) return this.equals((WMGetActiveResourcePlanResponse)that); return false; @@ -216,7 +214,7 @@ public int compareTo(WMGetActiveResourcePlanResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlan()).compareTo(other.isSetResourcePlan()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlan(), other.isSetResourcePlan()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetAllResourcePlanRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetAllResourcePlanRequest.java index 407a2b2da89b..b5fff95925ed 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetAllResourcePlanRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetAllResourcePlanRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMGetAllResourcePlanRequest 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("WMGetAllResourcePlanRequest"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMGetAllResourcePlanRequest) return this.equals((WMGetAllResourcePlanRequest)that); return false; @@ -216,7 +214,7 @@ public int compareTo(WMGetAllResourcePlanRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetAllResourcePlanResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetAllResourcePlanResponse.java index 90c85247cb2b..5db282df99fd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetAllResourcePlanResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetAllResourcePlanResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMGetAllResourcePlanResponse 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("WMGetAllResourcePlanResponse"); @@ -193,8 +193,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMGetAllResourcePlanResponse) return this.equals((WMGetAllResourcePlanResponse)that); return false; @@ -237,7 +235,7 @@ public int compareTo(WMGetAllResourcePlanResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlans()).compareTo(other.isSetResourcePlans()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlans(), other.isSetResourcePlans()); if (lastComparison != 0) { return lastComparison; } @@ -405,7 +403,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WMGetAllResourcePlan java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1127 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1127 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.resourcePlans = new java.util.ArrayList(_list1127.size); @org.apache.thrift.annotation.Nullable WMResourcePlan _elem1128; for (int _i1129 = 0; _i1129 < _list1127.size; ++_i1129) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetResourcePlanRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetResourcePlanRequest.java index 2e4fc6b7cd39..d060870bdef8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetResourcePlanRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetResourcePlanRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMGetResourcePlanRequest 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("WMGetResourcePlanRequest"); @@ -220,8 +220,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMGetResourcePlanRequest) return this.equals((WMGetResourcePlanRequest)that); return false; @@ -277,7 +275,7 @@ public int compareTo(WMGetResourcePlanRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlanName()).compareTo(other.isSetResourcePlanName()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlanName(), other.isSetResourcePlanName()); if (lastComparison != 0) { return lastComparison; } @@ -287,7 +285,7 @@ public int compareTo(WMGetResourcePlanRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetResourcePlanResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetResourcePlanResponse.java index 15007a646f57..614da0fe5e17 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetResourcePlanResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetResourcePlanResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMGetResourcePlanResponse 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("WMGetResourcePlanResponse"); @@ -172,8 +172,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMGetResourcePlanResponse) return this.equals((WMGetResourcePlanResponse)that); return false; @@ -216,7 +214,7 @@ public int compareTo(WMGetResourcePlanResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlan()).compareTo(other.isSetResourcePlan()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlan(), other.isSetResourcePlan()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetTriggersForResourePlanRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetTriggersForResourePlanRequest.java index ac33ee4007df..55bbf1998285 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetTriggersForResourePlanRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetTriggersForResourePlanRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMGetTriggersForResourePlanRequest 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("WMGetTriggersForResourePlanRequest"); @@ -220,8 +220,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMGetTriggersForResourePlanRequest) return this.equals((WMGetTriggersForResourePlanRequest)that); return false; @@ -277,7 +275,7 @@ public int compareTo(WMGetTriggersForResourePlanRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlanName()).compareTo(other.isSetResourcePlanName()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlanName(), other.isSetResourcePlanName()); if (lastComparison != 0) { return lastComparison; } @@ -287,7 +285,7 @@ public int compareTo(WMGetTriggersForResourePlanRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetTriggersForResourePlanResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetTriggersForResourePlanResponse.java index afe8939d934c..3d6d6aa1189d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetTriggersForResourePlanResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetTriggersForResourePlanResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMGetTriggersForResourePlanResponse 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("WMGetTriggersForResourePlanResponse"); @@ -193,8 +193,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMGetTriggersForResourePlanResponse) return this.equals((WMGetTriggersForResourePlanResponse)that); return false; @@ -237,7 +235,7 @@ public int compareTo(WMGetTriggersForResourePlanResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTriggers()).compareTo(other.isSetTriggers()); + lastComparison = java.lang.Boolean.compare(isSetTriggers(), other.isSetTriggers()); if (lastComparison != 0) { return lastComparison; } @@ -405,7 +403,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WMGetTriggersForReso java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1151 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + org.apache.thrift.protocol.TList _list1151 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRUCT); struct.triggers = new java.util.ArrayList(_list1151.size); @org.apache.thrift.annotation.Nullable WMTrigger _elem1152; for (int _i1153 = 0; _i1153 < _list1151.size; ++_i1153) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMMapping.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMMapping.java index 1cb1888b9c99..6169afbe884b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMMapping.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMMapping.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMMapping 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("WMMapping"); @@ -423,8 +423,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMMapping) return this.equals((WMMapping)that); return false; @@ -532,7 +530,7 @@ public int compareTo(WMMapping other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlanName()).compareTo(other.isSetResourcePlanName()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlanName(), other.isSetResourcePlanName()); if (lastComparison != 0) { return lastComparison; } @@ -542,7 +540,7 @@ public int compareTo(WMMapping other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEntityType()).compareTo(other.isSetEntityType()); + lastComparison = java.lang.Boolean.compare(isSetEntityType(), other.isSetEntityType()); if (lastComparison != 0) { return lastComparison; } @@ -552,7 +550,7 @@ public int compareTo(WMMapping other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetEntityName()).compareTo(other.isSetEntityName()); + lastComparison = java.lang.Boolean.compare(isSetEntityName(), other.isSetEntityName()); if (lastComparison != 0) { return lastComparison; } @@ -562,7 +560,7 @@ public int compareTo(WMMapping other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPoolPath()).compareTo(other.isSetPoolPath()); + lastComparison = java.lang.Boolean.compare(isSetPoolPath(), other.isSetPoolPath()); if (lastComparison != 0) { return lastComparison; } @@ -572,7 +570,7 @@ public int compareTo(WMMapping other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetOrdering()).compareTo(other.isSetOrdering()); + lastComparison = java.lang.Boolean.compare(isSetOrdering(), other.isSetOrdering()); if (lastComparison != 0) { return lastComparison; } @@ -582,7 +580,7 @@ public int compareTo(WMMapping other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMNullablePool.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMNullablePool.java index d80d1355ecdd..b8d12aa889a2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMNullablePool.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMNullablePool.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMNullablePool 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("WMNullablePool"); @@ -465,8 +465,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMNullablePool) return this.equals((WMNullablePool)that); return false; @@ -587,7 +585,7 @@ public int compareTo(WMNullablePool other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlanName()).compareTo(other.isSetResourcePlanName()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlanName(), other.isSetResourcePlanName()); if (lastComparison != 0) { return lastComparison; } @@ -597,7 +595,7 @@ public int compareTo(WMNullablePool other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPoolPath()).compareTo(other.isSetPoolPath()); + lastComparison = java.lang.Boolean.compare(isSetPoolPath(), other.isSetPoolPath()); if (lastComparison != 0) { return lastComparison; } @@ -607,7 +605,7 @@ public int compareTo(WMNullablePool other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAllocFraction()).compareTo(other.isSetAllocFraction()); + lastComparison = java.lang.Boolean.compare(isSetAllocFraction(), other.isSetAllocFraction()); if (lastComparison != 0) { return lastComparison; } @@ -617,7 +615,7 @@ public int compareTo(WMNullablePool other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetQueryParallelism()).compareTo(other.isSetQueryParallelism()); + lastComparison = java.lang.Boolean.compare(isSetQueryParallelism(), other.isSetQueryParallelism()); if (lastComparison != 0) { return lastComparison; } @@ -627,7 +625,7 @@ public int compareTo(WMNullablePool other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSchedulingPolicy()).compareTo(other.isSetSchedulingPolicy()); + lastComparison = java.lang.Boolean.compare(isSetSchedulingPolicy(), other.isSetSchedulingPolicy()); if (lastComparison != 0) { return lastComparison; } @@ -637,7 +635,7 @@ public int compareTo(WMNullablePool other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsSetSchedulingPolicy()).compareTo(other.isSetIsSetSchedulingPolicy()); + lastComparison = java.lang.Boolean.compare(isSetIsSetSchedulingPolicy(), other.isSetIsSetSchedulingPolicy()); if (lastComparison != 0) { return lastComparison; } @@ -647,7 +645,7 @@ public int compareTo(WMNullablePool other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMNullableResourcePlan.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMNullableResourcePlan.java index 5f9407538b29..a211334187df 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMNullableResourcePlan.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMNullableResourcePlan.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMNullableResourcePlan 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("WMNullableResourcePlan"); @@ -468,8 +468,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMNullableResourcePlan) return this.equals((WMNullableResourcePlan)that); return false; @@ -590,7 +588,7 @@ public int compareTo(WMNullableResourcePlan other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -600,7 +598,7 @@ public int compareTo(WMNullableResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -610,7 +608,7 @@ public int compareTo(WMNullableResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetQueryParallelism()).compareTo(other.isSetQueryParallelism()); + lastComparison = java.lang.Boolean.compare(isSetQueryParallelism(), other.isSetQueryParallelism()); if (lastComparison != 0) { return lastComparison; } @@ -620,7 +618,7 @@ public int compareTo(WMNullableResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsSetQueryParallelism()).compareTo(other.isSetIsSetQueryParallelism()); + lastComparison = java.lang.Boolean.compare(isSetIsSetQueryParallelism(), other.isSetIsSetQueryParallelism()); if (lastComparison != 0) { return lastComparison; } @@ -630,7 +628,7 @@ public int compareTo(WMNullableResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDefaultPoolPath()).compareTo(other.isSetDefaultPoolPath()); + lastComparison = java.lang.Boolean.compare(isSetDefaultPoolPath(), other.isSetDefaultPoolPath()); if (lastComparison != 0) { return lastComparison; } @@ -640,7 +638,7 @@ public int compareTo(WMNullableResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsSetDefaultPoolPath()).compareTo(other.isSetIsSetDefaultPoolPath()); + lastComparison = java.lang.Boolean.compare(isSetIsSetDefaultPoolPath(), other.isSetIsSetDefaultPoolPath()); if (lastComparison != 0) { return lastComparison; } @@ -650,7 +648,7 @@ public int compareTo(WMNullableResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMPool.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMPool.java index 66a8c60c692c..914190a7d687 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMPool.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMPool.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMPool 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("WMPool"); @@ -419,8 +419,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMPool) return this.equals((WMPool)that); return false; @@ -528,7 +526,7 @@ public int compareTo(WMPool other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlanName()).compareTo(other.isSetResourcePlanName()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlanName(), other.isSetResourcePlanName()); if (lastComparison != 0) { return lastComparison; } @@ -538,7 +536,7 @@ public int compareTo(WMPool other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPoolPath()).compareTo(other.isSetPoolPath()); + lastComparison = java.lang.Boolean.compare(isSetPoolPath(), other.isSetPoolPath()); if (lastComparison != 0) { return lastComparison; } @@ -548,7 +546,7 @@ public int compareTo(WMPool other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetAllocFraction()).compareTo(other.isSetAllocFraction()); + lastComparison = java.lang.Boolean.compare(isSetAllocFraction(), other.isSetAllocFraction()); if (lastComparison != 0) { return lastComparison; } @@ -558,7 +556,7 @@ public int compareTo(WMPool other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetQueryParallelism()).compareTo(other.isSetQueryParallelism()); + lastComparison = java.lang.Boolean.compare(isSetQueryParallelism(), other.isSetQueryParallelism()); if (lastComparison != 0) { return lastComparison; } @@ -568,7 +566,7 @@ public int compareTo(WMPool other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetSchedulingPolicy()).compareTo(other.isSetSchedulingPolicy()); + lastComparison = java.lang.Boolean.compare(isSetSchedulingPolicy(), other.isSetSchedulingPolicy()); if (lastComparison != 0) { return lastComparison; } @@ -578,7 +576,7 @@ public int compareTo(WMPool other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMPoolSchedulingPolicy.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMPoolSchedulingPolicy.java index 0433733e0a0a..e45fb43234af 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMPoolSchedulingPolicy.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMPoolSchedulingPolicy.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum WMPoolSchedulingPolicy implements org.apache.thrift.TEnum { FAIR(1), FIFO(2); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMPoolTrigger.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMPoolTrigger.java index fec4c9297669..29816e06c40e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMPoolTrigger.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMPoolTrigger.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMPoolTrigger 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("WMPoolTrigger"); @@ -277,8 +277,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMPoolTrigger) return this.equals((WMPoolTrigger)that); return false; @@ -347,7 +345,7 @@ public int compareTo(WMPoolTrigger other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetPool()).compareTo(other.isSetPool()); + lastComparison = java.lang.Boolean.compare(isSetPool(), other.isSetPool()); if (lastComparison != 0) { return lastComparison; } @@ -357,7 +355,7 @@ public int compareTo(WMPoolTrigger other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTrigger()).compareTo(other.isSetTrigger()); + lastComparison = java.lang.Boolean.compare(isSetTrigger(), other.isSetTrigger()); if (lastComparison != 0) { return lastComparison; } @@ -367,7 +365,7 @@ public int compareTo(WMPoolTrigger other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMResourcePlan.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMResourcePlan.java index 6dab49d953ec..c7dc292b9d8e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMResourcePlan.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMResourcePlan.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMResourcePlan 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("WMResourcePlan"); @@ -383,8 +383,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMResourcePlan) return this.equals((WMResourcePlan)that); return false; @@ -479,7 +477,7 @@ public int compareTo(WMResourcePlan other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + lastComparison = java.lang.Boolean.compare(isSetName(), other.isSetName()); if (lastComparison != 0) { return lastComparison; } @@ -489,7 +487,7 @@ public int compareTo(WMResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetStatus()).compareTo(other.isSetStatus()); + lastComparison = java.lang.Boolean.compare(isSetStatus(), other.isSetStatus()); if (lastComparison != 0) { return lastComparison; } @@ -499,7 +497,7 @@ public int compareTo(WMResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetQueryParallelism()).compareTo(other.isSetQueryParallelism()); + lastComparison = java.lang.Boolean.compare(isSetQueryParallelism(), other.isSetQueryParallelism()); if (lastComparison != 0) { return lastComparison; } @@ -509,7 +507,7 @@ public int compareTo(WMResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDefaultPoolPath()).compareTo(other.isSetDefaultPoolPath()); + lastComparison = java.lang.Boolean.compare(isSetDefaultPoolPath(), other.isSetDefaultPoolPath()); if (lastComparison != 0) { return lastComparison; } @@ -519,7 +517,7 @@ public int compareTo(WMResourcePlan other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMResourcePlanStatus.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMResourcePlanStatus.java index 14986ce3b9eb..2ac302ddb87b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMResourcePlanStatus.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMResourcePlanStatus.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") public enum WMResourcePlanStatus implements org.apache.thrift.TEnum { ACTIVE(1), ENABLED(2), diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMTrigger.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMTrigger.java index 58839d5bdcf8..c8dfa397e24f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMTrigger.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMTrigger.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMTrigger 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("WMTrigger"); @@ -421,8 +421,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMTrigger) return this.equals((WMTrigger)that); return false; @@ -530,7 +528,7 @@ public int compareTo(WMTrigger other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlanName()).compareTo(other.isSetResourcePlanName()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlanName(), other.isSetResourcePlanName()); if (lastComparison != 0) { return lastComparison; } @@ -540,7 +538,7 @@ public int compareTo(WMTrigger other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTriggerName()).compareTo(other.isSetTriggerName()); + lastComparison = java.lang.Boolean.compare(isSetTriggerName(), other.isSetTriggerName()); if (lastComparison != 0) { return lastComparison; } @@ -550,7 +548,7 @@ public int compareTo(WMTrigger other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTriggerExpression()).compareTo(other.isSetTriggerExpression()); + lastComparison = java.lang.Boolean.compare(isSetTriggerExpression(), other.isSetTriggerExpression()); if (lastComparison != 0) { return lastComparison; } @@ -560,7 +558,7 @@ public int compareTo(WMTrigger other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetActionExpression()).compareTo(other.isSetActionExpression()); + lastComparison = java.lang.Boolean.compare(isSetActionExpression(), other.isSetActionExpression()); if (lastComparison != 0) { return lastComparison; } @@ -570,7 +568,7 @@ public int compareTo(WMTrigger other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetIsInUnmanaged()).compareTo(other.isSetIsInUnmanaged()); + lastComparison = java.lang.Boolean.compare(isSetIsInUnmanaged(), other.isSetIsInUnmanaged()); if (lastComparison != 0) { return lastComparison; } @@ -580,7 +578,7 @@ public int compareTo(WMTrigger other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMValidateResourcePlanRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMValidateResourcePlanRequest.java index 48d87c3d4bfd..9ccf6c0f6d99 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMValidateResourcePlanRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMValidateResourcePlanRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMValidateResourcePlanRequest 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("WMValidateResourcePlanRequest"); @@ -220,8 +220,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMValidateResourcePlanRequest) return this.equals((WMValidateResourcePlanRequest)that); return false; @@ -277,7 +275,7 @@ public int compareTo(WMValidateResourcePlanRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetResourcePlanName()).compareTo(other.isSetResourcePlanName()); + lastComparison = java.lang.Boolean.compare(isSetResourcePlanName(), other.isSetResourcePlanName()); if (lastComparison != 0) { return lastComparison; } @@ -287,7 +285,7 @@ public int compareTo(WMValidateResourcePlanRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetNs()).compareTo(other.isSetNs()); + lastComparison = java.lang.Boolean.compare(isSetNs(), other.isSetNs()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMValidateResourcePlanResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMValidateResourcePlanResponse.java index 58e99dea38cf..f0dae34e8b9d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMValidateResourcePlanResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMValidateResourcePlanResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WMValidateResourcePlanResponse 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("WMValidateResourcePlanResponse"); @@ -256,8 +256,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WMValidateResourcePlanResponse) return this.equals((WMValidateResourcePlanResponse)that); return false; @@ -313,7 +311,7 @@ public int compareTo(WMValidateResourcePlanResponse other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetErrors()).compareTo(other.isSetErrors()); + lastComparison = java.lang.Boolean.compare(isSetErrors(), other.isSetErrors()); if (lastComparison != 0) { return lastComparison; } @@ -323,7 +321,7 @@ public int compareTo(WMValidateResourcePlanResponse other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWarnings()).compareTo(other.isSetWarnings()); + lastComparison = java.lang.Boolean.compare(isSetWarnings(), other.isSetWarnings()); if (lastComparison != 0) { return lastComparison; } @@ -544,7 +542,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WMValidateResourcePl java.util.BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1140 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1140 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.errors = new java.util.ArrayList(_list1140.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1141; for (int _i1142 = 0; _i1142 < _list1140.size; ++_i1142) @@ -557,7 +555,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WMValidateResourcePl } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1143 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list1143 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.warnings = new java.util.ArrayList(_list1143.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem1144; for (int _i1145 = 0; _i1145 < _list1143.size; ++_i1145) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WriteEventInfo.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WriteEventInfo.java index 5f7f20ac0392..adbbe6bbd0fe 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WriteEventInfo.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WriteEventInfo.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WriteEventInfo 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("WriteEventInfo"); @@ -474,8 +474,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WriteEventInfo) return this.equals((WriteEventInfo)that); return false; @@ -594,7 +592,7 @@ public int compareTo(WriteEventInfo other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetWriteId()).compareTo(other.isSetWriteId()); + lastComparison = java.lang.Boolean.compare(isSetWriteId(), other.isSetWriteId()); if (lastComparison != 0) { return lastComparison; } @@ -604,7 +602,7 @@ public int compareTo(WriteEventInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDatabase()).compareTo(other.isSetDatabase()); + lastComparison = java.lang.Boolean.compare(isSetDatabase(), other.isSetDatabase()); if (lastComparison != 0) { return lastComparison; } @@ -614,7 +612,7 @@ public int compareTo(WriteEventInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable()).compareTo(other.isSetTable()); + lastComparison = java.lang.Boolean.compare(isSetTable(), other.isSetTable()); if (lastComparison != 0) { return lastComparison; } @@ -624,7 +622,7 @@ public int compareTo(WriteEventInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFiles()).compareTo(other.isSetFiles()); + lastComparison = java.lang.Boolean.compare(isSetFiles(), other.isSetFiles()); if (lastComparison != 0) { return lastComparison; } @@ -634,7 +632,7 @@ public int compareTo(WriteEventInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartition()).compareTo(other.isSetPartition()); + lastComparison = java.lang.Boolean.compare(isSetPartition(), other.isSetPartition()); if (lastComparison != 0) { return lastComparison; } @@ -644,7 +642,7 @@ public int compareTo(WriteEventInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTableObj()).compareTo(other.isSetTableObj()); + lastComparison = java.lang.Boolean.compare(isSetTableObj(), other.isSetTableObj()); if (lastComparison != 0) { return lastComparison; } @@ -654,7 +652,7 @@ public int compareTo(WriteEventInfo other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionObj()).compareTo(other.isSetPartitionObj()); + lastComparison = java.lang.Boolean.compare(isSetPartitionObj(), other.isSetPartitionObj()); if (lastComparison != 0) { return lastComparison; } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WriteNotificationLogRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WriteNotificationLogRequest.java index 2226b987ec31..483d80f22d84 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WriteNotificationLogRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WriteNotificationLogRequest.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WriteNotificationLogRequest 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("WriteNotificationLogRequest"); @@ -445,8 +445,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WriteNotificationLogRequest) return this.equals((WriteNotificationLogRequest)that); return false; @@ -550,7 +548,7 @@ public int compareTo(WriteNotificationLogRequest other) { int lastComparison = 0; - lastComparison = java.lang.Boolean.valueOf(isSetTxnId()).compareTo(other.isSetTxnId()); + lastComparison = java.lang.Boolean.compare(isSetTxnId(), other.isSetTxnId()); if (lastComparison != 0) { return lastComparison; } @@ -560,7 +558,7 @@ public int compareTo(WriteNotificationLogRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetWriteId()).compareTo(other.isSetWriteId()); + lastComparison = java.lang.Boolean.compare(isSetWriteId(), other.isSetWriteId()); if (lastComparison != 0) { return lastComparison; } @@ -570,7 +568,7 @@ public int compareTo(WriteNotificationLogRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetDb()).compareTo(other.isSetDb()); + lastComparison = java.lang.Boolean.compare(isSetDb(), other.isSetDb()); if (lastComparison != 0) { return lastComparison; } @@ -580,7 +578,7 @@ public int compareTo(WriteNotificationLogRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetTable()).compareTo(other.isSetTable()); + lastComparison = java.lang.Boolean.compare(isSetTable(), other.isSetTable()); if (lastComparison != 0) { return lastComparison; } @@ -590,7 +588,7 @@ public int compareTo(WriteNotificationLogRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetFileInfo()).compareTo(other.isSetFileInfo()); + lastComparison = java.lang.Boolean.compare(isSetFileInfo(), other.isSetFileInfo()); if (lastComparison != 0) { return lastComparison; } @@ -600,7 +598,7 @@ public int compareTo(WriteNotificationLogRequest other) { return lastComparison; } } - lastComparison = java.lang.Boolean.valueOf(isSetPartitionVals()).compareTo(other.isSetPartitionVals()); + lastComparison = java.lang.Boolean.compare(isSetPartitionVals(), other.isSetPartitionVals()); if (lastComparison != 0) { return lastComparison; } @@ -902,7 +900,7 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WriteNotificationLog java.util.BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list939 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + org.apache.thrift.protocol.TList _list939 = iprot.readListBegin(org.apache.thrift.protocol.TType.STRING); struct.partitionVals = new java.util.ArrayList(_list939.size); @org.apache.thrift.annotation.Nullable java.lang.String _elem940; for (int _i941 = 0; _i941 < _list939.size; ++_i941) diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WriteNotificationLogResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WriteNotificationLogResponse.java index b6c92f62199a..75e1533237b2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WriteNotificationLogResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WriteNotificationLogResponse.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -7,7 +7,7 @@ package org.apache.hadoop.hive.metastore.api; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) -@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)") +@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)") @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class WriteNotificationLogResponse 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("WriteNotificationLogResponse"); @@ -122,8 +122,6 @@ public boolean isSet(_Fields field) { @Override public boolean equals(java.lang.Object that) { - if (that == null) - return false; if (that instanceof WriteNotificationLogResponse) return this.equals((WriteNotificationLogResponse)that); return false; diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java index 350e20a888dd..8d6d4a7e528b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java @@ -1,5 +1,5 @@ /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AbortTxnRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AbortTxnRequest.php index 18fe310cc0b2..6dd1869d712d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AbortTxnRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AbortTxnRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -35,6 +35,7 @@ class AbortTxnRequest 'var' => 'txn_type', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\TxnType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AbortTxnsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AbortTxnsRequest.php index fea5b12c1f67..277d1cbc443b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AbortTxnsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AbortTxnsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddCheckConstraintRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddCheckConstraintRequest.php index b3ce20305285..fc1161f691b2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddCheckConstraintRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddCheckConstraintRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddDefaultConstraintRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddDefaultConstraintRequest.php index b763b3e7671a..4cf89f5f4d9f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddDefaultConstraintRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddDefaultConstraintRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddDynamicPartitions.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddDynamicPartitions.php index 40231e5cc97f..fff372647206 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddDynamicPartitions.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddDynamicPartitions.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -54,6 +54,7 @@ class AddDynamicPartitions 'var' => 'operationType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\DataOperationType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddForeignKeyRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddForeignKeyRequest.php index 2d9674853e3e..e2a533860413 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddForeignKeyRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddForeignKeyRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddNotNullConstraintRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddNotNullConstraintRequest.php index 3909691edbaa..53b4979f8115 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddNotNullConstraintRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddNotNullConstraintRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPackageRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPackageRequest.php index dc73e375980a..1419558661c9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPackageRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPackageRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPartitionsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPartitionsRequest.php index 1661e0e777d4..a381aa0dc0b3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPartitionsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPartitionsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPartitionsResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPartitionsResult.php index 90d2061ef8da..04e303578818 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPartitionsResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPartitionsResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPrimaryKeyRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPrimaryKeyRequest.php index 381aaa2b60dc..edb9530420af 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPrimaryKeyRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddPrimaryKeyRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddUniqueConstraintRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddUniqueConstraintRequest.php index 9daae1687098..324dd2c2762d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddUniqueConstraintRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AddUniqueConstraintRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AggrStats.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AggrStats.php index 697671919d51..f9ccb56031cf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AggrStats.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AggrStats.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllTableConstraintsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllTableConstraintsRequest.php index 951910a1627c..ab8554cf968f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllTableConstraintsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllTableConstraintsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllTableConstraintsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllTableConstraintsResponse.php index 2deafe8d7f57..eaa9b9d81a91 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllTableConstraintsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllTableConstraintsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllocateTableWriteIdsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllocateTableWriteIdsRequest.php index 3248f6717c52..40f8ddf83c1b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllocateTableWriteIdsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllocateTableWriteIdsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllocateTableWriteIdsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllocateTableWriteIdsResponse.php index 651bb8d4aa11..bc2b727435f5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllocateTableWriteIdsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AllocateTableWriteIdsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlreadyExistsException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlreadyExistsException.php index 47b1910817c2..52d3ea74bf2e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlreadyExistsException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlreadyExistsException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterCatalogRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterCatalogRequest.php index 40bc53ba752e..186ed77840da 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterCatalogRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterCatalogRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterISchemaRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterISchemaRequest.php index 47728ce0f990..c92030e1757a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterISchemaRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterISchemaRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterPartitionsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterPartitionsRequest.php index e31a76454f12..e46db9d194fe 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterPartitionsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterPartitionsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterPartitionsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterPartitionsResponse.php index f7eff31871a4..36fd1d65e732 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterPartitionsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterPartitionsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterTableRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterTableRequest.php index 3dedfcb0d7b5..e85aee80f29d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterTableRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterTableRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterTableResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterTableResponse.php index 6494438de645..16c9d6cf6d8d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterTableResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/AlterTableResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/BasicTxnInfo.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/BasicTxnInfo.php index 7c69ef102bc5..e4d9fb7c67f1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/BasicTxnInfo.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/BasicTxnInfo.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/BinaryColumnStatsData.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/BinaryColumnStatsData.php index 203c0dba88ef..00bec454c8e4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/BinaryColumnStatsData.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/BinaryColumnStatsData.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/BooleanColumnStatsData.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/BooleanColumnStatsData.php index 5e98605f5803..e223e7a8c707 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/BooleanColumnStatsData.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/BooleanColumnStatsData.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CacheFileMetadataRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CacheFileMetadataRequest.php index 5344f4183533..de61658d2e08 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CacheFileMetadataRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CacheFileMetadataRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CacheFileMetadataResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CacheFileMetadataResult.php index f74a3859f972..6345e5cf29e7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CacheFileMetadataResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CacheFileMetadataResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Catalog.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Catalog.php index d19a45521b4a..e7425cb24d15 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Catalog.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Catalog.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CheckConstraintsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CheckConstraintsRequest.php index 8485a05abec3..2b3d49488bd0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CheckConstraintsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CheckConstraintsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CheckConstraintsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CheckConstraintsResponse.php index ab72bbd054a9..fe092af37322 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CheckConstraintsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CheckConstraintsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CheckLockRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CheckLockRequest.php index 1d9ad28e8357..14b13b6459ae 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CheckLockRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CheckLockRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClearFileMetadataRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClearFileMetadataRequest.php index 8815b08e5428..f0a20bd35665 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClearFileMetadataRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClearFileMetadataRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClearFileMetadataResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClearFileMetadataResult.php index 83a43f759d7f..b5cbdf623978 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClearFileMetadataResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClearFileMetadataResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClientCapabilities.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClientCapabilities.php index d20329600710..bbbc7b9033e2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClientCapabilities.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClientCapabilities.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -28,6 +28,7 @@ class ClientCapabilities 'etype' => TType::I32, 'elem' => array( 'type' => TType::I32, + 'class' => '\metastore\ClientCapability', ), ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClientCapability.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClientCapability.php index 95904e03940d..d4dfd4a50ebd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClientCapability.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ClientCapability.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CmRecycleRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CmRecycleRequest.php index 8caca0746732..cb58dd313d38 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CmRecycleRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CmRecycleRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CmRecycleResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CmRecycleResponse.php index 53190953db88..8efd54cbe082 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CmRecycleResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CmRecycleResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatistics.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatistics.php index ecd6eda3715f..3d9d3e3c1dd6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatistics.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatistics.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatisticsData.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatisticsData.php index 70c34452fcfd..f80dc76ca6e9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatisticsData.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatisticsData.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatisticsDesc.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatisticsDesc.php index 6280d1193016..a02125a7cbe0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatisticsDesc.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatisticsDesc.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatisticsObj.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatisticsObj.php index ec01b3dec33e..3f60769052cd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatisticsObj.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ColumnStatisticsObj.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CommitTxnKeyValue.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CommitTxnKeyValue.php index e400f0db45de..17f8a509613d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CommitTxnKeyValue.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CommitTxnKeyValue.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CommitTxnRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CommitTxnRequest.php index 4decb7c16621..3dd54dafbd0d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CommitTxnRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CommitTxnRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -62,6 +62,7 @@ class CommitTxnRequest 'var' => 'txn_type', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\TxnType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionInfoStruct.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionInfoStruct.php index dc003b6a60e9..95fd83b20e40 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionInfoStruct.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionInfoStruct.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -45,6 +45,7 @@ class CompactionInfoStruct 'var' => 'type', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\metastore\CompactionType', ), 6 => array( 'var' => 'runas', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionRequest.php index 9c1209c5dd30..904ddf4e0f43 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -40,6 +40,7 @@ class CompactionRequest 'var' => 'type', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\metastore\CompactionType', ), 5 => array( 'var' => 'runas', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionResponse.php index 7808c640ca73..755bb4699eed 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionType.php index aad8abdff427..973b591d8d07 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CompactionType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ConfigValSecurityException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ConfigValSecurityException.php index 0decb1894a70..31e07c01e3fc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ConfigValSecurityException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ConfigValSecurityException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Constant.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Constant.php index 1f1a41d4bf2c..2287522c331a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Constant.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Constant.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateCatalogRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateCatalogRequest.php index f8af3c7e7cfe..038ee576abf6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateCatalogRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateCatalogRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateDataConnectorRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateDataConnectorRequest.php index 3b4ce80df491..e60a8d6a73e5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateDataConnectorRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateDataConnectorRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateDatabaseRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateDatabaseRequest.php index 18fefa4371ab..203676537456 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateDatabaseRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateDatabaseRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -64,6 +64,7 @@ class CreateDatabaseRequest 'var' => 'ownerType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 8 => array( 'var' => 'catalogName', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateTableRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateTableRequest.php index 0f2157d20a9d..b86315bd6628 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateTableRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreateTableRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreationMetadata.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreationMetadata.php index 832d6c085672..e3abe0dce8b2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreationMetadata.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CreationMetadata.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CurrentNotificationEventId.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CurrentNotificationEventId.php index ff92d82d27e4..0e4682543c68 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CurrentNotificationEventId.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/CurrentNotificationEventId.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DataConnector.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DataConnector.php index c39c3e2eca3d..422ac48ae2c1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DataConnector.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DataConnector.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -63,6 +63,7 @@ class DataConnector 'var' => 'ownerType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 8 => array( 'var' => 'createTime', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DataOperationType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DataOperationType.php index 8f570c00bb32..135b497f0778 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DataOperationType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DataOperationType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Database.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Database.php index 2f4ef5dbf7b7..34265ccdf526 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Database.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Database.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -64,6 +64,7 @@ class Database 'var' => 'ownerType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 8 => array( 'var' => 'catalogName', @@ -84,6 +85,7 @@ class Database 'var' => 'type', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\DatabaseType', ), 12 => array( 'var' => 'connector_name', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DatabaseType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DatabaseType.php index 9b91ed9a0856..1bdab6ed147d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DatabaseType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DatabaseType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Date.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Date.php index 24e7a885a3d1..467daf373016 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Date.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Date.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DateColumnStatsData.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DateColumnStatsData.php index 0dbf106ad2ff..bfed581a9bd1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DateColumnStatsData.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DateColumnStatsData.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Decimal.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Decimal.php index 7740e233ef88..806ebc914249 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Decimal.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Decimal.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DecimalColumnStatsData.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DecimalColumnStatsData.php index c4c45f30c5bc..ca51182acfcd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DecimalColumnStatsData.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DecimalColumnStatsData.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DefaultConstraintsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DefaultConstraintsRequest.php index f20ba5066e13..4a05266c2c7e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DefaultConstraintsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DefaultConstraintsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DefaultConstraintsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DefaultConstraintsResponse.php index b5bcecdc8e2a..2e7c131d978a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DefaultConstraintsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DefaultConstraintsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DoubleColumnStatsData.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DoubleColumnStatsData.php index 0bf763f6e610..2c656507c342 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DoubleColumnStatsData.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DoubleColumnStatsData.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropCatalogRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropCatalogRequest.php index af29f0f027d4..2e59c992e668 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropCatalogRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropCatalogRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropConstraintRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropConstraintRequest.php index 39316e79fc5f..da2e13f6c3ea 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropConstraintRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropConstraintRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPackageRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPackageRequest.php index 22298bb6f1e1..127e51ca2552 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPackageRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPackageRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPartitionsExpr.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPartitionsExpr.php index 6bf6c7d4f6fd..4dc0bc543bf5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPartitionsExpr.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPartitionsExpr.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPartitionsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPartitionsRequest.php index 7095d8eeb45f..4a4ae19ea193 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPartitionsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPartitionsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPartitionsResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPartitionsResult.php index 096f695f193e..a03b469c0f1c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPartitionsResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/DropPartitionsResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/EnvironmentContext.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/EnvironmentContext.php index 5b83c6f33db9..d824ec684efd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/EnvironmentContext.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/EnvironmentContext.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/EventRequestType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/EventRequestType.php index 559553a8c25c..a7a5c1289f96 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/EventRequestType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/EventRequestType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ExtendedTableInfo.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ExtendedTableInfo.php index d1235ebd3a9e..e3ab5967f5ef 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ExtendedTableInfo.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ExtendedTableInfo.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FieldSchema.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FieldSchema.php index 78206e6764e5..7267d266ed41 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FieldSchema.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FieldSchema.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FileMetadataExprType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FileMetadataExprType.php index d6079076ce2a..7d55b0219702 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FileMetadataExprType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FileMetadataExprType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FindSchemasByColsResp.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FindSchemasByColsResp.php index 1f124f151638..34f8bb18b031 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FindSchemasByColsResp.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FindSchemasByColsResp.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FindSchemasByColsRqst.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FindSchemasByColsRqst.php index 1f4a14ce2747..9186ec4d03e8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FindSchemasByColsRqst.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FindSchemasByColsRqst.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FireEventRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FireEventRequest.php index 3969587cd27b..bb6f872f25bf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FireEventRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FireEventRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FireEventRequestData.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FireEventRequestData.php index 0b5c0135d013..f6f3024228b6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FireEventRequestData.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FireEventRequestData.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FireEventResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FireEventResponse.php index 859548c939ee..c3f733dd38c2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FireEventResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FireEventResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ForeignKeysRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ForeignKeysRequest.php index 0353d1af8e77..f0c0e1042e71 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ForeignKeysRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ForeignKeysRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ForeignKeysResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ForeignKeysResponse.php index cbf2eb0e794d..814890342a39 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ForeignKeysResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ForeignKeysResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Function.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Function.php index e8d520fbfff0..87738657bbf5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Function.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Function.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -45,6 +45,7 @@ class Function 'var' => 'ownerType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 6 => array( 'var' => 'createTime', @@ -55,6 +56,7 @@ class Function 'var' => 'functionType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\FunctionType', ), 8 => array( 'var' => 'resourceUris', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FunctionType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FunctionType.php index ab2d01709538..93a08a863066 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FunctionType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/FunctionType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetAllFunctionsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetAllFunctionsResponse.php index 79921d6d614e..e0b27ec4e854 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetAllFunctionsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetAllFunctionsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetCatalogRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetCatalogRequest.php index 413c6d9cfc4d..17f8a0153f55 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetCatalogRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetCatalogRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetCatalogResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetCatalogResponse.php index d1f449c6c1c4..b22475cfa229 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetCatalogResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetCatalogResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetCatalogsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetCatalogsResponse.php index 48a30ebcc831..e3143e0beb56 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetCatalogsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetCatalogsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetDataConnectorRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetDataConnectorRequest.php index 397189aaf936..3c9a87f550b8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetDataConnectorRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetDataConnectorRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetDatabaseRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetDatabaseRequest.php index 0b47807b406f..31aebff18df9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetDatabaseRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetDatabaseRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFieldsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFieldsRequest.php index 1bab702c8217..a2a6891de4c3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFieldsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFieldsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFieldsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFieldsResponse.php index c2f435f8e359..2c66f4e62e07 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFieldsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFieldsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataByExprRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataByExprRequest.php index 8a475be2bf9e..ac0eee5e8921 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataByExprRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataByExprRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -44,6 +44,7 @@ class GetFileMetadataByExprRequest 'var' => 'type', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\FileMetadataExprType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataByExprResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataByExprResult.php index e669db5dfc72..6365c8e64ef4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataByExprResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataByExprResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataRequest.php index c01e9cd2d39d..3458caeee109 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataResult.php index d445db3623ba..1498d140852c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetFileMetadataResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetLatestCommittedCompactionInfoRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetLatestCommittedCompactionInfoRequest.php index 869be8b6902c..3c4e221d9a51 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetLatestCommittedCompactionInfoRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetLatestCommittedCompactionInfoRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetLatestCommittedCompactionInfoResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetLatestCommittedCompactionInfoResponse.php index 687af0bbcb14..527098e94df5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetLatestCommittedCompactionInfoResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetLatestCommittedCompactionInfoResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetOpenTxnsInfoResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetOpenTxnsInfoResponse.php index e687d35d33b8..1a05ccd73229 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetOpenTxnsInfoResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetOpenTxnsInfoResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetOpenTxnsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetOpenTxnsRequest.php index da413bdb0464..8ae85e6ae9bf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetOpenTxnsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetOpenTxnsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -28,6 +28,7 @@ class GetOpenTxnsRequest 'etype' => TType::I32, 'elem' => array( 'type' => TType::I32, + 'class' => '\metastore\TxnType', ), ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetOpenTxnsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetOpenTxnsResponse.php index b70969cf6feb..9119c9b2f2d6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetOpenTxnsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetOpenTxnsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPackageRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPackageRequest.php index 4d3e5cd5231a..49ee666e0e79 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPackageRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPackageRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionNamesPsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionNamesPsRequest.php index f8541d3152fe..eaf990ffba32 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionNamesPsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionNamesPsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionNamesPsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionNamesPsResponse.php index 74be3b8a85b5..0c149864b630 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionNamesPsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionNamesPsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionRequest.php index 2b4247b0a1d0..c823d0b7a72f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionResponse.php index dc9e0417f4f9..e7ffcc6e7f3e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsByNamesRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsByNamesRequest.php index 3498403ecf76..cfd7181450a7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsByNamesRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsByNamesRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsByNamesResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsByNamesResult.php index ae303b252d4c..549837026de8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsByNamesResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsByNamesResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsFilterSpec.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsFilterSpec.php index 00da420e7c4b..cb3b536f8f88 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsFilterSpec.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsFilterSpec.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -25,6 +25,7 @@ class GetPartitionsFilterSpec 'var' => 'filterMode', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PartitionFilterMode', ), 8 => array( 'var' => 'filters', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsPsWithAuthRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsPsWithAuthRequest.php index 523ae7e5d173..8a59da079bef 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsPsWithAuthRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsPsWithAuthRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsPsWithAuthResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsPsWithAuthResponse.php index 8213bb63441a..b72938143a3b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsPsWithAuthResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsPsWithAuthResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsRequest.php index 2c130b0700aa..3df113f87f50 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsResponse.php index 916902b5433b..bea6787848f3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPartitionsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPrincipalsInRoleRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPrincipalsInRoleRequest.php index d35fc8abca60..80628073e764 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPrincipalsInRoleRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPrincipalsInRoleRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPrincipalsInRoleResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPrincipalsInRoleResponse.php index 506a8cb7e476..c643055457d9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPrincipalsInRoleResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetPrincipalsInRoleResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetProjectionsSpec.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetProjectionsSpec.php index a4175d2a1666..83c4bd0d51c2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetProjectionsSpec.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetProjectionsSpec.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetReplicationMetricsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetReplicationMetricsRequest.php index 45f5fffe9241..9b0b3ffb15ad 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetReplicationMetricsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetReplicationMetricsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetRoleGrantsForPrincipalRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetRoleGrantsForPrincipalRequest.php index d28b56ca4559..43db506b1297 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetRoleGrantsForPrincipalRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetRoleGrantsForPrincipalRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -30,6 +30,7 @@ class GetRoleGrantsForPrincipalRequest 'var' => 'principal_type', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetRoleGrantsForPrincipalResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetRoleGrantsForPrincipalResponse.php index 1d9eba732cca..4d87b6b4fcd4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetRoleGrantsForPrincipalResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetRoleGrantsForPrincipalResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetRuntimeStatsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetRuntimeStatsRequest.php index 6d0a7abb2980..502f4d3cd512 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetRuntimeStatsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetRuntimeStatsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetSchemaRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetSchemaRequest.php index cbeacf1e2c02..6a4a3d2aad77 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetSchemaRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetSchemaRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetSchemaResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetSchemaResponse.php index e7eebd12fb72..9d279cbfffc7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetSchemaResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetSchemaResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetSerdeRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetSerdeRequest.php index 99f2c97812fe..d66caa2ac0c9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetSerdeRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetSerdeRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTableRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTableRequest.php index 6845a4d3b9a1..b671ee4f01e7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTableRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTableRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTableResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTableResult.php index 99616d3df37b..039ace19c56e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTableResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTableResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesExtRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesExtRequest.php index f05d6b613b3e..658ae9c24c15 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesExtRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesExtRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesExtRequestFields.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesExtRequestFields.php index c0b672249bab..5b5a97d6d399 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesExtRequestFields.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesExtRequestFields.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesRequest.php index 1c6f8948036d..318731a9d1f0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesResult.php index be91bd3a2455..21b5b6cb288c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetTablesResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetValidWriteIdsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetValidWriteIdsRequest.php index 731ed11e5583..cccba25ecae5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetValidWriteIdsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetValidWriteIdsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetValidWriteIdsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetValidWriteIdsResponse.php index daeec77c9ce0..4eb2e76db9a2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetValidWriteIdsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GetValidWriteIdsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokePrivilegeRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokePrivilegeRequest.php index ff60ced04853..e9c9aaa77e73 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokePrivilegeRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokePrivilegeRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -25,6 +25,7 @@ class GrantRevokePrivilegeRequest 'var' => 'requestType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\GrantRevokeType', ), 2 => array( 'var' => 'privileges', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokePrivilegeResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokePrivilegeResponse.php index 96383f33c020..562fad5359db 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokePrivilegeResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokePrivilegeResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokeRoleRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokeRoleRequest.php index 2c964df81d39..bc1fdaaa6a9e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokeRoleRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokeRoleRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -25,6 +25,7 @@ class GrantRevokeRoleRequest 'var' => 'requestType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\GrantRevokeType', ), 2 => array( 'var' => 'roleName', @@ -40,6 +41,7 @@ class GrantRevokeRoleRequest 'var' => 'principalType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 5 => array( 'var' => 'grantor', @@ -50,6 +52,7 @@ class GrantRevokeRoleRequest 'var' => 'grantorType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 7 => array( 'var' => 'grantOption', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokeRoleResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokeRoleResponse.php index edcb76b8afc1..a2c88d1c1626 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokeRoleResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokeRoleResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokeType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokeType.php index dfc5e9c1f26f..3112041a4d59 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokeType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/GrantRevokeType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HeartbeatRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HeartbeatRequest.php index fde2716806e4..aed6433835d6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HeartbeatRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HeartbeatRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HeartbeatTxnRangeRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HeartbeatTxnRangeRequest.php index d903a3282ed5..ba182b421c01 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HeartbeatTxnRangeRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HeartbeatTxnRangeRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HeartbeatTxnRangeResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HeartbeatTxnRangeResponse.php index 23609606bdba..dac29adf2942 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HeartbeatTxnRangeResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HeartbeatTxnRangeResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HiveObjectPrivilege.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HiveObjectPrivilege.php index f79fc8ac2867..ae9df2cc5c0f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HiveObjectPrivilege.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HiveObjectPrivilege.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -36,6 +36,7 @@ class HiveObjectPrivilege 'var' => 'principalType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 4 => array( 'var' => 'grantInfo', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HiveObjectRef.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HiveObjectRef.php index 72e0300c7801..493a7cd1ff70 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HiveObjectRef.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HiveObjectRef.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -25,6 +25,7 @@ class HiveObjectRef 'var' => 'objectType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\HiveObjectType', ), 2 => array( 'var' => 'dbName', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HiveObjectType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HiveObjectType.php index f6c2692354ea..0ddac042fb64 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HiveObjectType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/HiveObjectType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ISchema.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ISchema.php index edfcd6a38446..7cf331a5cc4c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ISchema.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ISchema.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -25,6 +25,7 @@ class ISchema 'var' => 'schemaType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\SchemaType', ), 2 => array( 'var' => 'name', @@ -45,11 +46,13 @@ class ISchema 'var' => 'compatibility', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\SchemaCompatibility', ), 6 => array( 'var' => 'validationLevel', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\SchemaValidation', ), 7 => array( 'var' => 'canEvolve', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ISchemaName.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ISchemaName.php index d377fb09fae4..0b6ca21a1f16 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ISchemaName.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ISchemaName.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InsertEventRequestData.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InsertEventRequestData.php index 3c37558007e7..3760e5c2b1ea 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InsertEventRequestData.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InsertEventRequestData.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidInputException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidInputException.php index 961febae22cb..05546312e3f1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidInputException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidInputException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidObjectException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidObjectException.php index 26428e10d67a..6fe9b0e80fcc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidObjectException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidObjectException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidOperationException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidOperationException.php index 51a86015010f..2fd80cf7ceaf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidOperationException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidOperationException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidPartitionException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidPartitionException.php index 39cb0d303711..6f9a002c3203 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidPartitionException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/InvalidPartitionException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ListPackageRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ListPackageRequest.php index c9960bfa9447..4cb0c89f30f3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ListPackageRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ListPackageRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ListStoredProcedureRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ListStoredProcedureRequest.php index 709ceb24bd2c..0871e3f44336 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ListStoredProcedureRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ListStoredProcedureRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockComponent.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockComponent.php index a8041a8e3483..f58953adfad9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockComponent.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockComponent.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -25,11 +25,13 @@ class LockComponent 'var' => 'type', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\metastore\LockType', ), 2 => array( 'var' => 'level', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\metastore\LockLevel', ), 3 => array( 'var' => 'dbname', @@ -50,6 +52,7 @@ class LockComponent 'var' => 'operationType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\DataOperationType', ), 7 => array( 'var' => 'isTransactional', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockLevel.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockLevel.php index c8a61eff90e6..8fb0f7b15f39 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockLevel.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockLevel.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockRequest.php index d537570979b3..9bf6c5db970e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockResponse.php index b0b391e14114..f259b6159683 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -30,6 +30,7 @@ class LockResponse 'var' => 'state', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\metastore\LockState', ), 3 => array( 'var' => 'errorMessage', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockState.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockState.php index 76119dbd3780..079eef8ea798 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockState.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockState.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockType.php index 895167b8dbee..6116e3f675bc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LockType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LongColumnStatsData.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LongColumnStatsData.php index 6afbd5745a5d..59176a2a614b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LongColumnStatsData.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/LongColumnStatsData.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MapSchemaVersionToSerdeRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MapSchemaVersionToSerdeRequest.php index 2d6c62b5045b..0f0dccf541e8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MapSchemaVersionToSerdeRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MapSchemaVersionToSerdeRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Materialization.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Materialization.php index f64ea7f159ab..f604556ec3a9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Materialization.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Materialization.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MaxAllocatedTableWriteIdRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MaxAllocatedTableWriteIdRequest.php index 4ab419024bca..892d1d467c07 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MaxAllocatedTableWriteIdRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MaxAllocatedTableWriteIdRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MaxAllocatedTableWriteIdResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MaxAllocatedTableWriteIdResponse.php index 7e3a2cc119b8..890abe2c1839 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MaxAllocatedTableWriteIdResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MaxAllocatedTableWriteIdResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MetaException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MetaException.php index 04b235daaf1e..bb04bca53160 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MetaException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MetaException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MetadataPpdResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MetadataPpdResult.php index 3e52d8554012..ca35b8f8224c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MetadataPpdResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/MetadataPpdResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NoSuchLockException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NoSuchLockException.php index 259b77a51f1b..4b4f77af923e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NoSuchLockException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NoSuchLockException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NoSuchObjectException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NoSuchObjectException.php index 3652ffd1e6c9..03814b74c4b9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NoSuchObjectException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NoSuchObjectException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NoSuchTxnException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NoSuchTxnException.php index d732a38dbc43..c3b6dd7234cf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NoSuchTxnException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NoSuchTxnException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotNullConstraintsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotNullConstraintsRequest.php index c3ee7c74abfe..36a648edc5b1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotNullConstraintsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotNullConstraintsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotNullConstraintsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotNullConstraintsResponse.php index f380b09cc94b..8f7688c2cd1c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotNullConstraintsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotNullConstraintsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEvent.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEvent.php index 5578f3bb3ed2..59860937c92d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEvent.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEvent.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventRequest.php index daaf6244aa2d..30357d81d73b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventResponse.php index e021038db847..f7677d6aa47d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventsCountRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventsCountRequest.php index d6f7e3b228ba..4aac800f2d78 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventsCountRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventsCountRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventsCountResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventsCountResponse.php index d98b56d1809f..a2fc769872e2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventsCountResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/NotificationEventsCountResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/OpenTxnRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/OpenTxnRequest.php index efb1bec28766..b598923d8f46 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/OpenTxnRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/OpenTxnRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -59,6 +59,7 @@ class OpenTxnRequest 'var' => 'txn_type', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\TxnType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/OpenTxnsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/OpenTxnsResponse.php index a1655cac17ee..0fae506b499c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/OpenTxnsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/OpenTxnsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/OptionalCompactionInfoStruct.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/OptionalCompactionInfoStruct.php index 66926af7dfae..c70050d0c618 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/OptionalCompactionInfoStruct.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/OptionalCompactionInfoStruct.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Order.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Order.php index ed0a59a2e5de..e3d53ce63d2c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Order.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Order.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Package.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Package.php index d61bee4466e2..d2435f5ac61f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Package.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Package.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Partition.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Partition.php index fc72dc143838..5d120d5b032d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Partition.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Partition.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionEventType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionEventType.php index bf9cadc48d35..773ed1489623 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionEventType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionEventType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionFilterMode.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionFilterMode.php index cd54dcc9f468..aa9b78e6deef 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionFilterMode.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionFilterMode.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionListComposingSpec.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionListComposingSpec.php index c2638bbcedbb..e19099ecd64d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionListComposingSpec.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionListComposingSpec.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionSpec.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionSpec.php index 0895c9fc1be9..0c9d8623bcf6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionSpec.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionSpec.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionSpecWithSharedSD.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionSpecWithSharedSD.php index c2c0391192da..87023ee6e60b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionSpecWithSharedSD.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionSpecWithSharedSD.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionValuesRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionValuesRequest.php index b1d11b15c582..6a6e27d23d57 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionValuesRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionValuesRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionValuesResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionValuesResponse.php index ba1165198dad..83609392fb71 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionValuesResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionValuesResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionValuesRow.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionValuesRow.php index b1612257a83b..02600ea3f8cc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionValuesRow.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionValuesRow.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionWithoutSD.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionWithoutSD.php index 779e2614be4e..a09de94f1bde 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionWithoutSD.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionWithoutSD.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsByExprRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsByExprRequest.php index 32b59521a7ac..b8ac40f6f136 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsByExprRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsByExprRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsByExprResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsByExprResult.php index 01013bb98a00..7e3fa0255477 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsByExprResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsByExprResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsRequest.php index 8453de7d5fea..45f7139b9f61 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsResponse.php index 3d677e55302c..ae20d6c91d4a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsSpecByExprResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsSpecByExprResult.php index 3ce7177ac75a..116fea2e453e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsSpecByExprResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsSpecByExprResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsStatsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsStatsRequest.php index 39b296a74c6c..024b6d7edae0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsStatsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsStatsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsStatsResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsStatsResult.php index a7e11be67903..ddd7be5ea8a9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsStatsResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PartitionsStatsResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrimaryKeysRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrimaryKeysRequest.php index ea28feac084c..ac5f620a76cb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrimaryKeysRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrimaryKeysRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrimaryKeysResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrimaryKeysResponse.php index d738e7e80c2a..a2b0bd8526be 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrimaryKeysResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrimaryKeysResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrincipalPrivilegeSet.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrincipalPrivilegeSet.php index 10d155bce7d2..47ea13daaa9a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrincipalPrivilegeSet.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrincipalPrivilegeSet.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrincipalType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrincipalType.php index 378c595c138d..2b34308f92d1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrincipalType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrincipalType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrivilegeBag.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrivilegeBag.php index 7c5d19373772..989ef2c8da8a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrivilegeBag.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrivilegeBag.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrivilegeGrantInfo.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrivilegeGrantInfo.php index 02207e4e9d40..62c106e121a6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrivilegeGrantInfo.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PrivilegeGrantInfo.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -40,6 +40,7 @@ class PrivilegeGrantInfo 'var' => 'grantorType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 5 => array( 'var' => 'grantOption', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PutFileMetadataRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PutFileMetadataRequest.php index ff271bdf484d..b6af32232b9e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PutFileMetadataRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PutFileMetadataRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -43,6 +43,7 @@ class PutFileMetadataRequest 'var' => 'type', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\FileMetadataExprType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PutFileMetadataResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PutFileMetadataResult.php index 3d17d4ead283..05f69c595120 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PutFileMetadataResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/PutFileMetadataResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/QueryState.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/QueryState.php index 92e51b654546..71a3cd83bb76 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/QueryState.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/QueryState.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RenamePartitionRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RenamePartitionRequest.php index daf5ee8be5bd..357ce97ec058 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RenamePartitionRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RenamePartitionRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RenamePartitionResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RenamePartitionResponse.php index e1e9f2600564..6021c18d7002 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RenamePartitionResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RenamePartitionResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplLastIdInfo.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplLastIdInfo.php index 05c0f076c9e5..400e0b79f1ee 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplLastIdInfo.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplLastIdInfo.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplTblWriteIdStateRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplTblWriteIdStateRequest.php index 57df99560f12..d254d1f2adf2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplTblWriteIdStateRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplTblWriteIdStateRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplicationMetricList.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplicationMetricList.php index 75d5dabc7970..18f69fa1538a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplicationMetricList.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplicationMetricList.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplicationMetrics.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplicationMetrics.php index caf90ecdc8c8..c1b19de41592 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplicationMetrics.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ReplicationMetrics.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RequestPartsSpec.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RequestPartsSpec.php index a9aaadeb9c30..7527f9149af7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RequestPartsSpec.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RequestPartsSpec.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ResourceType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ResourceType.php index ea6682064f2a..0230deeeb5a8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ResourceType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ResourceType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ResourceUri.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ResourceUri.php index f921cca26984..07d2defef9d3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ResourceUri.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ResourceUri.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -25,6 +25,7 @@ class ResourceUri 'var' => 'resourceType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\ResourceType', ), 2 => array( 'var' => 'uri', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Role.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Role.php index 875492485c57..f60de1b4522b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Role.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Role.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RolePrincipalGrant.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RolePrincipalGrant.php index 5e4bddfacbcd..cbf35c964a3f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RolePrincipalGrant.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RolePrincipalGrant.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -35,6 +35,7 @@ class RolePrincipalGrant 'var' => 'principalType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 4 => array( 'var' => 'grantOption', @@ -55,6 +56,7 @@ class RolePrincipalGrant 'var' => 'grantorPrincipalType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RuntimeStat.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RuntimeStat.php index 47ec323c13a4..9842a78a2ae3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RuntimeStat.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/RuntimeStat.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLAllTableConstraints.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLAllTableConstraints.php index 0d75a457aa6c..b8722eaebe3e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLAllTableConstraints.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLAllTableConstraints.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLCheckConstraint.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLCheckConstraint.php index 1ab6f0b2f6e2..3db22c033d32 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLCheckConstraint.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLCheckConstraint.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLDefaultConstraint.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLDefaultConstraint.php index a3cb1d7c543c..6a2c6c49a3cd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLDefaultConstraint.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLDefaultConstraint.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLForeignKey.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLForeignKey.php index d277b3d3fb5f..4567d6a54b82 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLForeignKey.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLForeignKey.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLNotNullConstraint.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLNotNullConstraint.php index ad3efb6412b8..09d75923acb7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLNotNullConstraint.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLNotNullConstraint.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLPrimaryKey.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLPrimaryKey.php index 1a4a5fc57de2..a5d3a35831e3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLPrimaryKey.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLPrimaryKey.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLUniqueConstraint.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLUniqueConstraint.php index fc97a52ecedd..01f87bce12f5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLUniqueConstraint.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SQLUniqueConstraint.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQuery.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQuery.php index abac2107a64a..e3b3c4a33616 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQuery.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQuery.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryKey.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryKey.php index db1570de31e9..049147539204 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryKey.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryKey.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryMaintenanceRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryMaintenanceRequest.php index d88cc624d501..4b105596c33c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryMaintenanceRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryMaintenanceRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -25,6 +25,7 @@ class ScheduledQueryMaintenanceRequest 'var' => 'type', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\metastore\ScheduledQueryMaintenanceRequestType', ), 2 => array( 'var' => 'scheduledQuery', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryMaintenanceRequestType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryMaintenanceRequestType.php index 57827e025a7e..ad67f8e06d45 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryMaintenanceRequestType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryMaintenanceRequestType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryPollRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryPollRequest.php index 11ffc6b1faf8..092fc5edaa20 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryPollRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryPollRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryPollResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryPollResponse.php index 0d6580624dc9..7492f40c596b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryPollResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryPollResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryProgressInfo.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryProgressInfo.php index 2ab29cdc9b2f..9402c78d9043 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryProgressInfo.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ScheduledQueryProgressInfo.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -30,6 +30,7 @@ class ScheduledQueryProgressInfo 'var' => 'state', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\metastore\QueryState', ), 3 => array( 'var' => 'executorQueryId', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Schema.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Schema.php index ed797ef938f1..e3a15940f425 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Schema.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Schema.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaCompatibility.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaCompatibility.php index 989b5db2abbf..effc39b891b8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaCompatibility.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaCompatibility.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaType.php index 31c94ba263b5..20b9846f0228 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaValidation.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaValidation.php index dbcfdc7cd913..3d469c4baf08 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaValidation.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaValidation.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaVersion.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaVersion.php index b5385831b7e8..a958c2c58ae0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaVersion.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaVersion.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -51,6 +51,7 @@ class SchemaVersion 'var' => 'state', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\SchemaVersionState', ), 6 => array( 'var' => 'description', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaVersionDescriptor.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaVersionDescriptor.php index 54cdcc0cd3a1..442266bcf724 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaVersionDescriptor.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaVersionDescriptor.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaVersionState.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaVersionState.php index 1fb9dc27666b..bffc64ce89f3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaVersionState.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SchemaVersionState.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SeedTableWriteIdsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SeedTableWriteIdsRequest.php index d50c03acd3d4..4da52439db99 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SeedTableWriteIdsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SeedTableWriteIdsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SeedTxnIdRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SeedTxnIdRequest.php index 89d37881d23a..71a23336cc90 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SeedTxnIdRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SeedTxnIdRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SerDeInfo.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SerDeInfo.php index 7568ec62221f..6c9ed9e10270 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SerDeInfo.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SerDeInfo.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -63,6 +63,7 @@ class SerDeInfo 'var' => 'serdeType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\SerdeType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SerdeType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SerdeType.php index c9a618616176..5d8d8ba7011b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SerdeType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SerdeType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SetPartitionsStatsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SetPartitionsStatsRequest.php index 75c74955a40f..0496eaa8e3a1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SetPartitionsStatsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SetPartitionsStatsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SetPartitionsStatsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SetPartitionsStatsResponse.php index 2a925719b5a5..eac8f88cd8c7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SetPartitionsStatsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SetPartitionsStatsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SetSchemaVersionStateRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SetSchemaVersionStateRequest.php index 2dbae0215b3c..d49a665941a0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SetSchemaVersionStateRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SetSchemaVersionStateRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -31,6 +31,7 @@ class SetSchemaVersionStateRequest 'var' => 'state', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\SchemaVersionState', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowCompactRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowCompactRequest.php index e7820d9280c0..f00e2e65cbd7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowCompactRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowCompactRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowCompactResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowCompactResponse.php index 8003287d34d1..bd3ce4edf3bc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowCompactResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowCompactResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowCompactResponseElement.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowCompactResponseElement.php index daab120ba024..a05ccf5fac33 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowCompactResponseElement.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowCompactResponseElement.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -40,6 +40,7 @@ class ShowCompactResponseElement 'var' => 'type', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\metastore\CompactionType', ), 5 => array( 'var' => 'state', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowLocksRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowLocksRequest.php index 16336d2bc8c6..88b36b3047eb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowLocksRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowLocksRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowLocksResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowLocksResponse.php index 350ba6b6061e..f9759f0c38e8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowLocksResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowLocksResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowLocksResponseElement.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowLocksResponseElement.php index c30c541dfe0e..3fa4e36351d3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowLocksResponseElement.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ShowLocksResponseElement.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -45,11 +45,13 @@ class ShowLocksResponseElement 'var' => 'state', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\metastore\LockState', ), 6 => array( 'var' => 'type', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\metastore\LockType', ), 7 => array( 'var' => 'txnid', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SkewedInfo.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SkewedInfo.php index eebeea8a5b6f..4d42c4e03d8f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SkewedInfo.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/SkewedInfo.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StorageDescriptor.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StorageDescriptor.php index 966016615d77..bd2471b8509c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StorageDescriptor.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StorageDescriptor.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StoredProcedure.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StoredProcedure.php index 58c34a52a0e8..301748b8fae4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StoredProcedure.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StoredProcedure.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StoredProcedureRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StoredProcedureRequest.php index 29dbe33c4b80..05cb9cb65fd9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StoredProcedureRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StoredProcedureRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StringColumnStatsData.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StringColumnStatsData.php index f598dc89f7c7..8904bf1325bc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StringColumnStatsData.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/StringColumnStatsData.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Table.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Table.php index c04ac005eb0f..4b474ddf94a9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Table.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Table.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -126,6 +126,7 @@ class Table 'var' => 'ownerType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 19 => array( 'var' => 'writeId', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableMeta.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableMeta.php index 0280a55f5c9d..7048da369010 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableMeta.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableMeta.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableStatsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableStatsRequest.php index e823d24bc412..287dd4cbe34b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableStatsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableStatsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableStatsResult.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableStatsResult.php index 5ae543ec2524..8c43ca98b058 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableStatsResult.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableStatsResult.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableValidWriteIds.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableValidWriteIds.php index a4794d58c741..314ea1eb0262 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableValidWriteIds.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TableValidWriteIds.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastoreClient.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastoreClient.php index f20f7a8d6fee..9f98ea3ac1f9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastoreClient.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastoreClient.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastoreIf.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastoreIf.php index af01a17a7adf..cbae4119862d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastoreIf.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastoreIf.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txn_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txn_args.php index aac6a0d3abbf..3ea5d34c41d2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txn_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txn_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txn_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txn_result.php index b02a86dea692..e01922399bd7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txn_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txn_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txns_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txns_args.php index c5c40e937c19..1746684ff208 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txns_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txns_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txns_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txns_result.php index ba076c7c42b7..ec9eef7360cb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txns_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_abort_txns_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_check_constraint_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_check_constraint_args.php index c4caf10b62e0..114f16450abb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_check_constraint_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_check_constraint_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_check_constraint_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_check_constraint_result.php index 9d2964fef725..f28635e296bf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_check_constraint_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_check_constraint_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_default_constraint_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_default_constraint_args.php index 28f04c60783a..0919dfd6d638 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_default_constraint_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_default_constraint_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_default_constraint_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_default_constraint_result.php index 2014f278d1f5..c5c04290acdb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_default_constraint_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_default_constraint_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_dynamic_partitions_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_dynamic_partitions_args.php index 702833121cad..c8fbba42ac0f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_dynamic_partitions_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_dynamic_partitions_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_dynamic_partitions_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_dynamic_partitions_result.php index e6cfca0dcd43..4992eef0c7ce 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_dynamic_partitions_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_dynamic_partitions_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_foreign_key_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_foreign_key_args.php index 789abb4cf355..7337caacf4bd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_foreign_key_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_foreign_key_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_foreign_key_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_foreign_key_result.php index 55c0dc8abfaf..7e548f675b79 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_foreign_key_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_foreign_key_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_master_key_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_master_key_args.php index bb66f10318bd..4e053dce454b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_master_key_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_master_key_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_master_key_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_master_key_result.php index 7ac8033d36ac..c8aece75a728 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_master_key_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_master_key_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_not_null_constraint_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_not_null_constraint_args.php index 172c9b80d0ce..af5f3319df58 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_not_null_constraint_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_not_null_constraint_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_not_null_constraint_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_not_null_constraint_result.php index 0f8621733e6b..c06cfea1937d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_not_null_constraint_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_not_null_constraint_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_package_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_package_args.php index b3f17f6ef62e..a2a8978a0fa4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_package_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_package_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_package_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_package_result.php index cb3a3db13734..0a80ef73ee6e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_package_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_package_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_args.php index ff430c0787f9..051b9f310860 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_result.php index 453accfff28b..27eab3e7701e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_with_environment_context_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_with_environment_context_args.php index 0f866c6f8373..e312f0dd7c7c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_with_environment_context_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_with_environment_context_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_with_environment_context_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_with_environment_context_result.php index dc194e1261f0..2133c3378722 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_with_environment_context_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partition_with_environment_context_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_args.php index bddbd3db3868..3e20a1995ca3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_pspec_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_pspec_args.php index 65d9578a3f0d..8bd904bdcffd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_pspec_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_pspec_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_pspec_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_pspec_result.php index b052cf7a8611..8f1cc8fe7935 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_pspec_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_pspec_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_req_args.php index 320d89595b61..17eb21e7133b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_req_result.php index 95b09a586f88..975be61f0261 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_result.php index 28ca069b2c8b..f125d9d096ca 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_partitions_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_primary_key_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_primary_key_args.php index 64206b6a79b9..f342ebde7204 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_primary_key_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_primary_key_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_primary_key_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_primary_key_result.php index db9fc0d2ead4..f1b05a753a77 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_primary_key_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_primary_key_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_replication_metrics_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_replication_metrics_args.php index 50a488f6b31b..c8f9c7e1452b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_replication_metrics_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_replication_metrics_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_replication_metrics_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_replication_metrics_result.php index b6c2b26d2147..414eabc81bc3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_replication_metrics_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_replication_metrics_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_runtime_stats_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_runtime_stats_args.php index bfe5f01cf8fd..bc9bea8ead79 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_runtime_stats_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_runtime_stats_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_runtime_stats_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_runtime_stats_result.php index 8d86fc71b02b..ad314c85d44b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_runtime_stats_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_runtime_stats_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_schema_version_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_schema_version_args.php index 493f242dc031..a2d8d71d8ed5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_schema_version_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_schema_version_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_schema_version_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_schema_version_result.php index 7f5c28e3c33e..a510eeed1a36 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_schema_version_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_schema_version_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_serde_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_serde_args.php index 2095e131d314..1eca7c214861 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_serde_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_serde_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_serde_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_serde_result.php index d1ebbc975e1e..9c3103e12175 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_serde_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_serde_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_token_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_token_args.php index bc762dedef90..57332df09f85 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_token_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_token_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_token_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_token_result.php index a2a66713679d..79582bcad804 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_token_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_token_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_unique_constraint_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_unique_constraint_args.php index 43d5e9571def..dce335f91bbe 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_unique_constraint_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_unique_constraint_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_unique_constraint_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_unique_constraint_result.php index cc3a72fbd8dc..9378a7cbc326 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_unique_constraint_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_unique_constraint_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_write_notification_log_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_write_notification_log_args.php index 2f778b7716fb..bcd111e0f4f3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_write_notification_log_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_write_notification_log_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_write_notification_log_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_write_notification_log_result.php index d7ba8921dcb6..58fdf75703a7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_write_notification_log_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_add_write_notification_log_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_allocate_table_write_ids_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_allocate_table_write_ids_args.php index 84375d2ba849..ce13d9919cff 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_allocate_table_write_ids_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_allocate_table_write_ids_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_allocate_table_write_ids_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_allocate_table_write_ids_result.php index 6e5cad835065..2742cb55a938 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_allocate_table_write_ids_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_allocate_table_write_ids_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_catalog_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_catalog_args.php index d72e76604487..ecafa8670422 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_catalog_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_catalog_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_catalog_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_catalog_result.php index 1ad2033e3969..f1923f383671 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_catalog_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_catalog_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_database_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_database_args.php index 7ae7e921eb40..cf12004ef368 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_database_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_database_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_database_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_database_result.php index 2e4a8ac1dd01..5e9da657206d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_database_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_database_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_dataconnector_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_dataconnector_args.php index 2c128a9a2091..b6831cc234da 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_dataconnector_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_dataconnector_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_dataconnector_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_dataconnector_result.php index 5133f115aa3d..78b21390bbc0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_dataconnector_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_dataconnector_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_function_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_function_args.php index aa6bc29b059e..b748b66243f2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_function_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_function_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_function_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_function_result.php index d1f732982a1b..9721e4c08a5e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_function_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_function_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_ischema_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_ischema_args.php index 4273caafc369..dc00b00afda6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_ischema_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_ischema_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_ischema_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_ischema_result.php index 349929fb8cfb..639d4d00ac50 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_ischema_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_ischema_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_args.php index 3864fdeec9a7..96b25094b874 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_result.php index b3e001568576..3c8534870ee9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_with_environment_context_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_with_environment_context_args.php index f28345701ea7..f23214d62ebf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_with_environment_context_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_with_environment_context_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_with_environment_context_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_with_environment_context_result.php index 3b8e22fdf1c4..caa0cd7a7a28 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_with_environment_context_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partition_with_environment_context_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_args.php index 58d61bf1a46e..ab6553c6307c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_req_args.php index 8949d83e884d..effd76f534ea 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_req_result.php index 0515503d5771..742c0a3c7791 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_result.php index eb3dfcff547f..3bab218f7bb4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_with_environment_context_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_with_environment_context_args.php index 2235430cc9d2..2be29e8e34d4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_with_environment_context_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_with_environment_context_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_with_environment_context_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_with_environment_context_result.php index 44a871bd003e..45c60a4361c7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_with_environment_context_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_partitions_with_environment_context_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_resource_plan_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_resource_plan_args.php index 61df0493c3ea..be2dc1430544 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_resource_plan_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_resource_plan_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_resource_plan_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_resource_plan_result.php index f32da1dd320c..0a95bd1dc24e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_resource_plan_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_resource_plan_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_args.php index b5faf43bd295..84b7b1058f44 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_req_args.php index 374f6504580f..041ae6710b1d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_req_result.php index 9b9726210d56..ffe84c14de78 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_result.php index 71aa8dafdb3e..af43abe66c1a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_cascade_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_cascade_args.php index b483dbb707ff..ed03a0aaecf1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_cascade_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_cascade_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_cascade_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_cascade_result.php index 535abf6c4507..468a66dfd694 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_cascade_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_cascade_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_environment_context_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_environment_context_args.php index 73862ebbdada..6492afd2c354 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_environment_context_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_environment_context_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_environment_context_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_environment_context_result.php index ef551e8581d4..0a9a170c5f9f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_environment_context_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_table_with_environment_context_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_pool_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_pool_args.php index f151652c9038..43ccfc0db6ef 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_pool_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_pool_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_pool_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_pool_result.php index e7710bb240a0..966d76add1c5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_pool_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_pool_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_trigger_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_trigger_args.php index 452b1010af7d..f4a0f465a39d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_trigger_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_trigger_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_trigger_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_trigger_result.php index 94f33f2905d5..1f52349cd12b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_trigger_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_alter_wm_trigger_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_args.php index d9ebbcd28460..080232306ce9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_args.php index c72af2f4e91c..c96aaa74868e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_result.php index 80ccc7a593db..301a331acfa8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_with_environment_context_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_with_environment_context_args.php index 33b76a57b7a6..f14831d42916 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_with_environment_context_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_with_environment_context_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_with_environment_context_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_with_environment_context_result.php index df1657d223a7..df16be6b74af 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_with_environment_context_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_by_name_with_environment_context_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_result.php index 98046e3a8705..87eb2a02331f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_with_environment_context_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_with_environment_context_args.php index e054eb3ae98a..41ef7043115d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_with_environment_context_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_with_environment_context_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_with_environment_context_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_with_environment_context_result.php index 19c0c18dd6f8..d660764755ca 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_with_environment_context_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_append_partition_with_environment_context_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cache_file_metadata_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cache_file_metadata_args.php index 8c7e25f7e827..6bafd78ca288 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cache_file_metadata_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cache_file_metadata_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cache_file_metadata_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cache_file_metadata_result.php index 2326ccdc6c0a..ae5ec654d38d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cache_file_metadata_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cache_file_metadata_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cancel_delegation_token_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cancel_delegation_token_args.php index 6341f13d26c3..8941a2049117 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cancel_delegation_token_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cancel_delegation_token_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cancel_delegation_token_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cancel_delegation_token_result.php index 5ce2d04e5764..5829626d871d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cancel_delegation_token_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cancel_delegation_token_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_check_lock_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_check_lock_args.php index 24f7aa1ca799..3fc0496315db 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_check_lock_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_check_lock_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_check_lock_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_check_lock_result.php index 726599dfcb7e..0e27ba8a1705 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_check_lock_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_check_lock_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_clear_file_metadata_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_clear_file_metadata_args.php index 0b81ca283b75..58fb1f1f6d34 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_clear_file_metadata_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_clear_file_metadata_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_clear_file_metadata_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_clear_file_metadata_result.php index 0a45a1b66228..4991afc9a9ec 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_clear_file_metadata_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_clear_file_metadata_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cm_recycle_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cm_recycle_args.php index 3ea043caf4e9..b86f723c463a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cm_recycle_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cm_recycle_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cm_recycle_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cm_recycle_result.php index e4a05e4104a2..104dd1a28732 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cm_recycle_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_cm_recycle_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_commit_txn_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_commit_txn_args.php index 036d8f21ed84..0712d7eb0ccd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_commit_txn_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_commit_txn_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_commit_txn_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_commit_txn_result.php index 55f50f22e88b..124e1a1d44d0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_commit_txn_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_commit_txn_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact2_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact2_args.php index aac9454ba545..9b45b6545113 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact2_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact2_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact2_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact2_result.php index 3864d121b3a0..fc1e8365a11a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact2_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact2_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact_args.php index d64dfdbf4227..b20bc50a27c7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact_result.php index 43e8ef0239f4..f265bda2037c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_compact_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_catalog_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_catalog_args.php index 28e2646f8596..e00391e44465 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_catalog_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_catalog_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_catalog_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_catalog_result.php index 0307d0f63044..0e27e4c356a8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_catalog_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_catalog_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_database_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_database_args.php index 80a9cecb52b7..7896c19de4f8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_database_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_database_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_database_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_database_result.php index 2a73d9c04630..7bfbdf0afe8f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_database_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_database_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_dataconnector_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_dataconnector_args.php index 8a5465e46ab8..de297c3aa13f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_dataconnector_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_dataconnector_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_dataconnector_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_dataconnector_result.php index f30cc2fdc79c..4420ee18b069 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_dataconnector_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_dataconnector_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_function_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_function_args.php index 4f61563b3696..54231c4cde5d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_function_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_function_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_function_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_function_result.php index 9115ee16b1ef..5e782124b6b3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_function_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_function_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_ischema_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_ischema_args.php index 1a312928d152..dca214257750 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_ischema_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_ischema_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_ischema_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_ischema_result.php index 01f8230c4759..d5126067b941 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_ischema_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_ischema_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_drop_wm_trigger_to_pool_mapping_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_drop_wm_trigger_to_pool_mapping_args.php index bccb11d5b888..7bda379ee334 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_drop_wm_trigger_to_pool_mapping_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_drop_wm_trigger_to_pool_mapping_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_drop_wm_trigger_to_pool_mapping_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_drop_wm_trigger_to_pool_mapping_result.php index 241bf6a04e22..48329aa5de34 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_drop_wm_trigger_to_pool_mapping_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_drop_wm_trigger_to_pool_mapping_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_update_wm_mapping_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_update_wm_mapping_args.php index 82cd6a2f224c..04d6215c945e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_update_wm_mapping_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_update_wm_mapping_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_update_wm_mapping_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_update_wm_mapping_result.php index e017fe074917..df6931018ba0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_update_wm_mapping_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_or_update_wm_mapping_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_resource_plan_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_resource_plan_args.php index 5819ab97e7e3..42fe16139864 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_resource_plan_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_resource_plan_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_resource_plan_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_resource_plan_result.php index 2be08006117c..75d30a939458 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_resource_plan_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_resource_plan_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_role_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_role_args.php index 8459abcdfe75..002ac8101eae 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_role_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_role_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_role_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_role_result.php index 18b1d9196514..2f2e61e91073 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_role_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_role_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_stored_procedure_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_stored_procedure_args.php index 691297003a7d..06847f20bba3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_stored_procedure_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_stored_procedure_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_stored_procedure_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_stored_procedure_result.php index 8dcffa3272c9..369ec7517c05 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_stored_procedure_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_stored_procedure_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_args.php index f1c93c509be5..b8fab41b20c6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_req_args.php index 91053b4b68dd..fa782be3441a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_req_result.php index d2e95f923a2c..71586cc77e6b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_result.php index 7be569b392b7..9fbf563d4568 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_constraints_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_constraints_args.php index fc334e58fb79..8993367b50ae 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_constraints_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_constraints_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_constraints_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_constraints_result.php index d84b1170fbc1..9c30d5109fbd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_constraints_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_constraints_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_environment_context_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_environment_context_args.php index d652788d666f..5b1318d3911c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_environment_context_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_environment_context_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_environment_context_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_environment_context_result.php index d352da1c1453..667a7d7290f7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_environment_context_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_table_with_environment_context_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_type_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_type_args.php index 77bdf9442d36..fba1fe5dfa44 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_type_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_type_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_type_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_type_result.php index b030c6b0c286..bfe3e4b69596 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_type_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_type_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_pool_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_pool_args.php index 5f42925a9411..019613c800d4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_pool_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_pool_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_pool_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_pool_result.php index ae4272cea153..1b641b36dbd7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_pool_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_pool_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_trigger_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_trigger_args.php index 391ff75c5163..1dd955194b14 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_trigger_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_trigger_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_trigger_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_trigger_result.php index a2e2d80b77e6..a62fcdab4d76 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_trigger_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_create_wm_trigger_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_partition_column_statistics_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_partition_column_statistics_args.php index d5035a2cfa91..49f14c3fe3cb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_partition_column_statistics_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_partition_column_statistics_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_partition_column_statistics_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_partition_column_statistics_result.php index 0455e8d12789..dcbdc77d8ae9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_partition_column_statistics_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_partition_column_statistics_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_table_column_statistics_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_table_column_statistics_args.php index 217d8ddcd878..f2e9b64dbd4e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_table_column_statistics_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_table_column_statistics_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_table_column_statistics_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_table_column_statistics_result.php index 8bb9466b28cf..da579376001d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_table_column_statistics_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_delete_table_column_statistics_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_catalog_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_catalog_args.php index ccd575fe8583..45b92bbc0991 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_catalog_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_catalog_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_catalog_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_catalog_result.php index c53b9309e407..67ec82e79fcf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_catalog_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_catalog_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_constraint_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_constraint_args.php index c8ac47873066..0e214c2a91f8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_constraint_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_constraint_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_constraint_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_constraint_result.php index dd0dae69089f..ef070d41d94d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_constraint_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_constraint_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_database_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_database_args.php index 5f4edf478006..c2b67c7d93e0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_database_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_database_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_database_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_database_result.php index 24d02f107767..c6ce8390af4c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_database_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_database_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_dataconnector_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_dataconnector_args.php index c8d6e9a1579a..05cbb234414e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_dataconnector_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_dataconnector_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_dataconnector_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_dataconnector_result.php index a216264b02eb..764494bca2fb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_dataconnector_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_dataconnector_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_function_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_function_args.php index 318335cb103f..ea213e23ffdb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_function_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_function_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_function_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_function_result.php index 52282d0082e4..6409323652e0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_function_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_function_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_ischema_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_ischema_args.php index 90e2a3668b85..de2b04ffe93a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_ischema_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_ischema_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_ischema_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_ischema_result.php index c7af3365dc38..83a201067fff 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_ischema_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_ischema_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_package_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_package_args.php index 75598d40188c..9a0e7b89d0f7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_package_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_package_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_package_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_package_result.php index d635e394bd3b..531034cfccde 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_package_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_package_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_args.php index a1c01c42793a..a8601a97f8c8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_args.php index e18d6419603a..d1571e849166 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_result.php index 5139cb4d41ca..096259ddd81c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_with_environment_context_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_with_environment_context_args.php index 9439ab598bae..e134658d54aa 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_with_environment_context_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_with_environment_context_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_with_environment_context_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_with_environment_context_result.php index 4c8c85b22d27..f87f152bec95 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_with_environment_context_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_by_name_with_environment_context_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_result.php index 7b5c3266ee15..9b3ea3ffe919 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_with_environment_context_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_with_environment_context_args.php index 4fda3e2b4d2f..7b0ac30745d0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_with_environment_context_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_with_environment_context_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_with_environment_context_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_with_environment_context_result.php index 16b7135c9266..5c9927a25108 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_with_environment_context_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partition_with_environment_context_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partitions_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partitions_req_args.php index 2b788db60db4..de42b269f93f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partitions_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partitions_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partitions_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partitions_req_result.php index a2328f3fb7d7..1a46a499987b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partitions_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_partitions_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_resource_plan_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_resource_plan_args.php index 8c802992b7c2..39b0ea450eef 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_resource_plan_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_resource_plan_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_resource_plan_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_resource_plan_result.php index 3edf7e67ecfb..16969dc94f6c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_resource_plan_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_resource_plan_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_role_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_role_args.php index 76c11f0138f5..1e9c580f60dc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_role_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_role_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_role_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_role_result.php index 7231ed42cef1..c6b87e83d83e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_role_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_role_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_schema_version_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_schema_version_args.php index d969603436d6..1e85ac9926a5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_schema_version_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_schema_version_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_schema_version_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_schema_version_result.php index 0b46821af27e..194b9a1d2435 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_schema_version_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_schema_version_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_stored_procedure_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_stored_procedure_args.php index db3ec8ae57b4..cf855a819142 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_stored_procedure_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_stored_procedure_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_stored_procedure_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_stored_procedure_result.php index 9f7c691b946f..dcdb55ade9f0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_stored_procedure_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_stored_procedure_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_args.php index 9612711be3b2..b669f0944d96 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_result.php index 5fd4750fe79a..1ea6a14761e0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_with_environment_context_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_with_environment_context_args.php index 9b42ff0fc436..e50c5bacaa12 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_with_environment_context_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_with_environment_context_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_with_environment_context_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_with_environment_context_result.php index e66c5ec2f651..647f35cc99de 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_with_environment_context_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_table_with_environment_context_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_type_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_type_args.php index c95dcf91bea1..54794cc2187f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_type_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_type_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_type_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_type_result.php index a52f912ebc84..a7ccb89beef8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_type_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_type_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_mapping_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_mapping_args.php index 7653d88a3aea..8666e73cfdfd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_mapping_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_mapping_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_mapping_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_mapping_result.php index c40fe287ef8b..7458b25b377b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_mapping_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_mapping_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_pool_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_pool_args.php index d1c05b85bd4b..55a4bd2cc4e3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_pool_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_pool_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_pool_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_pool_result.php index 2f213207e623..5fef070de8a9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_pool_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_pool_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_trigger_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_trigger_args.php index ca7de7bf8fbb..c056f491d8df 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_trigger_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_trigger_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_trigger_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_trigger_result.php index c04fb0a2e7ba..842bda427f56 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_trigger_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_drop_wm_trigger_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partition_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partition_args.php index d5cabad3028a..ba060c6b11c1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partition_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partition_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partition_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partition_result.php index f3fc0de2b8bc..a73864b69147 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partition_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partition_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partitions_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partitions_args.php index 92f4b68f2a67..c09a6e68763d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partitions_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partitions_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partitions_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partitions_result.php index 525ffee98eab..64d7a684ad5a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partitions_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_exchange_partitions_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_columns_with_stats_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_columns_with_stats_args.php index e434a19a760f..b0a47c4d9f2b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_columns_with_stats_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_columns_with_stats_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_columns_with_stats_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_columns_with_stats_result.php index 7dc475d72b6c..c36e2d7a413c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_columns_with_stats_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_columns_with_stats_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_next_compact_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_next_compact_args.php index f5f9edcbc86c..54816b0a2170 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_next_compact_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_next_compact_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_next_compact_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_next_compact_result.php index bfe6bab9baec..7c00d6862704 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_next_compact_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_next_compact_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_package_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_package_args.php index b7fd01e1e9f5..06d48458519b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_package_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_package_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_package_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_package_result.php index 63083e5b1145..522cf7bc5b34 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_package_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_find_package_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_fire_listener_event_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_fire_listener_event_args.php index 9e7d157f093c..03947fe96008 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_fire_listener_event_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_fire_listener_event_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_fire_listener_event_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_fire_listener_event_result.php index 099b60d5ef7e..3c12a375f1ce 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_fire_listener_event_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_fire_listener_event_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_flushCache_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_flushCache_args.php index 809afd6a8ce0..6382cf16ec22 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_flushCache_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_flushCache_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_flushCache_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_flushCache_result.php index 73b7d6bbdac1..c2ea2cbc4ced 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_flushCache_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_flushCache_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_getMetaConf_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_getMetaConf_args.php index 726fe3d67189..3cc6de44cd2b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_getMetaConf_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_getMetaConf_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_getMetaConf_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_getMetaConf_result.php index 9a978df800ad..2d937622cf42 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_getMetaConf_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_getMetaConf_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_active_resource_plan_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_active_resource_plan_args.php index eddaaf5839cf..f52a52e31c82 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_active_resource_plan_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_active_resource_plan_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_active_resource_plan_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_active_resource_plan_result.php index acf828fba5f9..eee5b07d91f0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_active_resource_plan_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_active_resource_plan_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_aggr_stats_for_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_aggr_stats_for_args.php index adae0ce8f7db..a3fc42273546 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_aggr_stats_for_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_aggr_stats_for_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_aggr_stats_for_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_aggr_stats_for_result.php index 9b5365d539ca..95976fe48e6c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_aggr_stats_for_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_aggr_stats_for_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_databases_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_databases_args.php index d701a0e49c84..8a92e0f328a6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_databases_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_databases_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_databases_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_databases_result.php index 42064dbda698..1970b32ad620 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_databases_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_databases_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_functions_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_functions_args.php index 9133048a2e84..560a336c555f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_functions_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_functions_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_functions_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_functions_result.php index 31a25a09ef63..a96cdba86fe5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_functions_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_functions_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_materialized_view_objects_for_rewriting_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_materialized_view_objects_for_rewriting_args.php index 0d9f685bf1e6..e8ac312c028f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_materialized_view_objects_for_rewriting_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_materialized_view_objects_for_rewriting_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_materialized_view_objects_for_rewriting_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_materialized_view_objects_for_rewriting_result.php index 0c84e905c80a..dbec74b3dea7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_materialized_view_objects_for_rewriting_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_materialized_view_objects_for_rewriting_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_packages_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_packages_args.php index 71959ebb0b89..6c2fbb8ddcb7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_packages_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_packages_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_packages_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_packages_result.php index dba16f30b75d..21dd5a8ccccd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_packages_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_packages_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_resource_plans_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_resource_plans_args.php index 15fcb543fcd4..bc57e16e9b9a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_resource_plans_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_resource_plans_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_resource_plans_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_resource_plans_result.php index 4efa45277ac7..c4cb15f2b57a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_resource_plans_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_resource_plans_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_stored_procedures_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_stored_procedures_args.php index f16d6e209a7e..0f74a0946bd3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_stored_procedures_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_stored_procedures_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_stored_procedures_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_stored_procedures_result.php index b73469f2d88c..f415270e945c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_stored_procedures_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_stored_procedures_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_table_constraints_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_table_constraints_args.php index 1ab00f052577..6edf006a7d2f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_table_constraints_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_table_constraints_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_table_constraints_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_table_constraints_result.php index 79480acacceb..5d4de27757d2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_table_constraints_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_table_constraints_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_tables_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_tables_args.php index 927dfc6261e9..e0c7c7bf8993 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_tables_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_tables_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_tables_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_tables_result.php index 99e26d00b709..ccde452deaa8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_tables_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_tables_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_token_identifiers_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_token_identifiers_args.php index 7cde3a81cd3c..4a81fec61ef5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_token_identifiers_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_token_identifiers_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_token_identifiers_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_token_identifiers_result.php index 9d547d90994b..276536850d30 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_token_identifiers_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_all_token_identifiers_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalog_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalog_args.php index cd66f54e52d1..426ed3722fa4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalog_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalog_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalog_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalog_result.php index e5d4168b7c8a..14bdc4a528c0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalog_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalog_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalogs_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalogs_args.php index b9eafad914d9..4ca19fecc896 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalogs_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalogs_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalogs_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalogs_result.php index 146902124a49..8e9559842196 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalogs_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_catalogs_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_check_constraints_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_check_constraints_args.php index b136ae59d2f3..ec77669757f3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_check_constraints_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_check_constraints_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_check_constraints_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_check_constraints_result.php index a1a3338d483b..16cd847f73da 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_check_constraints_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_check_constraints_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_config_value_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_config_value_args.php index 32cd55361c69..12b51c4f11aa 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_config_value_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_config_value_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_config_value_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_config_value_result.php index 765fe431a7ca..6d96f2fc64cf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_config_value_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_config_value_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_current_notificationEventId_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_current_notificationEventId_args.php index c8ba1ebe3d4c..7a6f289a64c1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_current_notificationEventId_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_current_notificationEventId_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_current_notificationEventId_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_current_notificationEventId_result.php index 48b7fcdbd37d..3f1eb7e83d83 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_current_notificationEventId_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_current_notificationEventId_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_args.php index 9bcb3130053b..7290c904be1d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_req_args.php index 221506f74ac0..dd29f23e1d17 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_req_result.php index eeee5c8c645b..344750c96fa8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_result.php index 639b2b8a1ce8..90eb37c1fe9b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_database_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_databases_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_databases_args.php index 434ff21d2fc4..a8ff4fff110a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_databases_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_databases_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_databases_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_databases_result.php index 6e510d4db319..81eb72e199b8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_databases_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_databases_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnector_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnector_req_args.php index 611a7cf15e52..9a9de548339a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnector_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnector_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnector_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnector_req_result.php index d418deb02c3a..d0e4b07bf247 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnector_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnector_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnectors_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnectors_args.php index d5a318e2e26d..8981c97196ee 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnectors_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnectors_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnectors_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnectors_result.php index a36f08e41eb6..633cdac8e8af 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnectors_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_dataconnectors_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_default_constraints_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_default_constraints_args.php index 895c7e76889c..1e86364a8cdb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_default_constraints_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_default_constraints_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_default_constraints_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_default_constraints_result.php index ab8c41d3519e..99b5aa19f5b9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_default_constraints_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_default_constraints_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_delegation_token_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_delegation_token_args.php index 87dc1e40cdc6..ee7756a57e20 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_delegation_token_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_delegation_token_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_delegation_token_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_delegation_token_result.php index f5aec6b7795a..06642f60b06f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_delegation_token_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_delegation_token_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_args.php index 2271a7c2a17a..52eea57c4689 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_req_args.php index 5c85e81a8246..4c4deb1706c0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_req_result.php index dfc5cfbc1547..91b9ff11cd56 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_result.php index 4c52c1683981..6dd9dd7691d5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_with_environment_context_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_with_environment_context_args.php index d9229aa9e81b..fe651bcb85fc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_with_environment_context_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_with_environment_context_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_with_environment_context_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_with_environment_context_result.php index ebfbfcb40510..9f74a4997176 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_with_environment_context_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_fields_with_environment_context_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_args.php index ba175a95699b..46eb7329908c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_by_expr_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_by_expr_args.php index e22f2fdec154..bebd9577d72a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_by_expr_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_by_expr_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_by_expr_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_by_expr_result.php index 64cdadd54ccb..6582b141202e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_by_expr_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_by_expr_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_result.php index 06d966ae309d..e6a92d430cab 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_file_metadata_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_foreign_keys_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_foreign_keys_args.php index a22773409ef3..06d43245d70e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_foreign_keys_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_foreign_keys_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_foreign_keys_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_foreign_keys_result.php index 9eb85c640176..9587766c0db6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_foreign_keys_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_foreign_keys_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_function_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_function_args.php index 783d61d5fc55..270ff46ae899 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_function_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_function_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_function_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_function_result.php index e5b15246ef26..8a0ef70ac874 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_function_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_function_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_functions_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_functions_args.php index 8b76cca127d0..073bef900d9a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_functions_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_functions_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_functions_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_functions_result.php index 841be624ceb3..90c4bc60343c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_functions_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_functions_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_ischema_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_ischema_args.php index 85770d68d5c6..52c4742a5a7a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_ischema_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_ischema_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_ischema_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_ischema_result.php index 7ae303c727e4..041ef09219e8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_ischema_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_ischema_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_committed_compaction_info_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_committed_compaction_info_args.php index 403ee3e8b7f8..e5c8413116f3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_committed_compaction_info_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_committed_compaction_info_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_committed_compaction_info_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_committed_compaction_info_result.php index b6200297b043..08e6824f1b63 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_committed_compaction_info_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_committed_compaction_info_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_txnid_in_conflict_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_txnid_in_conflict_args.php index 6fc92b4e6921..de84b83921f0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_txnid_in_conflict_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_txnid_in_conflict_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_txnid_in_conflict_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_txnid_in_conflict_result.php index 8577fe253937..ad43461983cd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_txnid_in_conflict_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_latest_txnid_in_conflict_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_lock_materialization_rebuild_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_lock_materialization_rebuild_args.php index bbedc61956b5..a0f858aead97 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_lock_materialization_rebuild_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_lock_materialization_rebuild_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_lock_materialization_rebuild_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_lock_materialization_rebuild_result.php index c68bea54140c..8cd29798dc31 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_lock_materialization_rebuild_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_lock_materialization_rebuild_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_master_keys_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_master_keys_args.php index bee7092f1287..8acd023d2222 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_master_keys_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_master_keys_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_master_keys_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_master_keys_result.php index 206d91c8fcbc..1dbfe6e1337b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_master_keys_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_master_keys_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialization_invalidation_info_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialization_invalidation_info_args.php index 97eceded01f5..9d6a6407abd6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialization_invalidation_info_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialization_invalidation_info_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialization_invalidation_info_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialization_invalidation_info_result.php index 294546d6977a..3aa633619cbd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialization_invalidation_info_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialization_invalidation_info_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialized_views_for_rewriting_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialized_views_for_rewriting_args.php index 175524439f8c..4a4aeea29f81 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialized_views_for_rewriting_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialized_views_for_rewriting_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialized_views_for_rewriting_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialized_views_for_rewriting_result.php index 70ec8809b4a7..cbbf3312b20e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialized_views_for_rewriting_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_materialized_views_for_rewriting_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_max_allocated_table_write_id_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_max_allocated_table_write_id_args.php index 9dc4fda43eda..06499245349d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_max_allocated_table_write_id_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_max_allocated_table_write_id_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_max_allocated_table_write_id_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_max_allocated_table_write_id_result.php index bb215a0d6de3..6dfb3eeab0e8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_max_allocated_table_write_id_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_max_allocated_table_write_id_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_metastore_db_uuid_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_metastore_db_uuid_args.php index 346a383ae277..70cbe3ce95f3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_metastore_db_uuid_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_metastore_db_uuid_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_metastore_db_uuid_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_metastore_db_uuid_result.php index 8124d69f7c51..1370ab19d1fd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_metastore_db_uuid_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_metastore_db_uuid_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_next_notification_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_next_notification_args.php index 0f912d863fad..06fe4204f8e5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_next_notification_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_next_notification_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_next_notification_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_next_notification_result.php index 0c837b61e70f..feeae8b87712 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_next_notification_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_next_notification_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_not_null_constraints_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_not_null_constraints_args.php index 590921f719bc..a6fd285675d7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_not_null_constraints_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_not_null_constraints_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_not_null_constraints_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_not_null_constraints_result.php index 8eab1de7713c..c25e52fae481 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_not_null_constraints_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_not_null_constraints_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_notification_events_count_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_notification_events_count_args.php index 6db7b2760d22..8bf11731eae1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_notification_events_count_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_notification_events_count_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_notification_events_count_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_notification_events_count_result.php index 09150064ad1b..dbef5999f03a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_notification_events_count_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_notification_events_count_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_num_partitions_by_filter_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_num_partitions_by_filter_args.php index 0ea8426950ca..719d39e49b94 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_num_partitions_by_filter_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_num_partitions_by_filter_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_num_partitions_by_filter_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_num_partitions_by_filter_result.php index 71ba3cdadcc4..75744a6d35bf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_num_partitions_by_filter_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_num_partitions_by_filter_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_args.php index 24ada557707e..e48d11554f65 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_info_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_info_args.php index 079ee0536e49..c1687fcb06e6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_info_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_info_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_info_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_info_result.php index b80cee5d1384..fa5e515c50c1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_info_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_info_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_req_args.php index 36622443c517..e6d9b85e2d95 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_req_result.php index 949fa84c32f3..1b47e66be82b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_result.php index 1cb51891e9fb..420d4ade7cc9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_open_txns_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_part_specs_by_filter_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_part_specs_by_filter_args.php index f2e61cc7cbcb..d45ac4601749 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_part_specs_by_filter_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_part_specs_by_filter_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_part_specs_by_filter_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_part_specs_by_filter_result.php index 799aba6f2998..dc29714559c4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_part_specs_by_filter_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_part_specs_by_filter_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_args.php index 38f19b8a01c8..21844f469bce 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_by_name_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_by_name_args.php index 5bbb56e96a1a..cd057f6e4ae3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_by_name_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_by_name_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_by_name_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_by_name_result.php index b02af97a1d80..7cf58ae36cb1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_by_name_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_by_name_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_column_statistics_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_column_statistics_args.php index 14dd5d7413d2..4155e5a08e12 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_column_statistics_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_column_statistics_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_column_statistics_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_column_statistics_result.php index ca17ec3fc70b..b14f71ef975b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_column_statistics_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_column_statistics_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_args.php index 8fc8b95bcf31..4fce1cb492c0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_args.php index d12bd68f3f95..60fbe6503da5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_req_args.php index 232c6d127b26..32bcc95183f9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_req_result.php index 85f7229a524f..e17c4d8f2d43 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_result.php index e29e51993723..87983a5783ee 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_ps_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_req_args.php index 0aeb1072a635..9cc08478ee30 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_req_result.php index cd53d285c235..bf5e67590631 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_result.php index f3e09a166cfc..687d57dcf90a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_names_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_req_args.php index 2453dbea9e54..73ce5ed97f49 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_req_result.php index 4288045e718d..4ac6464fbc93 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_result.php index 970f8b045dde..31ac37bf27d9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_values_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_values_args.php index 04c82f45f165..999d1d74c32c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_values_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_values_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_values_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_values_result.php index b67a05f04784..07305e087c39 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_values_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_values_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_with_auth_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_with_auth_args.php index 2db629ba36bb..bebb94d29789 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_with_auth_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_with_auth_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_with_auth_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_with_auth_result.php index 7bf27a33bade..9ff565d8f435 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_with_auth_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partition_with_auth_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_args.php index 981fc5930bb4..6f23f140ff5b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_expr_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_expr_args.php index 089185f1d9fb..30e3038ff58b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_expr_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_expr_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_expr_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_expr_result.php index 575c139b330e..ac9e43809115 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_expr_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_expr_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_filter_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_filter_args.php index 14cb879f3084..1b78a191d264 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_filter_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_filter_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_filter_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_filter_result.php index 5f41f706b500..13b7ca03767f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_filter_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_filter_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_args.php index 95f682377422..4fe8bb35e3fd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_req_args.php index b80d69315cf3..b84f5d3e6892 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_req_result.php index 3c39be4ae099..24bd2028665e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_result.php index 6b889f6bb097..dd05a9c89285 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_by_names_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_args.php index daded4e731cd..85f78199fa53 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_result.php index 6f288e710082..2c1d9bb2fd58 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_args.php index 32b9fad63462..002332e23352 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_req_args.php index 61777881bdc6..a7dc4c557455 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_req_result.php index ee1144adeeaf..02b0974b1b14 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_result.php index 836757f3b803..9fff6dfac468 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_ps_with_auth_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_pspec_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_pspec_args.php index b5dfdcd7c575..d6b6532076f8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_pspec_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_pspec_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_pspec_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_pspec_result.php index 69d3944165ea..2f88905b8be2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_pspec_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_pspec_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_req_args.php index af92f78b6c29..92626553d672 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_req_result.php index e0eb206cba9b..b90b5d7497a5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_result.php index 5f7aea244cf1..a2cb26766cc2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_spec_by_expr_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_spec_by_expr_args.php index 50fbd41f4056..a031be259daa 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_spec_by_expr_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_spec_by_expr_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_spec_by_expr_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_spec_by_expr_result.php index e91510c7626b..151f6cf60226 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_spec_by_expr_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_spec_by_expr_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_statistics_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_statistics_req_args.php index b91127ac26cb..1f70b297521b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_statistics_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_statistics_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_statistics_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_statistics_req_result.php index 3583481ee30d..cf10d5173348 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_statistics_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_statistics_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_auth_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_auth_args.php index 231b1713dcfa..aaa9f54c3cfd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_auth_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_auth_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_auth_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_auth_result.php index 8691e202fbf2..c0e8dac7c6ee 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_auth_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_auth_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_specs_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_specs_args.php index 1f53f4a5dac6..1b7ce9265daf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_specs_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_specs_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_specs_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_specs_result.php index 8f7f2ee590c5..e9eff71e283d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_specs_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_partitions_with_specs_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_primary_keys_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_primary_keys_args.php index d2897565be59..a0bbc6339003 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_primary_keys_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_primary_keys_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_primary_keys_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_primary_keys_result.php index 44c1c67e5853..6314a48ee72b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_primary_keys_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_primary_keys_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_principals_in_role_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_principals_in_role_args.php index ca937a1d2072..6022ea0f98bd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_principals_in_role_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_principals_in_role_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_principals_in_role_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_principals_in_role_result.php index e66dc95816b9..185db645b97d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_principals_in_role_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_principals_in_role_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_privilege_set_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_privilege_set_args.php index 143d274f4e4e..626997e0abe9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_privilege_set_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_privilege_set_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_privilege_set_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_privilege_set_result.php index 68c02ddc7cf0..d8c07e3450a0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_privilege_set_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_privilege_set_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_replication_metrics_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_replication_metrics_args.php index e1255334e7c6..e139557b405b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_replication_metrics_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_replication_metrics_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_replication_metrics_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_replication_metrics_result.php index ebb837484dee..387c967f95ab 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_replication_metrics_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_replication_metrics_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_resource_plan_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_resource_plan_args.php index 4b8ff79bc998..df5e79466728 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_resource_plan_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_resource_plan_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_resource_plan_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_resource_plan_result.php index 9b0070b4ed15..7f88e9502d56 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_resource_plan_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_resource_plan_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_grants_for_principal_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_grants_for_principal_args.php index 6f33825e3671..d90d73776a88 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_grants_for_principal_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_grants_for_principal_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_grants_for_principal_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_grants_for_principal_result.php index e8f068c5eb7c..089188d9ed97 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_grants_for_principal_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_grants_for_principal_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_names_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_names_args.php index a26cd05ac1be..d4ca6e2e5540 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_names_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_names_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_names_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_names_result.php index e6e9c9ee2db6..cf9828770efa 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_names_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_role_names_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_runtime_stats_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_runtime_stats_args.php index 15cee99a1ae2..d33fcf28c669 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_runtime_stats_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_runtime_stats_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_runtime_stats_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_runtime_stats_result.php index b2ea1a2a26b5..b444ef887346 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_runtime_stats_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_runtime_stats_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_scheduled_query_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_scheduled_query_args.php index ba21e4dd7cbf..738413e54bf7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_scheduled_query_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_scheduled_query_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_scheduled_query_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_scheduled_query_result.php index 9f075a095baa..88330bea623b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_scheduled_query_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_scheduled_query_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_all_versions_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_all_versions_args.php index 07b69c5dcdf7..5a8b8170c719 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_all_versions_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_all_versions_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_all_versions_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_all_versions_result.php index d42732caa73b..9a40fe0eca29 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_all_versions_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_all_versions_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_args.php index 53c1a7913d99..3f6761e13571 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_latest_version_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_latest_version_args.php index 3b3b13620a7c..06f947d67322 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_latest_version_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_latest_version_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_latest_version_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_latest_version_result.php index df81095a153a..863fc5aaa18b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_latest_version_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_latest_version_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_req_args.php index 239923ef653c..a7bd2e31de43 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_req_result.php index 8c9057068ed2..ff6d20e353c8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_result.php index 249d5b2cc68c..72eba32c48e1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_version_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_version_args.php index e89bc01d4887..4a3de0a5468d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_version_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_version_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_version_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_version_result.php index 13feb9df6816..03a657410d2d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_version_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_version_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_with_environment_context_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_with_environment_context_args.php index e41d04d5e36a..a8d556f0ef6b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_with_environment_context_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_with_environment_context_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_with_environment_context_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_with_environment_context_result.php index eae046170854..f4665c64053d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_with_environment_context_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schema_with_environment_context_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schemas_by_cols_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schemas_by_cols_args.php index aa30adf4706e..c467abecce94 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schemas_by_cols_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schemas_by_cols_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schemas_by_cols_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schemas_by_cols_result.php index dfabb5d2e17b..c8dfac7d121c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schemas_by_cols_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_schemas_by_cols_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_serde_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_serde_args.php index a75ecb58126d..6114036186d2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_serde_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_serde_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_serde_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_serde_result.php index b0605864deea..752083926c26 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_serde_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_serde_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_stored_procedure_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_stored_procedure_args.php index cf2777568c5b..ba68a84e4a96 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_stored_procedure_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_stored_procedure_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_stored_procedure_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_stored_procedure_result.php index 7b9caa95bf9f..00a11709519b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_stored_procedure_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_stored_procedure_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_args.php index 8d12a00d7036..01537b56a32e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_column_statistics_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_column_statistics_args.php index 61464822442a..4809831e75bd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_column_statistics_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_column_statistics_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_column_statistics_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_column_statistics_result.php index 6ad5e60b036b..76b2e6b579d5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_column_statistics_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_column_statistics_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_meta_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_meta_args.php index aecddb896088..77b46d6131ba 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_meta_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_meta_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_meta_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_meta_result.php index f162f0df2d43..08896a04cf69 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_meta_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_meta_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_names_by_filter_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_names_by_filter_args.php index ebc01420af53..0364d658ded0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_names_by_filter_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_names_by_filter_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_names_by_filter_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_names_by_filter_result.php index cce029f361fc..e622715c0c3f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_names_by_filter_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_names_by_filter_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_args.php index d4ca30736a67..8bdbce7c6c0f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_req_args.php index 2e6af52a6862..4acdf6d97edc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_req_result.php index a4faeae39c92..dddd39e0fe33 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_result.php index 28c31cf03098..902855098c89 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_objects_by_name_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_req_args.php index 716cf06b3589..fcf5b962e317 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_req_result.php index 5a1dd55c6008..10f7ab328011 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_result.php index b4bcf634e8a7..2270ba4075be 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_statistics_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_statistics_req_args.php index 2fd8c871e200..f9f915500cfc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_statistics_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_statistics_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_statistics_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_statistics_req_result.php index 0e983d1f2803..2c76de2a564f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_statistics_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_table_statistics_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_args.php index 267922029fbf..1aef14502cbe 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_by_type_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_by_type_args.php index 3c974e545d96..bcbc3e737995 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_by_type_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_by_type_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_by_type_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_by_type_result.php index a0bfc4876d13..2167bbcd77a8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_by_type_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_by_type_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_ext_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_ext_args.php index 25db2e9b56ee..a56861ba055f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_ext_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_ext_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_ext_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_ext_result.php index ce68a1b65f56..4612d2abba9d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_ext_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_ext_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_result.php index 1a269571ac51..f6a0823b3ff4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_tables_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_token_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_token_args.php index 511e15e422d2..ed54cb82ad0f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_token_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_token_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_token_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_token_result.php index c2545c2ecb0e..5d0a8ef3ce14 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_token_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_token_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_triggers_for_resourceplan_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_triggers_for_resourceplan_args.php index 0f21db4abd69..7bb319bdbbc9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_triggers_for_resourceplan_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_triggers_for_resourceplan_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_triggers_for_resourceplan_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_triggers_for_resourceplan_result.php index de2844b37bc0..c8d373841561 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_triggers_for_resourceplan_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_triggers_for_resourceplan_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_all_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_all_args.php index 669b400285d8..2af9bb74f246 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_all_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_all_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_all_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_all_result.php index ab9f37c7b487..b908da5a2731 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_all_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_all_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_args.php index e29aafe7461f..28f982942442 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_result.php index 4c8694079539..dc1ccf518a1d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_type_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_unique_constraints_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_unique_constraints_args.php index 0a191205ced6..c249bae6ec9b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_unique_constraints_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_unique_constraints_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_unique_constraints_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_unique_constraints_result.php index ec58108bbb79..8dacb4319bbc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_unique_constraints_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_unique_constraints_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_valid_write_ids_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_valid_write_ids_args.php index 3657828fca77..88cc79949055 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_valid_write_ids_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_valid_write_ids_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_valid_write_ids_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_valid_write_ids_result.php index a724691e3d9b..2e43c7779223 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_valid_write_ids_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_get_valid_write_ids_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_privileges_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_privileges_args.php index 83ef259a97de..f9776f83347a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_privileges_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_privileges_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_privileges_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_privileges_result.php index 8b3884f0cc6c..7f3f1252d757 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_privileges_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_privileges_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_privileges_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_privileges_args.php index f97b6c887c2c..a3075c3c2b16 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_privileges_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_privileges_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_privileges_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_privileges_result.php index 75b27354a52d..0c61288e88bf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_privileges_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_privileges_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_role_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_role_args.php index 8d6edded048f..c657a75692aa 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_role_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_role_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_role_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_role_result.php index e20ba62c124e..55a2e0823829 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_role_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_revoke_role_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_role_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_role_args.php index 5c5458cf660f..6d7a52582f61 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_role_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_role_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -35,6 +35,7 @@ class ThriftHiveMetastore_grant_role_args 'var' => 'principal_type', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 4 => array( 'var' => 'grantor', @@ -45,6 +46,7 @@ class ThriftHiveMetastore_grant_role_args 'var' => 'grantorType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 6 => array( 'var' => 'grant_option', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_role_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_role_result.php index edcc4dbbee89..297d4fb64359 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_role_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_grant_role_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_args.php index ac8e58007517..72bba6fac738 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_lock_materialization_rebuild_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_lock_materialization_rebuild_args.php index 87ffebd1c68a..de2ac10e5abe 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_lock_materialization_rebuild_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_lock_materialization_rebuild_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_lock_materialization_rebuild_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_lock_materialization_rebuild_result.php index bdefae586110..4db29b7b1ea7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_lock_materialization_rebuild_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_lock_materialization_rebuild_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_result.php index 6060927e3d2b..f18c2f8b7c2b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_txn_range_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_txn_range_args.php index f5203fe845fd..dee6b62c231d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_txn_range_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_txn_range_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_txn_range_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_txn_range_result.php index d8fe57cd277f..e8cda7bda3d2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_txn_range_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_heartbeat_txn_range_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_isPartitionMarkedForEvent_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_isPartitionMarkedForEvent_args.php index 69053878f55b..39a24929a9ab 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_isPartitionMarkedForEvent_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_isPartitionMarkedForEvent_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -48,6 +48,7 @@ class ThriftHiveMetastore_isPartitionMarkedForEvent_args 'var' => 'eventType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PartitionEventType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_isPartitionMarkedForEvent_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_isPartitionMarkedForEvent_result.php index 56b22e539246..d34b2694dfa1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_isPartitionMarkedForEvent_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_isPartitionMarkedForEvent_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_privileges_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_privileges_args.php index 75f6310142ca..17f0318bbd41 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_privileges_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_privileges_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -30,6 +30,7 @@ class ThriftHiveMetastore_list_privileges_args 'var' => 'principal_type', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), 3 => array( 'var' => 'hiveObject', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_privileges_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_privileges_result.php index 429712b37283..69cb99afb6e9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_privileges_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_privileges_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_roles_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_roles_args.php index 60a243def566..a21c2266cfff 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_roles_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_roles_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -30,6 +30,7 @@ class ThriftHiveMetastore_list_roles_args 'var' => 'principal_type', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_roles_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_roles_result.php index 7fae7cc5797e..0a4e4d9504e3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_roles_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_list_roles_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_lock_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_lock_args.php index 46bbb0689487..6b2c409e4bc4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_lock_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_lock_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_lock_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_lock_result.php index de7193f08552..5be4d0c6ad1a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_lock_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_lock_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_map_schema_version_to_serde_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_map_schema_version_to_serde_args.php index b834873824fd..5f04de678303 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_map_schema_version_to_serde_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_map_schema_version_to_serde_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_map_schema_version_to_serde_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_map_schema_version_to_serde_result.php index edfd4799dafa..fa9bc727c5f7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_map_schema_version_to_serde_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_map_schema_version_to_serde_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_markPartitionForEvent_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_markPartitionForEvent_args.php index ed694ac046ff..6d67f4506dd8 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_markPartitionForEvent_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_markPartitionForEvent_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -48,6 +48,7 @@ class ThriftHiveMetastore_markPartitionForEvent_args 'var' => 'eventType', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PartitionEventType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_markPartitionForEvent_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_markPartitionForEvent_result.php index b48c082d1b1b..b4c759933722 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_markPartitionForEvent_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_markPartitionForEvent_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_cleaned_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_cleaned_args.php index 3886253b0c71..c6cd7ff149a6 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_cleaned_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_cleaned_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_cleaned_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_cleaned_result.php index 7abce72deb57..d37ea26bbf0c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_cleaned_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_cleaned_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_compacted_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_compacted_args.php index 83a79f8288f6..c3399b976926 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_compacted_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_compacted_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_compacted_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_compacted_result.php index f657b5d71172..9021c676d0d9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_compacted_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_compacted_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_failed_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_failed_args.php index 385292f18344..ee0560745833 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_failed_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_failed_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_failed_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_failed_result.php index c9f164a16836..abfe573e50dc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_failed_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_mark_failed_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_open_txns_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_open_txns_args.php index 4611ac2f5186..b77ed6bdc59c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_open_txns_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_open_txns_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_open_txns_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_open_txns_result.php index dac26d18621f..c2d1f1e3af84 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_open_txns_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_open_txns_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_has_valid_characters_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_has_valid_characters_args.php index 5bae2a3f223f..e45a7bcb47c1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_has_valid_characters_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_has_valid_characters_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_has_valid_characters_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_has_valid_characters_result.php index 0280a1102fe0..6de57523abf2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_has_valid_characters_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_has_valid_characters_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_spec_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_spec_args.php index a0cc1cf05ba6..1081a348f2b7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_spec_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_spec_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_spec_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_spec_result.php index 4c2d80559a17..7a0c596f3ca3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_spec_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_spec_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_vals_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_vals_args.php index 2f6819689d83..5461d0a0c321 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_vals_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_vals_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_vals_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_vals_result.php index ac34140a3c1e..66bca383590a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_vals_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_partition_name_to_vals_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_put_file_metadata_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_put_file_metadata_args.php index e49e92ac8995..53c411d62a85 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_put_file_metadata_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_put_file_metadata_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_put_file_metadata_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_put_file_metadata_result.php index b1acbdab21a0..bfae324f953a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_put_file_metadata_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_put_file_metadata_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_refresh_privileges_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_refresh_privileges_args.php index 59b2f9d87a6b..e027508e8c8f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_refresh_privileges_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_refresh_privileges_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_refresh_privileges_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_refresh_privileges_result.php index b8ac54392127..da7282bda46e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_refresh_privileges_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_refresh_privileges_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_master_key_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_master_key_args.php index b7faff68112b..512cef8c3348 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_master_key_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_master_key_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_master_key_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_master_key_result.php index 32fc0f928d18..f02e8080a5be 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_master_key_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_master_key_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_token_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_token_args.php index 4c06f0fd6143..76a2db80ab17 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_token_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_token_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_token_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_token_result.php index add10dda15ac..1c7c14056134 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_token_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_remove_token_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_args.php index b7471fd76b4b..633832dbb4c5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_req_args.php index c3fd189301e7..7dc760908a6c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_req_result.php index 46a6b6dbefd9..0b2e4664cf4a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_result.php index daf8222ccc37..56076eace088 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_rename_partition_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_renew_delegation_token_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_renew_delegation_token_args.php index 572db221faab..7272a3667d6d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_renew_delegation_token_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_renew_delegation_token_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_renew_delegation_token_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_renew_delegation_token_result.php index c3d3d65e49b9..54a66bfbf8c4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_renew_delegation_token_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_renew_delegation_token_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_repl_tbl_writeid_state_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_repl_tbl_writeid_state_args.php index ebec0561e816..ced392968fdb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_repl_tbl_writeid_state_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_repl_tbl_writeid_state_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_repl_tbl_writeid_state_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_repl_tbl_writeid_state_result.php index 28f235a3a7ca..142899571633 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_repl_tbl_writeid_state_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_repl_tbl_writeid_state_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_privileges_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_privileges_args.php index 7795ef8bd93c..a37cff7197c5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_privileges_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_privileges_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_privileges_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_privileges_result.php index e8d5134f7966..fdb43a1541f1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_privileges_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_privileges_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_role_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_role_args.php index a0b7247ebfd7..5fca3c8614c1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_role_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_role_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -35,6 +35,7 @@ class ThriftHiveMetastore_revoke_role_args 'var' => 'principal_type', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\PrincipalType', ), ); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_role_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_role_result.php index 87771d85832a..6514a29ae0a1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_role_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_revoke_role_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_maintenance_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_maintenance_args.php index f7f99ae7aaef..4b8fcd8f92f9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_maintenance_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_maintenance_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_maintenance_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_maintenance_result.php index b1bd956a60e5..e66af0c1ca2d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_maintenance_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_maintenance_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_poll_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_poll_args.php index cef518134861..f0aab42ba854 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_poll_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_poll_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_poll_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_poll_result.php index b2d604a02e9d..e4574c9ab7e5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_poll_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_poll_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_progress_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_progress_args.php index c4f280fc454a..74cf4bec1466 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_progress_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_progress_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_progress_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_progress_result.php index 483b5fab6f42..9b7139053c3d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_progress_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_scheduled_query_progress_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_txn_id_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_txn_id_args.php index de1ba85f65ba..4015e8cd917b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_txn_id_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_txn_id_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_txn_id_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_txn_id_result.php index cfefc2c63236..caa9dde399df 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_txn_id_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_txn_id_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_write_id_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_write_id_args.php index 8bb4ecbfa7c3..003af26b2d08 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_write_id_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_write_id_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_write_id_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_write_id_result.php index aae6f1b7a051..bfbd4c955014 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_write_id_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_seed_write_id_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_setMetaConf_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_setMetaConf_args.php index 183cc08c2fbe..3212840a5ce9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_setMetaConf_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_setMetaConf_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_setMetaConf_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_setMetaConf_result.php index 07562f5ce512..1b7cacd89f7f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_setMetaConf_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_setMetaConf_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_aggr_stats_for_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_aggr_stats_for_args.php index d994a1cf4eab..19d532f7f1da 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_aggr_stats_for_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_aggr_stats_for_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_aggr_stats_for_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_aggr_stats_for_result.php index b9877a9806ed..4facc1d7a90a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_aggr_stats_for_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_aggr_stats_for_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_hadoop_jobid_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_hadoop_jobid_args.php index 7da58650fd11..e76d8332cfe1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_hadoop_jobid_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_hadoop_jobid_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_hadoop_jobid_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_hadoop_jobid_result.php index 1e28c09ef698..f56b3d22d7b3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_hadoop_jobid_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_hadoop_jobid_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_schema_version_state_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_schema_version_state_args.php index a1fd1f46e2eb..1d2dc5a36b11 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_schema_version_state_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_schema_version_state_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_schema_version_state_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_schema_version_state_result.php index 61bf6ee26955..cf1cacdec012 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_schema_version_state_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_schema_version_state_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_ugi_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_ugi_args.php index 8f2dd973e7ac..079fac97a670 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_ugi_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_ugi_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_ugi_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_ugi_result.php index ab9098ad471f..f7f42d0dc36f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_ugi_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_set_ugi_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_compact_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_compact_args.php index 64c34c7ea58a..5aa2437e2065 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_compact_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_compact_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_compact_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_compact_result.php index 78a2809fa0ff..9d530f4af90e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_compact_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_compact_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_locks_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_locks_args.php index 29ab1fe27f10..04d8071ae3ce 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_locks_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_locks_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_locks_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_locks_result.php index 74ee9339d43f..29e2bdd5eabf 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_locks_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_show_locks_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_args.php index 7b8c717fc89b..9cfd7d22aae2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_req_args.php index 70ce63b28947..721b88875835 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_req_result.php index adbb06abd213..09ced6f9ff41 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_result.php index 990514992dc0..9f2d5f166a67 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_truncate_table_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_unlock_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_unlock_args.php index e5d28d90c8e5..6875a9857152 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_unlock_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_unlock_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_unlock_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_unlock_result.php index b3eac8e25a08..b55fa1800158 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_unlock_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_unlock_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_compactor_state_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_compactor_state_args.php index c7cc86c484df..100b3bbe38fa 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_compactor_state_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_compactor_state_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_compactor_state_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_compactor_state_result.php index c68da2870322..15e29ee3f5d0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_compactor_state_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_compactor_state_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_creation_metadata_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_creation_metadata_args.php index 9d47d402b3e8..83bed1acf856 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_creation_metadata_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_creation_metadata_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_creation_metadata_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_creation_metadata_result.php index 7a030b7368f9..fd6f4373bfb3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_creation_metadata_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_creation_metadata_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_master_key_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_master_key_args.php index cf9d22df991a..930f280a49fe 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_master_key_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_master_key_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_master_key_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_master_key_result.php index bd5107d12a80..a2f25190b126 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_master_key_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_master_key_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_args.php index 0198058e454e..940097a8e339 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_req_args.php index 88593c7bb428..aa2a708dac35 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_req_result.php index 967a0ce4bc36..f3052b1826eb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_result.php index 51864bbbd864..499eb67b16cc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_partition_column_statistics_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_args.php index 0f349a185021..953f4c90f7dd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_req_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_req_args.php index a968b1135139..3e35875d04a0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_req_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_req_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_req_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_req_result.php index e2870915452e..eb2604052324 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_req_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_req_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_result.php index 2c634fec26f1..f5d7e9e09668 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_update_table_column_statistics_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_validate_resource_plan_args.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_validate_resource_plan_args.php index e0fe3d4eb12d..2950f54d9b6a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_validate_resource_plan_args.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_validate_resource_plan_args.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_validate_resource_plan_result.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_validate_resource_plan_result.php index 6385956496b4..d95c1713fba0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_validate_resource_plan_result.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore_validate_resource_plan_result.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Timestamp.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Timestamp.php index 5cf8d884a4fd..309ad4ae5b4a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Timestamp.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Timestamp.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TimestampColumnStatsData.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TimestampColumnStatsData.php index e300931a0297..963a46105c94 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TimestampColumnStatsData.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TimestampColumnStatsData.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TruncateTableRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TruncateTableRequest.php index 675c3b0596d2..01c419c8fcda 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TruncateTableRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TruncateTableRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TruncateTableResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TruncateTableResponse.php index d310d8863330..4668e2a3869e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TruncateTableResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TruncateTableResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnAbortedException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnAbortedException.php index 58cdc3046d01..bd85950c7090 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnAbortedException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnAbortedException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnInfo.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnInfo.php index 6faee5719392..e4a35d7893ac 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnInfo.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnInfo.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -30,6 +30,7 @@ class TxnInfo 'var' => 'state', 'isRequired' => true, 'type' => TType::I32, + 'class' => '\metastore\TxnState', ), 3 => array( 'var' => 'user', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnOpenException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnOpenException.php index 97b2577d5d12..bf5d99253d27 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnOpenException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnOpenException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnState.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnState.php index f8987f1e9e6e..bab43059b27d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnState.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnState.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnToWriteId.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnToWriteId.php index f9324bb8c9ff..c8de10e6463b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnToWriteId.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnToWriteId.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnType.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnType.php index a36750cdda1a..6c2e294aff48 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnType.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/TxnType.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Type.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Type.php index f30d954c5de0..6514236623b2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Type.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Type.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UniqueConstraintsRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UniqueConstraintsRequest.php index 5006923d0a3f..bf185c8dada2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UniqueConstraintsRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UniqueConstraintsRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UniqueConstraintsResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UniqueConstraintsResponse.php index 9fd1f97a0c7e..fa60eefd3949 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UniqueConstraintsResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UniqueConstraintsResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnknownDBException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnknownDBException.php index e034c9e892f8..6f63d52e42b5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnknownDBException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnknownDBException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnknownPartitionException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnknownPartitionException.php index 761cc255e022..71040f38d550 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnknownPartitionException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnknownPartitionException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnknownTableException.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnknownTableException.php index fe0ed328272e..388252be2997 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnknownTableException.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnknownTableException.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnlockRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnlockRequest.php index 2f546dd969c2..99ad2f0e9611 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnlockRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/UnlockRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Version.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Version.php index 8b565bc0c243..fdf3de1cae37 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Version.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Version.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterPoolRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterPoolRequest.php index 3e488c242ed1..aaebb7e4a32d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterPoolRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterPoolRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterPoolResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterPoolResponse.php index 70b7eabca855..07b956277048 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterPoolResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterPoolResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterResourcePlanRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterResourcePlanRequest.php index 224cc96980d8..341d140b4459 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterResourcePlanRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterResourcePlanRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterResourcePlanResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterResourcePlanResponse.php index 094a1e85e23c..e018e32055c5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterResourcePlanResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterResourcePlanResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterTriggerRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterTriggerRequest.php index 1441ddb3c3d7..da551609c303 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterTriggerRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterTriggerRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterTriggerResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterTriggerResponse.php index 24404cda15a3..8504ddbbe3d4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterTriggerResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMAlterTriggerResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrDropTriggerToPoolMappingRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrDropTriggerToPoolMappingRequest.php index d1d0f4dfe092..a303eb2bd1f3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrDropTriggerToPoolMappingRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrDropTriggerToPoolMappingRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrDropTriggerToPoolMappingResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrDropTriggerToPoolMappingResponse.php index 9b8a266aaf79..d8a9b77ff1c3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrDropTriggerToPoolMappingResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrDropTriggerToPoolMappingResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrUpdateMappingRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrUpdateMappingRequest.php index 414f9b411bdc..3aa24854e56f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrUpdateMappingRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrUpdateMappingRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrUpdateMappingResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrUpdateMappingResponse.php index 51f5a69de8e6..9f7d5fa49c55 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrUpdateMappingResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateOrUpdateMappingResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreatePoolRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreatePoolRequest.php index 1ff0cad9523b..a40385d45072 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreatePoolRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreatePoolRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreatePoolResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreatePoolResponse.php index 4435dfc1b6d1..40a48984ec4c 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreatePoolResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreatePoolResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateResourcePlanRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateResourcePlanRequest.php index cac18908aff3..ee1bf152dc90 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateResourcePlanRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateResourcePlanRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateResourcePlanResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateResourcePlanResponse.php index 9f06cd13ddc8..7ec4c2e859ec 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateResourcePlanResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateResourcePlanResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateTriggerRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateTriggerRequest.php index 183da8e3f0bf..b5933f16e520 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateTriggerRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateTriggerRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateTriggerResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateTriggerResponse.php index d435cba7847f..a118dc878331 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateTriggerResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMCreateTriggerResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropMappingRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropMappingRequest.php index 24346a9414c4..e936887b8c5b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropMappingRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropMappingRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropMappingResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropMappingResponse.php index 92605f7d5b17..f203fad11565 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropMappingResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropMappingResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropPoolRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropPoolRequest.php index a3e05f65eca0..07486804be4b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropPoolRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropPoolRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropPoolResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropPoolResponse.php index f6b06d4e3f0d..ff8216ca3775 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropPoolResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropPoolResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropResourcePlanRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropResourcePlanRequest.php index 4cfac577f707..4a5249484eb7 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropResourcePlanRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropResourcePlanRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropResourcePlanResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropResourcePlanResponse.php index 702c6d738c9a..de385ce96e59 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropResourcePlanResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropResourcePlanResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropTriggerRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropTriggerRequest.php index 5ec1cd22e37e..0c4bb1f4ac32 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropTriggerRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropTriggerRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropTriggerResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropTriggerResponse.php index be76344a3953..ce589189ad19 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropTriggerResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMDropTriggerResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMFullResourcePlan.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMFullResourcePlan.php index b84a758708fd..8292f896dad2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMFullResourcePlan.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMFullResourcePlan.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetActiveResourcePlanRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetActiveResourcePlanRequest.php index d6e854913435..bac0bb74c6ee 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetActiveResourcePlanRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetActiveResourcePlanRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetActiveResourcePlanResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetActiveResourcePlanResponse.php index b48214dd4ece..4b823cad40fb 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetActiveResourcePlanResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetActiveResourcePlanResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetAllResourcePlanRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetAllResourcePlanRequest.php index ec36417c704d..534dc7e1d683 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetAllResourcePlanRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetAllResourcePlanRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetAllResourcePlanResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetAllResourcePlanResponse.php index bbd00092ffdb..97c2e1401251 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetAllResourcePlanResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetAllResourcePlanResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetResourcePlanRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetResourcePlanRequest.php index 1ba1e73a7a87..ec7b80c5407a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetResourcePlanRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetResourcePlanRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetResourcePlanResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetResourcePlanResponse.php index d508d896e3cd..83e2deb1e434 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetResourcePlanResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetResourcePlanResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetTriggersForResourePlanRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetTriggersForResourePlanRequest.php index b209d77f492d..aee61d6e9da2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetTriggersForResourePlanRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetTriggersForResourePlanRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetTriggersForResourePlanResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetTriggersForResourePlanResponse.php index e436ebe4f385..85f91f673883 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetTriggersForResourePlanResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMGetTriggersForResourePlanResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMMapping.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMMapping.php index 94cf7f3d49d7..7402e105593f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMMapping.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMMapping.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMNullablePool.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMNullablePool.php index 3cb552d9c8ca..9cbcf5e1af48 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMNullablePool.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMNullablePool.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMNullableResourcePlan.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMNullableResourcePlan.php index 8ba7652bca24..ef16e3a3f90e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMNullableResourcePlan.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMNullableResourcePlan.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -30,6 +30,7 @@ class WMNullableResourcePlan 'var' => 'status', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\WMResourcePlanStatus', ), 4 => array( 'var' => 'queryParallelism', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMPool.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMPool.php index c08cff7f0006..1968c5b88463 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMPool.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMPool.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMPoolSchedulingPolicy.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMPoolSchedulingPolicy.php index e4b2338647f8..424793c0c6fa 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMPoolSchedulingPolicy.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMPoolSchedulingPolicy.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMPoolTrigger.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMPoolTrigger.php index d00b3588f5e2..2fe8c219dc99 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMPoolTrigger.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMPoolTrigger.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMResourcePlan.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMResourcePlan.php index 90c5a816ad05..cb536f293a30 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMResourcePlan.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMResourcePlan.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated @@ -30,6 +30,7 @@ class WMResourcePlan 'var' => 'status', 'isRequired' => false, 'type' => TType::I32, + 'class' => '\metastore\WMResourcePlanStatus', ), 3 => array( 'var' => 'queryParallelism', diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMResourcePlanStatus.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMResourcePlanStatus.php index 7e68339364cf..c01f12008535 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMResourcePlanStatus.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMResourcePlanStatus.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMTrigger.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMTrigger.php index 3218af7b8ecd..0805b9f9be20 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMTrigger.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMTrigger.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMValidateResourcePlanRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMValidateResourcePlanRequest.php index b7b708430743..131eaae3fff9 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMValidateResourcePlanRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMValidateResourcePlanRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMValidateResourcePlanResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMValidateResourcePlanResponse.php index 7932790d6ec2..6c56ea23510a 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMValidateResourcePlanResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WMValidateResourcePlanResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WriteEventInfo.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WriteEventInfo.php index a7a50f814866..fe853b1742a2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WriteEventInfo.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WriteEventInfo.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WriteNotificationLogRequest.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WriteNotificationLogRequest.php index c7025b097794..277026d658ad 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WriteNotificationLogRequest.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WriteNotificationLogRequest.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WriteNotificationLogResponse.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WriteNotificationLogResponse.php index eafbbc2d0f51..6c40a69342b0 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WriteNotificationLogResponse.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/WriteNotificationLogResponse.php @@ -2,7 +2,7 @@ namespace metastore; /** - * Autogenerated by Thrift Compiler (0.13.0) + * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore-remote b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore-remote index 9c3f3bbef6a9..b3ddb7471928 100755 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore-remote +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore-remote @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Autogenerated by Thrift Compiler (0.13.0) +# Autogenerated by Thrift Compiler (0.14.1) # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore.py b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore.py index 66b736ceb22a..506e88004532 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore.py +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore.py @@ -1,5 +1,5 @@ # -# Autogenerated by Thrift Compiler (0.13.0) +# Autogenerated by Thrift Compiler (0.14.1) # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # @@ -19447,7 +19447,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.key = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.key = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -19511,13 +19511,12 @@ def read(self, iprot): break if fid == 0: if ftype == TType.STRING: - self.success = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.success = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -19585,12 +19584,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.key = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.key = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.value = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.value = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -19657,8 +19656,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -19787,20 +19785,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -19939,20 +19934,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -20097,14 +20089,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -20226,8 +20216,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -20360,20 +20349,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -20512,20 +20498,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -20597,7 +20580,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -20669,14 +20652,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -20820,14 +20801,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -20902,7 +20881,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -20988,20 +20967,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -21073,7 +21049,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.pattern = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.pattern = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -21140,15 +21116,14 @@ def read(self, iprot): self.success = [] (_etype1215, _size1212) = iprot.readListBegin() for _i1216 in range(_size1212): - _elem1217 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1217 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1217) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -21265,15 +21240,14 @@ def read(self, iprot): self.success = [] (_etype1222, _size1219) = iprot.readListBegin() for _i1223 in range(_size1219): - _elem1224 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1224 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1224) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -21344,7 +21318,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -21419,14 +21393,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -21560,20 +21532,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -21718,14 +21687,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -21800,7 +21767,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == -1: @@ -21881,20 +21848,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -22014,15 +21978,14 @@ def read(self, iprot): self.success = [] (_etype1229, _size1226) = iprot.readListBegin() for _i1230 in range(_size1226): - _elem1231 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1231 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1231) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -22093,7 +22056,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -22168,14 +22131,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -22242,7 +22203,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -22314,14 +22275,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -22466,20 +22425,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -22555,7 +22511,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.type = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.type = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -22626,14 +22582,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -22704,7 +22658,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -22771,7 +22725,7 @@ def read(self, iprot): self.success = {} (_ktype1234, _vtype1235, _size1233) = iprot.readMapBegin() for _i1237 in range(_size1233): - _key1238 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key1238 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() _val1239 = Type() _val1239.read(iprot) self.success[_key1238] = _val1239 @@ -22780,8 +22734,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -22853,12 +22806,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -22942,20 +22895,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = UnknownTableException() - self.o2.read(iprot) + self.o2 = UnknownTableException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = UnknownDBException() - self.o3.read(iprot) + self.o3 = UnknownDBException.read(iprot) else: iprot.skip(ftype) else: @@ -23038,12 +22988,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -23138,20 +23088,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = UnknownTableException() - self.o2.read(iprot) + self.o2 = UnknownTableException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = UnknownDBException() - self.o3.read(iprot) + self.o3 = UnknownDBException.read(iprot) else: iprot.skip(ftype) else: @@ -23305,20 +23252,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = UnknownTableException() - self.o2.read(iprot) + self.o2 = UnknownTableException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = UnknownDBException() - self.o3.read(iprot) + self.o3 = UnknownDBException.read(iprot) else: iprot.skip(ftype) else: @@ -23396,12 +23340,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -23485,20 +23429,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = UnknownTableException() - self.o2.read(iprot) + self.o2 = UnknownTableException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = UnknownDBException() - self.o3.read(iprot) + self.o3 = UnknownDBException.read(iprot) else: iprot.skip(ftype) else: @@ -23581,12 +23522,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -23681,20 +23622,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = UnknownTableException() - self.o2.read(iprot) + self.o2 = UnknownTableException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = UnknownDBException() - self.o3.read(iprot) + self.o3 = UnknownDBException.read(iprot) else: iprot.skip(ftype) else: @@ -23848,20 +23786,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = UnknownTableException() - self.o2.read(iprot) + self.o2 = UnknownTableException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = UnknownDBException() - self.o3.read(iprot) + self.o3 = UnknownDBException.read(iprot) else: iprot.skip(ftype) else: @@ -24006,26 +23941,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = NoSuchObjectException() - self.o4.read(iprot) + self.o4 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -24184,26 +24115,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = NoSuchObjectException() - self.o4.read(iprot) + self.o4 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -24475,26 +24402,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = NoSuchObjectException() - self.o4.read(iprot) + self.o4 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -24640,26 +24563,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = NoSuchObjectException() - self.o4.read(iprot) + self.o4 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -24801,14 +24720,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -24940,14 +24857,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -25079,14 +24994,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -25218,14 +25131,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -25357,14 +25268,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -25496,14 +25405,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -25635,14 +25542,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -25713,12 +25618,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -25797,14 +25702,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -25877,12 +25780,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -25972,14 +25875,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -26050,12 +25951,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -26063,7 +25964,7 @@ def read(self, iprot): self.partNames = [] (_etype1315, _size1312) = iprot.readListBegin() for _i1316 in range(_size1312): - _elem1317 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1317 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partNames.append(_elem1317) iprot.readListEnd() else: @@ -26140,8 +26041,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -26274,8 +26174,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -26343,12 +26242,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.pattern = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.pattern = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -26420,15 +26319,14 @@ def read(self, iprot): self.success = [] (_etype1322, _size1319) = iprot.readListBegin() for _i1323 in range(_size1319): - _elem1324 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1324 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1324) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -26501,17 +26399,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.pattern = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.pattern = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tableType = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableType = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -26588,15 +26486,14 @@ def read(self, iprot): self.success = [] (_etype1329, _size1326) = iprot.readListBegin() for _i1330 in range(_size1326): - _elem1331 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1331 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1331) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -26721,8 +26618,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -26791,7 +26687,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -26858,15 +26754,14 @@ def read(self, iprot): self.success = [] (_etype1343, _size1340) = iprot.readListBegin() for _i1344 in range(_size1340): - _elem1345 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1345 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1345) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -26939,12 +26834,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_patterns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_patterns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_patterns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_patterns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -26952,7 +26847,7 @@ def read(self, iprot): self.tbl_types = [] (_etype1350, _size1347) = iprot.readListBegin() for _i1351 in range(_size1347): - _elem1352 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1352 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.tbl_types.append(_elem1352) iprot.readListEnd() else: @@ -27042,8 +26937,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -27112,7 +27006,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -27179,15 +27073,14 @@ def read(self, iprot): self.success = [] (_etype1364, _size1361) = iprot.readListBegin() for _i1365 in range(_size1361): - _elem1366 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1366 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1366) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -27258,12 +27151,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -27340,14 +27233,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -27420,7 +27311,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -27428,7 +27319,7 @@ def read(self, iprot): self.tbl_names = [] (_etype1371, _size1368) = iprot.readListBegin() for _i1372 in range(_size1368): - _elem1373 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1373 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.tbl_names.append(_elem1373) iprot.readListEnd() else: @@ -27646,8 +27537,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -27789,14 +27679,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -27942,20 +27830,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = UnknownDBException() - self.o3.read(iprot) + self.o3 = UnknownDBException.read(iprot) else: iprot.skip(ftype) else: @@ -28039,7 +27924,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.validTxnList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validTxnList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -28118,20 +28003,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = UnknownDBException() - self.o3.read(iprot) + self.o3 = UnknownDBException.read(iprot) else: iprot.skip(ftype) else: @@ -28213,17 +28095,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -28310,20 +28192,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = UnknownDBException() - self.o3.read(iprot) + self.o3 = UnknownDBException.read(iprot) else: iprot.skip(ftype) else: @@ -28399,12 +28278,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.filter = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.filter = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -28490,27 +28369,24 @@ def read(self, iprot): self.success = [] (_etype1392, _size1389) = iprot.readListBegin() for _i1393 in range(_size1389): - _elem1394 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1394 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1394) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = UnknownDBException() - self.o3.read(iprot) + self.o3 = UnknownDBException.read(iprot) else: iprot.skip(ftype) else: @@ -28593,12 +28469,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -28678,14 +28554,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidOperationException() - self.o1.read(iprot) + self.o1 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -28758,12 +28632,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -28854,14 +28728,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidOperationException() - self.o1.read(iprot) + self.o1 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -28934,12 +28806,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -29029,14 +28901,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidOperationException() - self.o1.read(iprot) + self.o1 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -29176,14 +29046,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidOperationException() - self.o1.read(iprot) + self.o1 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -29329,20 +29197,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidObjectException() - self.o1.read(iprot) + self.o1 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = AlreadyExistsException() - self.o2.read(iprot) + self.o2 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -29506,20 +29371,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidObjectException() - self.o1.read(iprot) + self.o1 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = AlreadyExistsException() - self.o2.read(iprot) + self.o2 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -29677,20 +29539,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidObjectException() - self.o1.read(iprot) + self.o1 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = AlreadyExistsException() - self.o2.read(iprot) + self.o2 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -29848,20 +29707,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidObjectException() - self.o1.read(iprot) + self.o1 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = AlreadyExistsException() - self.o2.read(iprot) + self.o2 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -29941,12 +29797,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -29954,7 +29810,7 @@ def read(self, iprot): self.part_vals = [] (_etype1413, _size1410) = iprot.readListBegin() for _i1414 in range(_size1410): - _elem1415 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1415 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals.append(_elem1415) iprot.readListEnd() else: @@ -30043,20 +29899,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidObjectException() - self.o1.read(iprot) + self.o1 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = AlreadyExistsException() - self.o2.read(iprot) + self.o2 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -30207,20 +30060,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidObjectException() - self.o1.read(iprot) + self.o1 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = AlreadyExistsException() - self.o2.read(iprot) + self.o2 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -30302,12 +30152,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -30315,7 +30165,7 @@ def read(self, iprot): self.part_vals = [] (_etype1420, _size1417) = iprot.readListBegin() for _i1421 in range(_size1417): - _elem1422 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1422 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals.append(_elem1422) iprot.readListEnd() else: @@ -30415,20 +30265,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidObjectException() - self.o1.read(iprot) + self.o1 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = AlreadyExistsException() - self.o2.read(iprot) + self.o2 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -30508,17 +30355,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.part_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.part_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -30602,20 +30449,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidObjectException() - self.o1.read(iprot) + self.o1 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = AlreadyExistsException() - self.o2.read(iprot) + self.o2 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -30697,17 +30541,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.part_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.part_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -30802,20 +30646,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidObjectException() - self.o1.read(iprot) + self.o1 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = AlreadyExistsException() - self.o2.read(iprot) + self.o2 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -30897,12 +30738,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -30910,7 +30751,7 @@ def read(self, iprot): self.part_vals = [] (_etype1427, _size1424) = iprot.readListBegin() for _i1428 in range(_size1424): - _elem1429 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1429 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals.append(_elem1429) iprot.readListEnd() else: @@ -31006,14 +30847,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -31092,12 +30931,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -31105,7 +30944,7 @@ def read(self, iprot): self.part_vals = [] (_etype1434, _size1431) = iprot.readListBegin() for _i1435 in range(_size1431): - _elem1436 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1436 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals.append(_elem1436) iprot.readListEnd() else: @@ -31212,14 +31051,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -31296,17 +31133,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.part_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.part_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -31397,14 +31234,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -31483,17 +31318,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.part_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.part_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -31595,14 +31430,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -31746,14 +31579,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -31828,12 +31659,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -31841,7 +31672,7 @@ def read(self, iprot): self.part_vals = [] (_etype1441, _size1438) = iprot.readListBegin() for _i1442 in range(_size1438): - _elem1443 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1443 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals.append(_elem1443) iprot.readListEnd() else: @@ -31928,14 +31759,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -32079,14 +31908,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -32168,30 +31995,30 @@ def read(self, iprot): self.partitionSpecs = {} (_ktype1446, _vtype1447, _size1445) = iprot.readMapBegin() for _i1449 in range(_size1445): - _key1450 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val1451 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key1450 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val1451 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partitionSpecs[_key1450] = _val1451 iprot.readMapEnd() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.source_db = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.source_db = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.source_table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.source_table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.dest_db = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dest_db = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.dest_table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dest_table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -32291,26 +32118,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = InvalidObjectException() - self.o3.read(iprot) + self.o3 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = InvalidInputException() - self.o4.read(iprot) + self.o4 = InvalidInputException.read(iprot) else: iprot.skip(ftype) else: @@ -32402,30 +32225,30 @@ def read(self, iprot): self.partitionSpecs = {} (_ktype1455, _vtype1456, _size1454) = iprot.readMapBegin() for _i1458 in range(_size1454): - _key1459 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val1460 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key1459 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val1460 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partitionSpecs[_key1459] = _val1460 iprot.readMapEnd() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.source_db = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.source_db = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.source_table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.source_table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.dest_db = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dest_db = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.dest_table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dest_table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -32530,26 +32353,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = InvalidObjectException() - self.o3.read(iprot) + self.o3 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = InvalidInputException() - self.o4.read(iprot) + self.o4 = InvalidInputException.read(iprot) else: iprot.skip(ftype) else: @@ -32641,12 +32460,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -32654,14 +32473,14 @@ def read(self, iprot): self.part_vals = [] (_etype1473, _size1470) = iprot.readListBegin() for _i1474 in range(_size1470): - _elem1475 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1475 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals.append(_elem1475) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.user_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -32669,7 +32488,7 @@ def read(self, iprot): self.group_names = [] (_etype1479, _size1476) = iprot.readListBegin() for _i1480 in range(_size1476): - _elem1481 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1481 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.group_names.append(_elem1481) iprot.readListEnd() else: @@ -32769,14 +32588,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -32851,17 +32668,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.part_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.part_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -32943,14 +32760,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -33025,12 +32840,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -33122,14 +32937,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -33276,14 +33089,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -33362,12 +33173,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -33377,7 +33188,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.user_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -33385,7 +33196,7 @@ def read(self, iprot): self.group_names = [] (_etype1494, _size1491) = iprot.readListBegin() for _i1495 in range(_size1491): - _elem1496 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1496 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.group_names.append(_elem1496) iprot.readListEnd() else: @@ -33487,14 +33298,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -33572,12 +33381,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -33669,14 +33478,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -33754,12 +33561,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -33843,21 +33650,19 @@ def read(self, iprot): self.success = [] (_etype1515, _size1512) = iprot.readListBegin() for _i1516 in range(_size1512): - _elem1517 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1517 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1517) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -34004,14 +33809,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -34088,12 +33891,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -34101,7 +33904,7 @@ def read(self, iprot): self.part_vals = [] (_etype1522, _size1519) = iprot.readListBegin() for _i1523 in range(_size1519): - _elem1524 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1524 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals.append(_elem1524) iprot.readListEnd() else: @@ -34203,14 +34006,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -34294,12 +34095,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -34307,7 +34108,7 @@ def read(self, iprot): self.part_vals = [] (_etype1536, _size1533) = iprot.readListBegin() for _i1537 in range(_size1533): - _elem1538 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1538 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals.append(_elem1538) iprot.readListEnd() else: @@ -34319,7 +34120,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.user_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -34327,7 +34128,7 @@ def read(self, iprot): self.group_names = [] (_etype1542, _size1539) = iprot.readListBegin() for _i1543 in range(_size1539): - _elem1544 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1544 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.group_names.append(_elem1544) iprot.readListEnd() else: @@ -34437,14 +34238,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -34591,14 +34390,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -34675,12 +34472,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -34688,7 +34485,7 @@ def read(self, iprot): self.part_vals = [] (_etype1557, _size1554) = iprot.readListBegin() for _i1558 in range(_size1554): - _elem1559 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1559 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals.append(_elem1559) iprot.readListEnd() else: @@ -34782,21 +34579,19 @@ def read(self, iprot): self.success = [] (_etype1564, _size1561) = iprot.readListBegin() for _i1565 in range(_size1561): - _elem1566 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1566 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1566) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -34943,14 +34738,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -35091,21 +34884,19 @@ def read(self, iprot): self.success = [] (_etype1571, _size1568) = iprot.readListBegin() for _i1572 in range(_size1568): - _elem1573 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1573 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1573) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -35185,17 +34976,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.filter = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.filter = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -35292,14 +35083,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -35379,17 +35168,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.filter = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.filter = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -35486,14 +35275,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -35640,14 +35427,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -35791,14 +35576,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -35873,17 +35656,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.filter = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.filter = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -35964,14 +35747,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -36046,12 +35827,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -36059,7 +35840,7 @@ def read(self, iprot): self.names = [] (_etype1592, _size1589) = iprot.readListBegin() for _i1593 in range(_size1589): - _elem1594 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1594 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.names.append(_elem1594) iprot.readListEnd() else: @@ -36151,14 +35932,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -36305,14 +36084,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -36387,12 +36164,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -36472,14 +36249,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidOperationException() - self.o1.read(iprot) + self.o1 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -36550,12 +36325,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -36643,14 +36418,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidOperationException() - self.o1.read(iprot) + self.o1 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -36723,12 +36496,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -36827,14 +36600,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidOperationException() - self.o1.read(iprot) + self.o1 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -36974,14 +36745,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidOperationException() - self.o1.read(iprot) + self.o1 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -37058,12 +36827,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -37154,14 +36923,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidOperationException() - self.o1.read(iprot) + self.o1 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -37234,12 +37001,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -37247,7 +37014,7 @@ def read(self, iprot): self.part_vals = [] (_etype1620, _size1617) = iprot.readListBegin() for _i1621 in range(_size1617): - _elem1622 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1622 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals.append(_elem1622) iprot.readListEnd() else: @@ -37337,14 +37104,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidOperationException() - self.o1.read(iprot) + self.o1 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -37484,14 +37249,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidOperationException() - self.o1.read(iprot) + self.o1 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -37567,7 +37330,7 @@ def read(self, iprot): self.part_vals = [] (_etype1627, _size1624) = iprot.readListBegin() for _i1628 in range(_size1624): - _elem1629 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1629 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals.append(_elem1629) iprot.readListEnd() else: @@ -37651,8 +37414,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -37720,12 +37482,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.defaultValue = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.defaultValue = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -37794,13 +37556,12 @@ def read(self, iprot): break if fid == 0: if ftype == TType.STRING: - self.success = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.success = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = ConfigValSecurityException() - self.o1.read(iprot) + self.o1 = ConfigValSecurityException.read(iprot) else: iprot.skip(ftype) else: @@ -37866,7 +37627,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.part_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.part_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -37933,15 +37694,14 @@ def read(self, iprot): self.success = [] (_etype1634, _size1631) = iprot.readListBegin() for _i1635 in range(_size1631): - _elem1636 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1636 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1636) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -38010,7 +37770,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.part_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.part_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -38077,16 +37837,15 @@ def read(self, iprot): self.success = {} (_ktype1639, _vtype1640, _size1638) = iprot.readMapBegin() for _i1642 in range(_size1638): - _key1643 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val1644 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key1643 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val1644 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success[_key1643] = _val1644 iprot.readMapEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -38162,12 +37921,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -38175,8 +37934,8 @@ def read(self, iprot): self.part_vals = {} (_ktype1648, _vtype1649, _size1647) = iprot.readMapBegin() for _i1651 in range(_size1647): - _key1652 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val1653 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key1652 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val1653 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals[_key1652] = _val1653 iprot.readMapEnd() else: @@ -38274,38 +38033,32 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = UnknownDBException() - self.o3.read(iprot) + self.o3 = UnknownDBException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = UnknownTableException() - self.o4.read(iprot) + self.o4 = UnknownTableException.read(iprot) else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRUCT: - self.o5 = UnknownPartitionException() - self.o5.read(iprot) + self.o5 = UnknownPartitionException.read(iprot) else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRUCT: - self.o6 = InvalidPartitionException() - self.o6.read(iprot) + self.o6 = InvalidPartitionException.read(iprot) else: iprot.skip(ftype) else: @@ -38398,12 +38151,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -38411,8 +38164,8 @@ def read(self, iprot): self.part_vals = {} (_ktype1657, _vtype1658, _size1656) = iprot.readMapBegin() for _i1660 in range(_size1656): - _key1661 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val1662 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key1661 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val1662 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.part_vals[_key1661] = _val1662 iprot.readMapEnd() else: @@ -38517,38 +38270,32 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = UnknownDBException() - self.o3.read(iprot) + self.o3 = UnknownDBException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = UnknownTableException() - self.o4.read(iprot) + self.o4 = UnknownTableException.read(iprot) else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRUCT: - self.o5 = UnknownPartitionException() - self.o5.read(iprot) + self.o5 = UnknownPartitionException.read(iprot) else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRUCT: - self.o6 = InvalidPartitionException() - self.o6.read(iprot) + self.o6 = InvalidPartitionException.read(iprot) else: iprot.skip(ftype) else: @@ -38712,14 +38459,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -38863,14 +38608,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -39014,14 +38757,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -39165,14 +38906,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -39316,14 +39055,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -39467,14 +39204,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -39618,14 +39353,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -39772,26 +39505,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = InvalidInputException() - self.o4.read(iprot) + self.o4 = InvalidInputException.read(iprot) else: iprot.skip(ftype) else: @@ -39948,26 +39677,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = InvalidInputException() - self.o4.read(iprot) + self.o4 = InvalidInputException.read(iprot) else: iprot.skip(ftype) else: @@ -40125,26 +39850,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = InvalidInputException() - self.o4.read(iprot) + self.o4 = InvalidInputException.read(iprot) else: iprot.skip(ftype) else: @@ -40302,26 +40023,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = InvalidInputException() - self.o4.read(iprot) + self.o4 = InvalidInputException.read(iprot) else: iprot.skip(ftype) else: @@ -40406,17 +40123,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.col_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.col_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -40502,26 +40219,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = InvalidInputException() - self.o3.read(iprot) + self.o3 = InvalidInputException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = InvalidObjectException() - self.o4.read(iprot) + self.o4 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -40608,22 +40321,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.part_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.part_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.col_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.col_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -40714,26 +40427,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = InvalidInputException() - self.o3.read(iprot) + self.o3 = InvalidInputException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = InvalidObjectException() - self.o4.read(iprot) + self.o4 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -40887,14 +40596,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -41038,14 +40745,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -41189,14 +40894,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -41343,26 +41046,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = InvalidInputException() - self.o4.read(iprot) + self.o4 = InvalidInputException.read(iprot) else: iprot.skip(ftype) else: @@ -41451,27 +41150,27 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.part_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.part_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.col_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.col_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.engine = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.engine = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -41566,26 +41265,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = InvalidObjectException() - self.o3.read(iprot) + self.o3 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = InvalidInputException() - self.o4.read(iprot) + self.o4 = InvalidInputException.read(iprot) else: iprot.skip(ftype) else: @@ -41672,22 +41367,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.col_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.col_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.engine = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.engine = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -41777,26 +41472,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = InvalidObjectException() - self.o3.read(iprot) + self.o3 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = InvalidInputException() - self.o4.read(iprot) + self.o4 = InvalidInputException.read(iprot) else: iprot.skip(ftype) else: @@ -41946,26 +41637,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = NoSuchObjectException() - self.o4.read(iprot) + self.o4 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -42044,12 +41731,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.funcName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.funcName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -42118,14 +41805,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -42196,12 +41881,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.funcName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.funcName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -42281,14 +41966,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = InvalidOperationException() - self.o1.read(iprot) + self.o1 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -42357,12 +42040,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.pattern = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.pattern = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -42434,15 +42117,14 @@ def read(self, iprot): self.success = [] (_etype1668, _size1665) = iprot.readListBegin() for _i1669 in range(_size1665): - _elem1670 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1670 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1670) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -42513,12 +42195,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.funcName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.funcName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -42595,14 +42277,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -42724,8 +42404,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -42861,8 +42540,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -42928,7 +42606,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.role_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.role_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -42997,8 +42675,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -43112,15 +42789,14 @@ def read(self, iprot): self.success = [] (_etype1675, _size1672) = iprot.readListBegin() for _i1676 in range(_size1672): - _elem1677 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1677 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1677) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -43199,12 +42875,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.role_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.role_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.principal_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.principal_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -43214,7 +42890,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.grantor = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.grantor = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -43318,8 +42994,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -43389,12 +43064,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.role_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.role_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.principal_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.principal_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -43478,8 +43153,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -43547,7 +43221,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.principal_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.principal_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -43632,8 +43306,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -43773,8 +43446,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -43911,8 +43583,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -44049,8 +43720,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -44126,7 +43796,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.user_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -44134,7 +43804,7 @@ def read(self, iprot): self.group_names = [] (_etype1689, _size1686) = iprot.readListBegin() for _i1690 in range(_size1686): - _elem1691 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1691 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.group_names.append(_elem1691) iprot.readListEnd() else: @@ -44219,8 +43889,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -44290,7 +43959,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.principal_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.principal_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -44386,8 +44055,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -44526,8 +44194,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -44663,8 +44330,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -44801,8 +44467,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -44878,7 +44543,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.authorizer = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.authorizer = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -44964,8 +44629,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -45033,7 +44697,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.user_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -45041,7 +44705,7 @@ def read(self, iprot): self.group_names = [] (_etype1703, _size1700) = iprot.readListBegin() for _i1704 in range(_size1700): - _elem1705 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1705 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.group_names.append(_elem1705) iprot.readListEnd() else: @@ -45118,15 +44782,14 @@ def read(self, iprot): self.success = [] (_etype1710, _size1707) = iprot.readListBegin() for _i1711 in range(_size1707): - _elem1712 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1712 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1712) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -45197,12 +44860,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.token_owner = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.token_owner = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.renewer_kerberos_principal_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.renewer_kerberos_principal_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -45271,13 +44934,12 @@ def read(self, iprot): break if fid == 0: if ftype == TType.STRING: - self.success = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.success = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -45343,7 +45005,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.token_str_form = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.token_str_form = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -45412,8 +45074,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -45479,7 +45140,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.token_str_form = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.token_str_form = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -45541,8 +45202,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -45606,12 +45266,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.token_identifier = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.token_identifier = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.delegation_token = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.delegation_token = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -45739,7 +45399,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.token_identifier = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.token_identifier = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -45862,7 +45522,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.token_identifier = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.token_identifier = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -45924,7 +45584,7 @@ def read(self, iprot): break if fid == 0: if ftype == TType.STRING: - self.success = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.success = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -46031,7 +45691,7 @@ def read(self, iprot): self.success = [] (_etype1717, _size1714) = iprot.readListBegin() for _i1718 in range(_size1714): - _elem1719 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1719 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1719) iprot.readListEnd() else: @@ -46097,7 +45757,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.key = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.key = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -46166,8 +45826,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -46240,7 +45899,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.key = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.key = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -46309,14 +45968,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -46552,7 +46209,7 @@ def read(self, iprot): self.success = [] (_etype1724, _size1721) = iprot.readListBegin() for _i1725 in range(_size1721): - _elem1726 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1726 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1726) iprot.readListEnd() else: @@ -47016,8 +46673,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchTxnException() - self.o1.read(iprot) + self.o1 = NoSuchTxnException.read(iprot) else: iprot.skip(ftype) else: @@ -47142,8 +46798,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchTxnException() - self.o1.read(iprot) + self.o1 = NoSuchTxnException.read(iprot) else: iprot.skip(ftype) else: @@ -47270,14 +46925,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchTxnException() - self.o1.read(iprot) + self.o1 = NoSuchTxnException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = TxnAbortedException() - self.o2.read(iprot) + self.o2 = TxnAbortedException.read(iprot) else: iprot.skip(ftype) else: @@ -47413,8 +47066,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -47659,14 +47311,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchTxnException() - self.o1.read(iprot) + self.o1 = NoSuchTxnException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -47812,20 +47462,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchTxnException() - self.o1.read(iprot) + self.o1 = NoSuchTxnException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = TxnAbortedException() - self.o2.read(iprot) + self.o2 = TxnAbortedException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -47972,8 +47619,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -48102,8 +47748,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -48228,8 +47873,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -48364,14 +48008,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchTxnException() - self.o1.read(iprot) + self.o1 = NoSuchTxnException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = TxnAbortedException() - self.o2.read(iprot) + self.o2 = TxnAbortedException.read(iprot) else: iprot.skip(ftype) else: @@ -48517,20 +48159,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchTxnException() - self.o1.read(iprot) + self.o1 = NoSuchTxnException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = TxnAbortedException() - self.o2.read(iprot) + self.o2 = TxnAbortedException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = NoSuchLockException() - self.o3.read(iprot) + self.o3 = NoSuchLockException.read(iprot) else: iprot.skip(ftype) else: @@ -48671,14 +48310,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchLockException() - self.o1.read(iprot) + self.o1 = NoSuchLockException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = TxnOpenException() - self.o2.read(iprot) + self.o2 = TxnOpenException.read(iprot) else: iprot.skip(ftype) else: @@ -48937,20 +48574,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchLockException() - self.o1.read(iprot) + self.o1 = NoSuchLockException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchTxnException() - self.o2.read(iprot) + self.o2 = NoSuchTxnException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = TxnAbortedException() - self.o3.read(iprot) + self.o3 = TxnAbortedException.read(iprot) else: iprot.skip(ftype) else: @@ -49568,14 +49202,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchTxnException() - self.o1.read(iprot) + self.o1 = NoSuchTxnException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = TxnAbortedException() - self.o2.read(iprot) + self.o2 = TxnAbortedException.read(iprot) else: iprot.skip(ftype) else: @@ -49644,12 +49276,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.workerId = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.workerId = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.workerVersion = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.workerVersion = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -49724,8 +49356,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -49975,7 +49606,7 @@ def read(self, iprot): self.success = [] (_etype1731, _size1728) = iprot.readListBegin() for _i1732 in range(_size1728): - _elem1733 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1733 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1733) iprot.readListEnd() else: @@ -50104,8 +49735,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -50230,8 +49860,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -50356,8 +49985,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -50421,7 +50049,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.jobId = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.jobId = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -51423,8 +51051,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -52160,13 +51787,12 @@ def read(self, iprot): break if fid == 0: if ftype == TType.STRING: - self.success = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.success = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -52307,20 +51933,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -52469,14 +52092,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -52618,8 +52239,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -52756,8 +52376,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -52898,20 +52517,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -53060,14 +52676,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -53213,20 +52827,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -53379,26 +52990,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = InvalidObjectException() - self.o3.read(iprot) + self.o3 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = MetaException() - self.o4.read(iprot) + self.o4 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -53554,20 +53161,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidObjectException() - self.o2.read(iprot) + self.o2 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -53718,20 +53322,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -53880,14 +53481,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -54035,26 +53634,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = InvalidObjectException() - self.o3.read(iprot) + self.o3 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = MetaException() - self.o4.read(iprot) + self.o4 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -54212,26 +53807,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = InvalidObjectException() - self.o3.read(iprot) + self.o3 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = MetaException() - self.o4.read(iprot) + self.o4 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -54387,20 +53978,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -54553,26 +54141,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = InvalidObjectException() - self.o3.read(iprot) + self.o3 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = MetaException() - self.o4.read(iprot) + self.o4 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -54728,20 +54312,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -54894,26 +54475,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = InvalidObjectException() - self.o3.read(iprot) + self.o3 = InvalidObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = MetaException() - self.o4.read(iprot) + self.o4 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -55061,20 +54638,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -55211,14 +54785,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -55358,14 +54930,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -55503,20 +55073,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -55655,20 +55222,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -55813,14 +55377,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -55964,14 +55526,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -56120,14 +55680,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -56266,14 +55824,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -56411,8 +55967,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -56543,14 +56098,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -56684,20 +56237,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = MetaException() - self.o3.read(iprot) + self.o3 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -56834,14 +56384,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = AlreadyExistsException() - self.o1.read(iprot) + self.o1 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -56981,14 +56529,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -57063,12 +56609,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -57211,12 +56757,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -57417,8 +56963,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -57556,8 +57101,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -57697,8 +57241,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -57835,8 +57378,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -57971,26 +57513,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRUCT: - self.o3 = AlreadyExistsException() - self.o3.read(iprot) + self.o3 = AlreadyExistsException.read(iprot) else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRUCT: - self.o4 = InvalidInputException() - self.o4.read(iprot) + self.o4 = InvalidInputException.read(iprot) else: iprot.skip(ftype) else: @@ -58132,14 +57670,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = InvalidOperationException() - self.o2.read(iprot) + self.o2 = InvalidOperationException.read(iprot) else: iprot.skip(ftype) else: @@ -58279,14 +57815,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -58420,8 +57954,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -58554,8 +58087,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -58811,14 +58343,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = NoSuchObjectException() - self.o1.read(iprot) + self.o1 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = MetaException() - self.o2.read(iprot) + self.o2 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -58958,14 +58488,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -59099,8 +58627,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -59230,15 +58757,14 @@ def read(self, iprot): self.success = [] (_etype1752, _size1749) = iprot.readListBegin() for _i1753 in range(_size1749): - _elem1754 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1754 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1754) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -59380,14 +58906,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: - self.o2 = NoSuchObjectException() - self.o2.read(iprot) + self.o2 = NoSuchObjectException.read(iprot) else: iprot.skip(ftype) else: @@ -59521,8 +59045,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -59652,15 +59175,14 @@ def read(self, iprot): self.success = [] (_etype1759, _size1756) = iprot.readListBegin() for _i1760 in range(_size1756): - _elem1761 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1761 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.success.append(_elem1761) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -59792,8 +59314,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRUCT: - self.o1 = MetaException() - self.o1.read(iprot) + self.o1 = MetaException.read(iprot) else: iprot.skip(ftype) else: @@ -59833,4 +59354,3 @@ def __ne__(self, other): ) fix_spec(all_structs) del all_structs - diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/constants.py b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/constants.py index f6709ad632c5..4abdda20ba75 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/constants.py +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/constants.py @@ -1,5 +1,5 @@ # -# Autogenerated by Thrift Compiler (0.13.0) +# Autogenerated by Thrift Compiler (0.14.1) # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ttypes.py b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ttypes.py index 2cd7dfd57737..77622bdd01e1 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ttypes.py +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ttypes.py @@ -1,5 +1,5 @@ # -# Autogenerated by Thrift Compiler (0.13.0) +# Autogenerated by Thrift Compiler (0.14.1) # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # @@ -554,12 +554,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.version = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.version = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.comments = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.comments = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -624,17 +624,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.type = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.type = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.comment = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.comment = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -715,17 +715,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.table_db = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_db = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.column_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.column_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -735,7 +735,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.pk_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.pk_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -755,7 +755,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 9: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -872,32 +872,32 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.pktable_db = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.pktable_db = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.pktable_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.pktable_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.pkcolumn_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.pkcolumn_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.fktable_db = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.fktable_db = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.fktable_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.fktable_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.fkcolumn_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.fkcolumn_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -917,12 +917,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 10: if ftype == TType.STRING: - self.fk_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.fk_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 11: if ftype == TType.STRING: - self.pk_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.pk_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 12: @@ -942,7 +942,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 15: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -1071,22 +1071,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.table_db = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_db = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.column_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.column_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -1096,7 +1096,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.uk_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.uk_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -1214,27 +1214,27 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.table_db = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_db = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.column_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.column_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.nn_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.nn_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -1350,32 +1350,32 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.table_db = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_db = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.column_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.column_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.default_value = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.default_value = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.dc_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dc_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -1495,32 +1495,32 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.table_db = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_db = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.table_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.column_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.column_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.check_expression = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.check_expression = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.dc_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dc_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -1796,17 +1796,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.type1 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.type1 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.type2 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.type2 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -1904,12 +1904,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.objectName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.objectName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -1917,19 +1917,19 @@ def read(self, iprot): self.partValues = [] (_etype52, _size49) = iprot.readListBegin() for _i53 in range(_size49): - _elem54 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem54 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partValues.append(_elem54) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.columnName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.columnName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -2017,7 +2017,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.privilege = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.privilege = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -2027,7 +2027,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.grantor = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.grantor = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -2124,7 +2124,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.principalName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.principalName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -2140,7 +2140,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.authorizer = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.authorizer = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -2286,7 +2286,7 @@ def read(self, iprot): self.userPrivileges = {} (_ktype64, _vtype65, _size63) = iprot.readMapBegin() for _i67 in range(_size63): - _key68 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key68 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() _val69 = [] (_etype73, _size70) = iprot.readListBegin() for _i74 in range(_size70): @@ -2303,7 +2303,7 @@ def read(self, iprot): self.groupPrivileges = {} (_ktype77, _vtype78, _size76) = iprot.readMapBegin() for _i80 in range(_size76): - _key81 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key81 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() _val82 = [] (_etype86, _size83) = iprot.readListBegin() for _i87 in range(_size83): @@ -2320,7 +2320,7 @@ def read(self, iprot): self.rolePrivileges = {} (_ktype90, _vtype91, _size89) = iprot.readMapBegin() for _i93 in range(_size89): - _key94 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key94 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() _val95 = [] (_etype99, _size96) = iprot.readListBegin() for _i100 in range(_size96): @@ -2560,12 +2560,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -2573,7 +2573,7 @@ def read(self, iprot): self.partNames = [] (_etype114, _size111) = iprot.readListBegin() for _i115 in range(_size111): - _elem116 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem116 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partNames.append(_elem116) iprot.readListEnd() else: @@ -2585,7 +2585,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -2709,7 +2709,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.roleName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.roleName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -2719,7 +2719,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.ownerName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ownerName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -2796,12 +2796,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.roleName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.roleName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.principalName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.principalName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -2821,7 +2821,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.grantorName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.grantorName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -2909,7 +2909,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.principal_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.principal_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -3047,7 +3047,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.roleName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.roleName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -3191,12 +3191,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.roleName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.roleName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.principalName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.principalName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -3206,7 +3206,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.grantor = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.grantor = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -3360,17 +3360,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.description = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.description = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.locationUri = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.locationUri = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -3504,7 +3504,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -3571,7 +3571,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -3689,7 +3689,7 @@ def read(self, iprot): self.names = [] (_etype135, _size132) = iprot.readListBegin() for _i136 in range(_size132): - _elem137 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem137 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.names.append(_elem137) iprot.readListEnd() else: @@ -3751,7 +3751,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -3832,17 +3832,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.description = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.description = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.locationUri = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.locationUri = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -3850,8 +3850,8 @@ def read(self, iprot): self.parameters = {} (_ktype140, _vtype141, _size139) = iprot.readMapBegin() for _i143 in range(_size139): - _key144 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val145 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key144 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val145 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.parameters[_key144] = _val145 iprot.readMapEnd() else: @@ -3864,7 +3864,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.ownerName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ownerName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -3874,7 +3874,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 8: if ftype == TType.STRING: - self.catalogName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catalogName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 9: @@ -3884,7 +3884,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 10: if ftype == TType.STRING: - self.managedLocationUri = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.managedLocationUri = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 11: @@ -3894,12 +3894,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 12: if ftype == TType.STRING: - self.connector_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.connector_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 13: if ftype == TType.STRING: - self.remote_dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.remote_dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -4020,12 +4020,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.serializationLib = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.serializationLib = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -4033,25 +4033,25 @@ def read(self, iprot): self.parameters = {} (_ktype149, _vtype150, _size148) = iprot.readMapBegin() for _i152 in range(_size148): - _key153 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val154 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key153 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val154 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.parameters[_key153] = _val154 iprot.readMapEnd() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.description = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.description = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.serializerClass = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.serializerClass = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.deserializerClass = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.deserializerClass = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -4143,7 +4143,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.col = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.col = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -4216,7 +4216,7 @@ def read(self, iprot): self.skewedColNames = [] (_etype160, _size157) = iprot.readListBegin() for _i161 in range(_size157): - _elem162 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem162 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.skewedColNames.append(_elem162) iprot.readListEnd() else: @@ -4229,7 +4229,7 @@ def read(self, iprot): _elem168 = [] (_etype172, _size169) = iprot.readListBegin() for _i173 in range(_size169): - _elem174 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem174 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() _elem168.append(_elem174) iprot.readListEnd() self.skewedColValues.append(_elem168) @@ -4244,10 +4244,10 @@ def read(self, iprot): _key180 = [] (_etype185, _size182) = iprot.readListBegin() for _i186 in range(_size182): - _elem187 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem187 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() _key180.append(_elem187) iprot.readListEnd() - _val181 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _val181 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.skewedColValueLocationMaps[_key180] = _val181 iprot.readMapEnd() else: @@ -4363,17 +4363,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.location = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.location = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.inputFormat = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.inputFormat = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.outputFormat = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.outputFormat = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -4397,7 +4397,7 @@ def read(self, iprot): self.bucketCols = [] (_etype203, _size200) = iprot.readListBegin() for _i204 in range(_size200): - _elem205 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem205 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.bucketCols.append(_elem205) iprot.readListEnd() else: @@ -4418,8 +4418,8 @@ def read(self, iprot): self.parameters = {} (_ktype213, _vtype214, _size212) = iprot.readMapBegin() for _i216 in range(_size212): - _key217 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val218 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key217 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val218 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.parameters[_key217] = _val218 iprot.readMapEnd() else: @@ -4556,17 +4556,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -4574,14 +4574,14 @@ def read(self, iprot): self.tablesUsed = set() (_etype227, _size224) = iprot.readSetBegin() for _i228 in range(_size224): - _elem229 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem229 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.tablesUsed.add(_elem229) iprot.readSetEnd() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.validTxnList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validTxnList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -5842,12 +5842,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.colName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.colName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.colType = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.colType = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -5939,17 +5939,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.partName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.partName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -5959,7 +5959,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -6070,7 +6070,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.engine = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.engine = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -6194,17 +6194,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.owner = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.owner = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -6244,25 +6244,25 @@ def read(self, iprot): self.parameters = {} (_ktype245, _vtype246, _size244) = iprot.readMapBegin() for _i248 in range(_size244): - _key249 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val250 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key249 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val250 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.parameters[_key249] = _val250 iprot.readMapEnd() else: iprot.skip(ftype) elif fid == 10: if ftype == TType.STRING: - self.viewOriginalText = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.viewOriginalText = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 11: if ftype == TType.STRING: - self.viewExpandedText = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.viewExpandedText = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 12: if ftype == TType.STRING: - self.tableType = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableType = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 13: @@ -6289,7 +6289,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 17: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 18: @@ -6323,7 +6323,7 @@ def read(self, iprot): self.requiredReadCapabilities = [] (_etype254, _size251) = iprot.readListBegin() for _i255 in range(_size251): - _elem256 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem256 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.requiredReadCapabilities.append(_elem256) iprot.readListEnd() else: @@ -6333,7 +6333,7 @@ def read(self, iprot): self.requiredWriteCapabilities = [] (_etype260, _size257) = iprot.readListBegin() for _i261 in range(_size257): - _elem262 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem262 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.requiredWriteCapabilities.append(_elem262) iprot.readListEnd() else: @@ -6531,19 +6531,19 @@ def read(self, iprot): self.values = [] (_etype271, _size268) = iprot.readListBegin() for _i272 in range(_size268): - _elem273 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem273 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.values.append(_elem273) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -6567,8 +6567,8 @@ def read(self, iprot): self.parameters = {} (_ktype275, _vtype276, _size274) = iprot.readMapBegin() for _i278 in range(_size274): - _key279 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val280 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key279 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val280 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.parameters[_key279] = _val280 iprot.readMapEnd() else: @@ -6581,7 +6581,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 9: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 10: @@ -6718,7 +6718,7 @@ def read(self, iprot): self.values = [] (_etype287, _size284) = iprot.readListBegin() for _i288 in range(_size284): - _elem289 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem289 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.values.append(_elem289) iprot.readListEnd() else: @@ -6735,7 +6735,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.relativePath = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.relativePath = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -6743,8 +6743,8 @@ def read(self, iprot): self.parameters = {} (_ktype291, _vtype292, _size290) = iprot.readMapBegin() for _i294 in range(_size290): - _key295 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val296 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key295 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val296 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.parameters[_key295] = _val296 iprot.readMapEnd() else: @@ -6994,17 +6994,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.rootPath = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.rootPath = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -7021,7 +7021,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -7237,12 +7237,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.engine = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.engine = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -7397,8 +7397,8 @@ def read(self, iprot): self.properties = {} (_ktype335, _vtype336, _size334) = iprot.readMapBegin() for _i338 in range(_size334): - _key339 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val340 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key339 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val340 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.properties[_key339] = _val340 iprot.readMapEnd() else: @@ -7471,8 +7471,8 @@ def read(self, iprot): self.properties = {} (_ktype345, _vtype346, _size344) = iprot.readMapBegin() for _i348 in range(_size344): - _key349 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val350 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key349 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val350 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.properties[_key349] = _val350 iprot.readMapEnd() else: @@ -7539,17 +7539,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -7694,27 +7694,27 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.parent_db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.parent_db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.parent_tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.parent_tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.foreign_db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.foreign_db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.foreign_tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.foreign_tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -7859,17 +7859,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -8012,17 +8012,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -8165,17 +8165,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -8318,17 +8318,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -8471,17 +8471,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -8618,22 +8618,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tablename = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tablename = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.constraintname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.constraintname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -9294,12 +9294,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -9309,7 +9309,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.defaultPartitionName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.defaultPartitionName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -9319,17 +9319,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.order = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.order = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 8: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 9: @@ -9513,7 +9513,7 @@ def read(self, iprot): self.partStats = {} (_ktype459, _vtype460, _size458) = iprot.readMapBegin() for _i462 in range(_size458): - _key463 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key463 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() _val464 = [] (_etype468, _size465) = iprot.readListBegin() for _i469 in range(_size465): @@ -9609,12 +9609,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -9622,24 +9622,24 @@ def read(self, iprot): self.colNames = [] (_etype477, _size474) = iprot.readListBegin() for _i478 in range(_size474): - _elem479 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem479 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.colNames.append(_elem479) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.engine = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.engine = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -9748,12 +9748,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -9761,7 +9761,7 @@ def read(self, iprot): self.colNames = [] (_etype484, _size481) = iprot.readListBegin() for _i485 in range(_size481): - _elem486 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem486 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.colNames.append(_elem486) iprot.readListEnd() else: @@ -9771,24 +9771,24 @@ def read(self, iprot): self.partNames = [] (_etype490, _size487) = iprot.readListBegin() for _i491 in range(_size487): - _elem492 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem492 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partNames.append(_elem492) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.engine = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.engine = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -9974,12 +9974,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -10005,12 +10005,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -10243,7 +10243,7 @@ def read(self, iprot): self.names = [] (_etype519, _size516) = iprot.readListBegin() for _i520 in range(_size516): - _elem521 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem521 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.names.append(_elem521) iprot.readListEnd() else: @@ -10339,12 +10339,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -10381,7 +10381,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 9: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -10494,12 +10494,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -10520,7 +10520,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.filter = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.filter = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -10546,12 +10546,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 9: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 10: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -10659,7 +10659,7 @@ def read(self, iprot): self.row = [] (_etype547, _size544) = iprot.readListBegin() for _i548 in range(_size544): - _elem549 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem549 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.row.append(_elem549) iprot.readListEnd() else: @@ -10809,12 +10809,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.db_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tbl_name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tbl_name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -10822,7 +10822,7 @@ def read(self, iprot): self.names = [] (_etype561, _size558) = iprot.readListBegin() for _i562 in range(_size558): - _elem563 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem563 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.names.append(_elem563) iprot.readListEnd() else: @@ -10837,24 +10837,24 @@ def read(self, iprot): self.processorCapabilities = [] (_etype567, _size564) = iprot.readListBegin() for _i568 in range(_size564): - _elem569 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem569 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.processorCapabilities.append(_elem569) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.processorIdentifier = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.processorIdentifier = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.engine = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.engine = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 8: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 9: @@ -11049,22 +11049,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.type = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.type = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.url = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.url = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.description = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.description = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -11072,15 +11072,15 @@ def read(self, iprot): self.parameters = {} (_ktype580, _vtype581, _size579) = iprot.readMapBegin() for _i583 in range(_size579): - _key584 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val585 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key584 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val585 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.parameters[_key584] = _val585 iprot.readMapEnd() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.ownerName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ownerName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -11186,7 +11186,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.uri = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.uri = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -11263,22 +11263,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.functionName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.functionName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.className = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.className = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.ownerName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ownerName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -11309,7 +11309,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 9: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -11427,17 +11427,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.user = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.hostname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.hostname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.agentInfo = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.agentInfo = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -11447,7 +11447,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.metaInfo = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.metaInfo = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 8: @@ -11756,22 +11756,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.user = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.hostname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.hostname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.agentInfo = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.agentInfo = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.replPolicy = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.replPolicy = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -11952,7 +11952,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.replPolicy = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.replPolicy = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -12100,12 +12100,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.key = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.key = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.value = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.value = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -12193,32 +12193,32 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.database = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.database = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.table = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.files = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.files = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.partition = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.partition = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.tableObj = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableObj = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.partitionObj = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.partitionObj = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -12315,7 +12315,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.database = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.database = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -12325,12 +12325,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.table = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.catalog = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catalog = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -12338,7 +12338,7 @@ def read(self, iprot): self.partitionList = [] (_etype633, _size630) = iprot.readListBegin() for _i634 in range(_size630): - _elem635 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem635 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partitionList.append(_elem635) iprot.readListEnd() else: @@ -12437,7 +12437,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.replPolicy = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.replPolicy = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -12566,27 +12566,27 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.validWriteIdlist = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdlist = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.user = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.hostName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.hostName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -12594,7 +12594,7 @@ def read(self, iprot): self.partNames = [] (_etype647, _size644) = iprot.readListBegin() for _i648 in range(_size644): - _elem649 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem649 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partNames.append(_elem649) iprot.readListEnd() else: @@ -12693,14 +12693,14 @@ def read(self, iprot): self.fullTableNames = [] (_etype654, _size651) = iprot.readListBegin() for _i655 in range(_size651): - _elem656 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem656 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.fullTableNames.append(_elem656) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.validTxnList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validTxnList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -12783,7 +12783,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.fullTableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.fullTableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -13040,12 +13040,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -13060,7 +13060,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.replPolicy = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.replPolicy = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -13224,12 +13224,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -13357,12 +13357,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -13521,17 +13521,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.tablename = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tablename = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.partitionname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.partitionname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -13663,17 +13663,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.user = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.hostname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.hostname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.agentInfo = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.agentInfo = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -13778,7 +13778,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.errorMessage = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.errorMessage = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -13995,17 +13995,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tablename = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tablename = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.partname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.partname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -14123,17 +14123,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tablename = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tablename = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.partname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.partname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -14163,12 +14163,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 10: if ftype == TType.STRING: - self.user = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 11: if ftype == TType.STRING: - self.hostname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.hostname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 12: @@ -14178,7 +14178,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 13: if ftype == TType.STRING: - self.agentInfo = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.agentInfo = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 14: @@ -14632,17 +14632,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tablename = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tablename = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.partitionname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.partitionname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -14652,7 +14652,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.runas = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.runas = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -14660,20 +14660,20 @@ def read(self, iprot): self.properties = {} (_ktype722, _vtype723, _size721) = iprot.readMapBegin() for _i725 in range(_size721): - _key726 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val727 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key726 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val727 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.properties[_key726] = _val727 iprot.readMapEnd() else: iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.initiatorId = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.initiatorId = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 8: if ftype == TType.STRING: - self.initiatorVersion = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.initiatorVersion = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -14801,17 +14801,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tablename = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tablename = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.partitionname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.partitionname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -14821,12 +14821,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.runas = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.runas = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.properties = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.properties = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 8: @@ -14836,12 +14836,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 9: if ftype == TType.STRING: - self.state = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.state = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 10: if ftype == TType.STRING: - self.workerId = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.workerId = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 11: @@ -14856,7 +14856,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 13: if ftype == TType.STRING: - self.errorMessage = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.errorMessage = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 14: @@ -15054,7 +15054,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.state = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.state = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -15204,17 +15204,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tablename = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tablename = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.partitionname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.partitionname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -15224,12 +15224,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.state = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.state = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.workerid = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.workerid = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -15239,7 +15239,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 8: if ftype == TType.STRING: - self.runAs = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.runAs = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 9: @@ -15249,7 +15249,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 10: if ftype == TType.STRING: - self.metaInfo = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.metaInfo = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 11: @@ -15259,7 +15259,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 12: if ftype == TType.STRING: - self.hadoopJobId = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.hadoopJobId = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 13: @@ -15269,7 +15269,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 14: if ftype == TType.STRING: - self.errorMessage = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.errorMessage = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 15: @@ -15279,17 +15279,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 16: if ftype == TType.STRING: - self.workerVersion = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.workerVersion = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 17: if ftype == TType.STRING: - self.initiatorId = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.initiatorId = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 18: if ftype == TType.STRING: - self.initiatorVersion = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.initiatorVersion = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -15494,12 +15494,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tablename = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tablename = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -15507,7 +15507,7 @@ def read(self, iprot): self.partitionnames = [] (_etype740, _size737) = iprot.readListBegin() for _i741 in range(_size737): - _elem742 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem742 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partitionnames.append(_elem742) iprot.readListEnd() else: @@ -15669,12 +15669,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.tablename = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tablename = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -15682,7 +15682,7 @@ def read(self, iprot): self.partitionnames = [] (_etype754, _size751) = iprot.readListBegin() for _i755 in range(_size751): - _elem756 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem756 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partitionnames.append(_elem756) iprot.readListEnd() else: @@ -15804,17 +15804,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.dbname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.tablename = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tablename = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.partitionname = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.partitionname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -15910,7 +15910,7 @@ def read(self, iprot): self.eventTypeSkipList = [] (_etype761, _size758) = iprot.readListBegin() for _i762 in range(_size758): - _elem763 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem763 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.eventTypeSkipList.append(_elem763) iprot.readListEnd() else: @@ -16006,32 +16006,32 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.eventType = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.eventType = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.messageFormat = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.messageFormat = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 8: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -16264,12 +16264,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -16431,7 +16431,7 @@ def read(self, iprot): self.filesAdded = [] (_etype775, _size772) = iprot.readListBegin() for _i776 in range(_size772): - _elem777 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem777 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.filesAdded.append(_elem777) iprot.readListEnd() else: @@ -16441,7 +16441,7 @@ def read(self, iprot): self.filesAddedChecksum = [] (_etype781, _size778) = iprot.readListBegin() for _i782 in range(_size778): - _elem783 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem783 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.filesAddedChecksum.append(_elem783) iprot.readListEnd() else: @@ -16451,7 +16451,7 @@ def read(self, iprot): self.subDirectoryList = [] (_etype787, _size784) = iprot.readListBegin() for _i788 in range(_size784): - _elem789 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem789 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.subDirectoryList.append(_elem789) iprot.readListEnd() else: @@ -16461,7 +16461,7 @@ def read(self, iprot): self.partitionVal = [] (_etype793, _size790) = iprot.readListBegin() for _i794 in range(_size790): - _elem795 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem795 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partitionVal.append(_elem795) iprot.readListEnd() else: @@ -16649,12 +16649,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -16662,14 +16662,14 @@ def read(self, iprot): self.partitionVals = [] (_etype810, _size807) = iprot.readListBegin() for _i811 in range(_size807): - _elem812 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem812 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partitionVals.append(_elem812) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -16838,12 +16838,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.db = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.db = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.table = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.table = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -16857,7 +16857,7 @@ def read(self, iprot): self.partitionVals = [] (_etype824, _size821) = iprot.readListBegin() for _i825 in range(_size821): - _elem826 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem826 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partitionVals.append(_elem826) iprot.readListEnd() else: @@ -17702,17 +17702,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.partName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.partName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -17930,19 +17930,19 @@ def read(self, iprot): self.fieldList = [] (_etype898, _size895) = iprot.readListBegin() for _i899 in range(_size895): - _elem900 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem900 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.fieldList.append(_elem900) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.includeParamKeyPattern = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.includeParamKeyPattern = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.excludeParamKeyPattern = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.excludeParamKeyPattern = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -18028,12 +18028,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -18044,12 +18044,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -18062,19 +18062,19 @@ def read(self, iprot): self.processorCapabilities = [] (_etype905, _size902) = iprot.readListBegin() for _i906 in range(_size902): - _elem907 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem907 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.processorCapabilities.append(_elem907) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 9: if ftype == TType.STRING: - self.processorIdentifier = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.processorIdentifier = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 10: if ftype == TType.STRING: - self.engine = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.engine = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 11: @@ -18264,7 +18264,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -18272,7 +18272,7 @@ def read(self, iprot): self.tblNames = [] (_etype912, _size909) = iprot.readListBegin() for _i913 in range(_size909): - _elem914 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem914 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.tblNames.append(_elem914) iprot.readListEnd() else: @@ -18285,7 +18285,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -18293,14 +18293,14 @@ def read(self, iprot): self.processorCapabilities = [] (_etype918, _size915) = iprot.readListBegin() for _i919 in range(_size915): - _elem920 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem920 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.processorCapabilities.append(_elem920) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.processorIdentifier = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.processorIdentifier = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -18311,7 +18311,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 8: if ftype == TType.STRING: - self.tablesPattern = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tablesPattern = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -18484,17 +18484,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catalog = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catalog = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.database = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.database = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tableNamePattern = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableNamePattern = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -18512,14 +18512,14 @@ def read(self, iprot): self.processorCapabilities = [] (_etype933, _size930) = iprot.readListBegin() for _i934 in range(_size930): - _elem935 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem935 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.processorCapabilities.append(_elem935) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.processorIdentifier = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.processorIdentifier = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -18617,7 +18617,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -18630,7 +18630,7 @@ def read(self, iprot): self.requiredReadCapabilities = [] (_etype940, _size937) = iprot.readListBegin() for _i941 in range(_size937): - _elem942 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem942 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.requiredReadCapabilities.append(_elem942) iprot.readListEnd() else: @@ -18640,7 +18640,7 @@ def read(self, iprot): self.requiredWriteCapabilities = [] (_etype946, _size943) = iprot.readListBegin() for _i947 in range(_size943): - _elem948 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem948 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.requiredWriteCapabilities.append(_elem948) iprot.readListEnd() else: @@ -18725,12 +18725,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.catalogName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catalogName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -18738,14 +18738,14 @@ def read(self, iprot): self.processorCapabilities = [] (_etype954, _size951) = iprot.readListBegin() for _i955 in range(_size951): - _elem956 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem956 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.processorCapabilities.append(_elem956) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.processorIdentifier = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.processorIdentifier = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -18819,7 +18819,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dataPath = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dataPath = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -18937,27 +18937,27 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tableType = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableType = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.comments = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.comments = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -19116,7 +19116,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -19131,12 +19131,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.defaultPoolPath = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.defaultPoolPath = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -19223,7 +19223,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -19243,7 +19243,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.defaultPoolPath = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.defaultPoolPath = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -19253,7 +19253,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 8: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -19344,12 +19344,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.resourcePlanName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.resourcePlanName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.poolPath = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.poolPath = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -19364,12 +19364,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.schedulingPolicy = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.schedulingPolicy = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -19462,12 +19462,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.resourcePlanName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.resourcePlanName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.poolPath = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.poolPath = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -19482,7 +19482,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.schedulingPolicy = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.schedulingPolicy = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -19492,7 +19492,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -19587,22 +19587,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.resourcePlanName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.resourcePlanName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.triggerName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.triggerName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.triggerExpression = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.triggerExpression = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.actionExpression = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.actionExpression = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -19612,7 +19612,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -19703,22 +19703,22 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.resourcePlanName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.resourcePlanName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.entityType = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.entityType = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.entityName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.entityName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.poolPath = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.poolPath = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -19728,7 +19728,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -19815,17 +19815,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.pool = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.pool = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.trigger = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.trigger = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -20044,7 +20044,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.copyFrom = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.copyFrom = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -20145,7 +20145,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -20262,12 +20262,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.resourcePlanName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.resourcePlanName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -20386,7 +20386,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -20519,7 +20519,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.resourcePlanName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.resourcePlanName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: @@ -20545,7 +20545,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -20682,12 +20682,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.resourcePlanName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.resourcePlanName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -20753,7 +20753,7 @@ def read(self, iprot): self.errors = [] (_etype996, _size993) = iprot.readListBegin() for _i997 in range(_size993): - _elem998 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem998 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.errors.append(_elem998) iprot.readListEnd() else: @@ -20763,7 +20763,7 @@ def read(self, iprot): self.warnings = [] (_etype1002, _size999) = iprot.readListBegin() for _i1003 in range(_size999): - _elem1004 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1004 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.warnings.append(_elem1004) iprot.readListEnd() else: @@ -20834,12 +20834,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.resourcePlanName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.resourcePlanName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -21140,17 +21140,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.resourcePlanName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.resourcePlanName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.triggerName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.triggerName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -21257,12 +21257,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.resourcePlanName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.resourcePlanName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -21495,7 +21495,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.poolPath = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.poolPath = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -21600,17 +21600,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.resourcePlanName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.resourcePlanName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.poolPath = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.poolPath = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -21930,17 +21930,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.resourcePlanName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.resourcePlanName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.triggerName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.triggerName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.poolPath = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.poolPath = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -21950,7 +21950,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.ns = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ns = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -22084,17 +22084,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: @@ -22114,12 +22114,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 8: if ftype == TType.STRING: - self.schemaGroup = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.schemaGroup = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 9: if ftype == TType.STRING: - self.description = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.description = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -22212,17 +22212,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.schemaName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.schemaName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -22407,22 +22407,22 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.description = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.description = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.schemaText = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.schemaText = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 8: if ftype == TType.STRING: - self.fingerprint = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.fingerprint = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 9: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 10: @@ -22597,17 +22597,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.colName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.colName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.colNamespace = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.colNamespace = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.type = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.type = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -22746,7 +22746,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.serdeName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.serdeName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -22876,7 +22876,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.serdeName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.serdeName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -23187,14 +23187,14 @@ def read(self, iprot): self.processorCapabilities = [] (_etype1067, _size1064) = iprot.readListBegin() for _i1068 in range(_size1064): - _elem1069 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1069 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.processorCapabilities.append(_elem1069) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 10: if ftype == TType.STRING: - self.processorIdentifier = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.processorIdentifier = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -23332,17 +23332,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.databaseName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.databaseName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.description = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.description = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.locationUri = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.locationUri = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -23350,8 +23350,8 @@ def read(self, iprot): self.parameters = {} (_ktype1078, _vtype1079, _size1077) = iprot.readMapBegin() for _i1081 in range(_size1077): - _key1082 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() - _val1083 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _key1082 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() + _val1083 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.parameters[_key1082] = _val1083 iprot.readMapEnd() else: @@ -23364,7 +23364,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.ownerName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ownerName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -23374,7 +23374,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 8: if ftype == TType.STRING: - self.catalogName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catalogName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 9: @@ -23384,17 +23384,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 10: if ftype == TType.STRING: - self.managedLocationUri = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.managedLocationUri = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 11: if ftype == TType.STRING: - self.type = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.type = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 12: if ftype == TType.STRING: - self.dataConnectorName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dataConnectorName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -23559,7 +23559,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.connectorName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.connectorName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -23618,7 +23618,7 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.clusterNamespace = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.clusterNamespace = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -23679,12 +23679,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.scheduleName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.scheduleName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.clusterNamespace = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.clusterNamespace = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -23766,12 +23766,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.query = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.query = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.user = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -23861,17 +23861,17 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.schedule = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.schedule = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.user = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.query = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.query = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -24044,12 +24044,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.executorQueryId = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.executorQueryId = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.errorMessage = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.errorMessage = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -24136,17 +24136,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -24173,7 +24173,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -24313,17 +24313,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -24331,7 +24331,7 @@ def read(self, iprot): self.partVals = [] (_etype1096, _size1093) = iprot.readListBegin() for _i1097 in range(_size1093): - _elem1098 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1098 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partVals.append(_elem1098) iprot.readListEnd() else: @@ -24344,7 +24344,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -24488,17 +24488,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tableName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tableName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -24520,7 +24520,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 7: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 8: @@ -24528,14 +24528,14 @@ def read(self, iprot): self.processorCapabilities = [] (_etype1103, _size1100) = iprot.readListBegin() for _i1104 in range(_size1100): - _elem1105 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1105 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.processorCapabilities.append(_elem1105) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 9: if ftype == TType.STRING: - self.processorIdentifier = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.processorIdentifier = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -24683,7 +24683,7 @@ def read(self, iprot): self.filters = [] (_etype1110, _size1107) = iprot.readListBegin() for _i1111 in range(_size1107): - _elem1112 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1112 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.filters.append(_elem1112) iprot.readListEnd() else: @@ -24835,17 +24835,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -24855,7 +24855,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.user = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.user = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -24863,7 +24863,7 @@ def read(self, iprot): self.groupNames = [] (_etype1124, _size1121) = iprot.readListBegin() for _i1125 in range(_size1121): - _elem1126 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1126 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.groupNames.append(_elem1126) iprot.readListEnd() else: @@ -24885,19 +24885,19 @@ def read(self, iprot): self.processorCapabilities = [] (_etype1130, _size1127) = iprot.readListBegin() for _i1131 in range(_size1127): - _elem1132 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1132 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.processorCapabilities.append(_elem1132) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 10: if ftype == TType.STRING: - self.processorIdentifier = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.processorIdentifier = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 11: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -25010,17 +25010,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -25031,7 +25031,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -25195,17 +25195,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -25216,7 +25216,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -25380,17 +25380,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -25398,14 +25398,14 @@ def read(self, iprot): self.partVals = [] (_etype1152, _size1149) = iprot.readListBegin() for _i1153 in range(_size1149): - _elem1154 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1154 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partVals.append(_elem1154) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -25566,17 +25566,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -25586,7 +25586,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: @@ -25752,17 +25752,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -25770,7 +25770,7 @@ def read(self, iprot): self.partValues = [] (_etype1166, _size1163) = iprot.readListBegin() for _i1167 in range(_size1163): - _elem1168 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1168 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partValues.append(_elem1168) iprot.readListEnd() else: @@ -25782,7 +25782,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -25878,7 +25878,7 @@ def read(self, iprot): self.names = [] (_etype1173, _size1170) = iprot.readListBegin() for _i1174 in range(_size1170): - _elem1175 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1175 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.names.append(_elem1175) iprot.readListEnd() else: @@ -25958,17 +25958,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.tblName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.tblName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: @@ -25976,7 +25976,7 @@ def read(self, iprot): self.partVals = [] (_etype1180, _size1177) = iprot.readListBegin() for _i1181 in range(_size1177): - _elem1182 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1182 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.partVals.append(_elem1182) iprot.readListEnd() else: @@ -25988,7 +25988,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.userName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.userName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 7: @@ -25996,14 +25996,14 @@ def read(self, iprot): self.groupNames = [] (_etype1186, _size1183) = iprot.readListBegin() for _i1187 in range(_size1183): - _elem1188 = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + _elem1188 = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() self.groupNames.append(_elem1188) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 8: if ftype == TType.STRING: - self.validWriteIdList = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.validWriteIdList = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 9: @@ -26188,7 +26188,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.policy = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.policy = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -26198,12 +26198,12 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.metadata = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.metadata = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.progress = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.progress = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -26359,7 +26359,7 @@ def read(self, iprot): iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.policy = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.policy = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: @@ -26498,17 +26498,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.procName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.procName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -26581,12 +26581,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -26657,27 +26657,27 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.name = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.name = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.ownerName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ownerName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.source = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.source = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -26760,32 +26760,32 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.packageName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.packageName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.ownerName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ownerName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.header = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.header = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.body = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.body = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -26866,17 +26866,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.packageName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.packageName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -26951,17 +26951,17 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.packageName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.packageName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -27034,12 +27034,12 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -27112,32 +27112,32 @@ def read(self, iprot): break if fid == 1: if ftype == TType.STRING: - self.catName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.catName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: - self.dbName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.dbName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.STRING: - self.packageName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.packageName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.STRING: - self.ownerName = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.ownerName = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.STRING: - self.header = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.header = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.STRING: - self.body = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + self.body = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: @@ -27201,26 +27201,39 @@ class MetaException(TException): def __init__(self, message=None,): - self.message = message + super(MetaException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27261,26 +27274,39 @@ class UnknownTableException(TException): def __init__(self, message=None,): - self.message = message + super(UnknownTableException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27321,26 +27347,39 @@ class UnknownDBException(TException): def __init__(self, message=None,): - self.message = message + super(UnknownDBException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27381,26 +27420,39 @@ class AlreadyExistsException(TException): def __init__(self, message=None,): - self.message = message + super(AlreadyExistsException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27441,26 +27493,39 @@ class InvalidPartitionException(TException): def __init__(self, message=None,): - self.message = message + super(InvalidPartitionException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27501,26 +27566,39 @@ class UnknownPartitionException(TException): def __init__(self, message=None,): - self.message = message + super(UnknownPartitionException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27561,26 +27639,39 @@ class InvalidObjectException(TException): def __init__(self, message=None,): - self.message = message + super(InvalidObjectException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27621,26 +27712,39 @@ class NoSuchObjectException(TException): def __init__(self, message=None,): - self.message = message + super(NoSuchObjectException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27681,26 +27785,39 @@ class InvalidOperationException(TException): def __init__(self, message=None,): - self.message = message + super(InvalidOperationException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27741,26 +27858,39 @@ class ConfigValSecurityException(TException): def __init__(self, message=None,): - self.message = message + super(ConfigValSecurityException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27801,26 +27931,39 @@ class InvalidInputException(TException): def __init__(self, message=None,): - self.message = message + super(InvalidInputException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27861,26 +28004,39 @@ class NoSuchTxnException(TException): def __init__(self, message=None,): - self.message = message + super(NoSuchTxnException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27921,26 +28077,39 @@ class TxnAbortedException(TException): def __init__(self, message=None,): - self.message = message + super(TxnAbortedException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -27981,26 +28150,39 @@ class TxnOpenException(TException): def __init__(self, message=None,): - self.message = message + super(TxnOpenException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: @@ -28041,26 +28223,39 @@ class NoSuchLockException(TException): def __init__(self, message=None,): - self.message = message + super(NoSuchLockException, self).__setattr__('message', message) - def read(self, iprot): - if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: - iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) - return + def __setattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __delattr__(self, *args): + raise TypeError("can't modify immutable instance") + + def __hash__(self): + return hash(self.__class__) ^ hash((self.message, )) + + @classmethod + def read(cls, iprot): + if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and cls.thrift_spec is not None: + return iprot._fast_decode(None, iprot, [cls, cls.thrift_spec]) iprot.readStructBegin() + message = None while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 1: if ftype == TType.STRING: - self.message = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() + message = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() + return cls( + message=message, + ) def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_constants.rb b/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_constants.rb index d38cc1642e9c..fa6f88b0e66d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_constants.rb +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_constants.rb @@ -1,5 +1,5 @@ # -# Autogenerated by Thrift Compiler (0.13.0) +# Autogenerated by Thrift Compiler (0.14.1) # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_types.rb b/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_types.rb index 409a25c46ca4..7be51b03a36e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_types.rb +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_types.rb @@ -1,5 +1,5 @@ # -# Autogenerated by Thrift Compiler (0.13.0) +# Autogenerated by Thrift Compiler (0.14.1) # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/thrift_hive_metastore.rb b/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/thrift_hive_metastore.rb index 697fdf430a84..516e62ff9022 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/thrift_hive_metastore.rb +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/thrift_hive_metastore.rb @@ -1,5 +1,5 @@ # -# Autogenerated by Thrift Compiler (0.13.0) +# Autogenerated by Thrift Compiler (0.14.1) # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # diff --git a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java index 46ed32eaee0e..db32af1beefd 100644 --- a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java +++ b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java @@ -77,11 +77,12 @@ import org.apache.hadoop.util.ReflectionUtils; import org.apache.hadoop.util.StringUtils; import org.apache.thrift.TApplicationException; +import org.apache.thrift.TConfiguration; import org.apache.thrift.TException; import org.apache.thrift.protocol.TBinaryProtocol; import org.apache.thrift.protocol.TCompactProtocol; import org.apache.thrift.protocol.TProtocol; -import org.apache.thrift.transport.TFramedTransport; +import org.apache.thrift.transport.layered.TFramedTransport; import org.apache.thrift.transport.TSocket; import org.apache.thrift.transport.TTransport; import org.apache.thrift.transport.TTransportException; @@ -648,7 +649,12 @@ private void open() throws MetaException { throw new MetaException(e.toString()); } } else { - transport = new TSocket(store.getHost(), store.getPort(), clientSocketTimeout); + try { + transport = new TSocket(new TConfiguration(),store.getHost(), store.getPort(), clientSocketTimeout); + } catch (TTransportException e) { + tte = e; + throw new MetaException(e.toString()); + } } if (usePasswordAuth) { @@ -673,7 +679,7 @@ private void open() throws MetaException { } // Overlay the SASL transport on top of the base socket transport (SSL or non-SSL) transport = MetaStorePlainSaslHelper.getPlainTransport(userName, passwd, transport); - } catch (IOException sasle) { + } catch (IOException | TTransportException sasle) { // IOException covers SaslException LOG.error("Could not create client transport", sasle); throw new MetaException(sasle.toString()); @@ -713,7 +719,12 @@ private void open() throws MetaException { } } else { if (useFramedTransport) { - transport = new TFramedTransport(transport); + try { + transport = new TFramedTransport(transport); + } catch (TTransportException e) { + LOG.error("Failed to create client transport", e); + throw new MetaException(e.toString()); + } } } diff --git a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/MetaStorePlainSaslHelper.java b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/MetaStorePlainSaslHelper.java index e4d35b9a483d..b01b3062eb45 100644 --- a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/MetaStorePlainSaslHelper.java +++ b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/MetaStorePlainSaslHelper.java @@ -37,6 +37,7 @@ import org.apache.thrift.transport.TSaslClientTransport; import org.apache.thrift.transport.TSaslServerTransport; import org.apache.thrift.transport.TTransport; +import org.apache.thrift.transport.TTransportException; import org.apache.thrift.transport.TTransportFactory; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -75,7 +76,7 @@ public static TTransportFactory getPlainTransportFactory(String authTypeStr, Con } public static TTransport getPlainTransport(String username, String password, - TTransport underlyingTransport) throws SaslException { + TTransport underlyingTransport) throws SaslException, TTransportException { return new TSaslClientTransport("PLAIN", null, null, null, new HashMap(), new PlainCallbackHandler(username, password), underlyingTransport); } diff --git a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/security/HadoopThriftAuthBridge.java b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/security/HadoopThriftAuthBridge.java index 71d8c5908dc4..de69a6edb536 100644 --- a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/security/HadoopThriftAuthBridge.java +++ b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/security/HadoopThriftAuthBridge.java @@ -219,12 +219,16 @@ public TTransport createClientTransport( case DIGEST: Token t= new Token<>(); t.decodeFromUrlString(tokenStrForm); - saslTransport = new TSaslClientTransport( - method.getMechanismName(), - null, - null, SaslRpcServer.SASL_DEFAULT_REALM, - saslProps, new SaslClientCallbackHandler(t), - underlyingTransport); + try { + saslTransport = new TSaslClientTransport( + method.getMechanismName(), + null, + null, SaslRpcServer.SASL_DEFAULT_REALM, + saslProps, new SaslClientCallbackHandler(t), + underlyingTransport); + } catch (TTransportException e) { + e.printStackTrace(); + } return new TUGIAssumingTransport(saslTransport, UserGroupInformation.getCurrentUser()); case KERBEROS: @@ -239,7 +243,7 @@ saslProps, new SaslClientCallbackHandler(t), return UserGroupInformation.getCurrentUser().doAs( new PrivilegedExceptionAction() { @Override - public TUGIAssumingTransport run() throws IOException { + public TUGIAssumingTransport run() throws IOException, TTransportException { TTransport saslTransport = new TSaslClientTransport( method.getMechanismName(), null, @@ -702,7 +706,12 @@ public TTransport getTransport(final TTransport trans) { return ugi.doAs(new PrivilegedAction() { @Override public TTransport run() { - return wrapped.getTransport(trans); + try { + return wrapped.getTransport(trans); + } catch (TTransportException e) { + e.printStackTrace(); + } + return null; } }); } diff --git a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/security/TFilterTransport.java b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/security/TFilterTransport.java index 79d317a63641..5ff672c54448 100644 --- a/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/security/TFilterTransport.java +++ b/standalone-metastore/metastore-common/src/main/java/org/apache/hadoop/hive/metastore/security/TFilterTransport.java @@ -18,6 +18,7 @@ package org.apache.hadoop.hive.metastore.security; +import org.apache.thrift.TConfiguration; import org.apache.thrift.transport.TTransport; import org.apache.thrift.transport.TTransportException; @@ -96,4 +97,19 @@ public int getBytesRemainingInBuffer() { public void consumeBuffer(int len) { wrapped.consumeBuffer(len); } - } + + @Override + public TConfiguration getConfiguration() { + return null; + } + + @Override + public void updateKnownMessageSize(long l) throws TTransportException { + + } + + @Override + public void checkReadBytesAvailable(long l) throws TTransportException { + + } +} diff --git a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/AuthFactory.java b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/AuthFactory.java index 3fb6ca92563d..84ae7b51814e 100644 --- a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/AuthFactory.java +++ b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/AuthFactory.java @@ -32,7 +32,7 @@ import org.apache.hadoop.hive.metastore.utils.MetaStoreUtils; import org.apache.hadoop.hive.metastore.security.HadoopThriftAuthBridge; import org.apache.hadoop.hive.metastore.security.MetastoreDelegationTokenManager; -import org.apache.thrift.transport.TFramedTransport; +import org.apache.thrift.transport.layered.TFramedTransport; import org.apache.thrift.transport.TSaslServerTransport; import org.apache.thrift.transport.TTransport; import org.apache.thrift.transport.TTransportException; @@ -219,7 +219,7 @@ private ChainedTTransportFactory( } @Override - public TTransport getTransport(TTransport trans) { + public TTransport getTransport(TTransport trans) throws TTransportException { return childTransFactory.getTransport(parentTransFactory.getTransport(trans)); } } diff --git a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/TServerSocketKeepAlive.java b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/TServerSocketKeepAlive.java index 1a3ba3d26be7..e4b1b981da98 100644 --- a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/TServerSocketKeepAlive.java +++ b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/TServerSocketKeepAlive.java @@ -33,15 +33,4 @@ public class TServerSocketKeepAlive extends TServerSocket { public TServerSocketKeepAlive(TServerSocket serverSocket) throws TTransportException { super(serverSocket.getServerSocket()); } - - @Override - protected TSocket acceptImpl() throws TTransportException { - TSocket ts = super.acceptImpl(); - try { - ts.getSocket().setKeepAlive(true); - } catch (SocketException e) { - throw new TTransportException(e); - } - return ts; - } } diff --git a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/messaging/MessageBuilder.java b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/messaging/MessageBuilder.java index 422d076308df..42c90fac09e0 100644 --- a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/messaging/MessageBuilder.java +++ b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/messaging/MessageBuilder.java @@ -345,46 +345,46 @@ private long now() { public static String createPrimaryKeyObjJson(SQLPrimaryKey primaryKeyObj) throws TException { TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); - return serializer.toString(primaryKeyObj, "UTF-8"); + return serializer.toString(primaryKeyObj); } public static String createForeignKeyObjJson(SQLForeignKey foreignKeyObj) throws TException { TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); - return serializer.toString(foreignKeyObj, "UTF-8"); + return serializer.toString(foreignKeyObj); } public static String createUniqueConstraintObjJson(SQLUniqueConstraint uniqueConstraintObj) throws TException { TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); - return serializer.toString(uniqueConstraintObj, "UTF-8"); + return serializer.toString(uniqueConstraintObj); } public static String createNotNullConstraintObjJson(SQLNotNullConstraint notNullConstaintObj) throws TException { TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); - return serializer.toString(notNullConstaintObj, "UTF-8"); + return serializer.toString(notNullConstaintObj); } public static String createDefaultConstraintObjJson(SQLDefaultConstraint defaultConstaintObj) throws TException { TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); - return serializer.toString(defaultConstaintObj, "UTF-8"); + return serializer.toString(defaultConstaintObj); } public static String createCheckConstraintObjJson(SQLCheckConstraint checkConstraintObj) throws TException { TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); - return serializer.toString(checkConstraintObj, "UTF-8"); + return serializer.toString(checkConstraintObj); } public static String createDatabaseObjJson(Database dbObj) throws TException { TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); - return serializer.toString(dbObj, "UTF-8"); + return serializer.toString(dbObj); } public static String createCatalogObjJson(Catalog catObj) throws TException { TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); - return serializer.toString(catObj, "UTF-8"); + return serializer.toString(catObj); } public static String createTableObjJson(Table tableObj) throws TException { @@ -392,7 +392,7 @@ public static String createTableObjJson(Table tableObj) throws TException { // any pattern provided through EVENT_NOTIFICATION_PARAMETERS_EXCLUDE_PATTERNS filterMapkeys(tableObj.getParameters(), paramsFilter); TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); - return serializer.toString(tableObj, "UTF-8"); + return serializer.toString(tableObj); } public static String createPartitionObjJson(Partition partitionObj) throws TException { @@ -400,12 +400,12 @@ public static String createPartitionObjJson(Partition partitionObj) throws TExce // any pattern provided through EVENT_NOTIFICATION_PARAMETERS_EXCLUDE_PATTERNS filterMapkeys(partitionObj.getParameters(), paramsFilter); TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); - return serializer.toString(partitionObj, "UTF-8"); + return serializer.toString(partitionObj); } public static String createFunctionObjJson(Function functionObj) throws TException { TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); - return serializer.toString(functionObj, "UTF-8"); + return serializer.toString(functionObj); } public static Table getTableObj(ObjectNode jsonTree) throws Exception { @@ -418,7 +418,7 @@ public static Table getTableObj(ObjectNode jsonTree) throws Exception { public static String createTableColumnStatJson(ColumnStatistics tableColumnStat) throws TException { TSerializer serializer = new TSerializer(new TJSONProtocol.Factory()); - return serializer.toString(tableColumnStat, "UTF-8"); + return serializer.toString(tableColumnStat); } /* diff --git a/standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java b/standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java index 54641d4c7cee..c4e451f8ea20 100644 --- a/standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java +++ b/standalone-metastore/metastore-server/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java @@ -75,11 +75,12 @@ import org.apache.hadoop.util.ReflectionUtils; import org.apache.hadoop.util.StringUtils; import org.apache.thrift.TApplicationException; +import org.apache.thrift.TConfiguration; import org.apache.thrift.TException; import org.apache.thrift.protocol.TBinaryProtocol; import org.apache.thrift.protocol.TCompactProtocol; import org.apache.thrift.protocol.TProtocol; -import org.apache.thrift.transport.TFramedTransport; +import org.apache.thrift.transport.layered.TFramedTransport; import org.apache.thrift.transport.TSocket; import org.apache.thrift.transport.TTransport; import org.apache.thrift.transport.TTransportException; @@ -473,7 +474,12 @@ private void open() throws MetaException { throw new MetaException(e.toString()); } } else { - transport = new TSocket(store.getHost(), store.getPort(), clientSocketTimeout); + try { + transport = new TSocket(new TConfiguration(),store.getHost(), store.getPort(), clientSocketTimeout); + } catch (TTransportException e) { + tte = e; + throw new MetaException(e.toString()); + } } if (useSasl) { @@ -511,7 +517,12 @@ private void open() throws MetaException { } } else { if (useFramedTransport) { - transport = new TFramedTransport(transport); + try { + transport = new TFramedTransport(transport); + } catch (TTransportException e) { + LOG.error("Couldn't create client transport", e); + throw new MetaException(e.toString()); + } } } diff --git a/standalone-metastore/metastore-tools/tools-common/src/main/java/org/apache/hadoop/hive/metastore/tools/HMSClient.java b/standalone-metastore/metastore-tools/tools-common/src/main/java/org/apache/hadoop/hive/metastore/tools/HMSClient.java index dcb5cd46a8ea..e7cf2ffb84f0 100644 --- a/standalone-metastore/metastore-tools/tools-common/src/main/java/org/apache/hadoop/hive/metastore/tools/HMSClient.java +++ b/standalone-metastore/metastore-tools/tools-common/src/main/java/org/apache/hadoop/hive/metastore/tools/HMSClient.java @@ -45,11 +45,12 @@ import org.apache.hadoop.hive.metastore.utils.MetaStoreUtils; import org.apache.hadoop.hive.metastore.utils.SecurityUtils; import org.apache.hadoop.security.UserGroupInformation; +import org.apache.thrift.TConfiguration; import org.apache.thrift.TException; import org.apache.thrift.protocol.TBinaryProtocol; import org.apache.thrift.protocol.TCompactProtocol; import org.apache.thrift.protocol.TProtocol; -import org.apache.thrift.transport.TFramedTransport; +import org.apache.thrift.transport.layered.TFramedTransport; import org.apache.thrift.transport.TSocket; import org.apache.thrift.transport.TTransport; import org.jetbrains.annotations.NotNull; @@ -405,7 +406,7 @@ private TTransport open(Configuration conf, @NotNull URI uri) throws // Sasl/SSL code is copied from HiveMetastoreCLient if (!useSSL) { - transport = new TSocket(host, port, clientSocketTimeout); + transport = new TSocket(new TConfiguration(),host, port, clientSocketTimeout); } else { String trustStorePath = MetastoreConf.getVar(conf, MetastoreConf.ConfVars.SSL_TRUSTSTORE_PATH).trim(); if (trustStorePath.isEmpty()) { diff --git a/standalone-metastore/pom.xml b/standalone-metastore/pom.xml index d3ae03684c1a..2f9dd64be487 100644 --- a/standalone-metastore/pom.xml +++ b/standalone-metastore/pom.xml @@ -88,7 +88,7 @@ 5.6.2 5.6.2 0.9.3 - 0.13.0 + 0.14.1 2.13.2 3.3.3 1.6.8