@Override public void write(org.apache.thrift.protocol.TProtocol prot, THashJoinNode struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; oprot.writeI32(struct.join_op.getValue()); { oprot.writeI32(struct.eq_join_conjuncts.size()); for (TEqJoinCondition _iter16 : struct.eq_join_conjuncts) { _iter16.write(oprot); } } BitSet optionals = new BitSet(); if (struct.isSetOther_join_conjuncts()) { optionals.set(0); } oprot.writeBitSet(optionals, 1); if (struct.isSetOther_join_conjuncts()) { { oprot.writeI32(struct.other_join_conjuncts.size()); for (com.cloudera.impala.thrift.TExpr _iter17 : struct.other_join_conjuncts) { _iter17.write(oprot); } } } }
public boolean equals(THashJoinNode that) { if (that == null) return false; boolean this_present_join_op = true && this.isSetJoin_op(); boolean that_present_join_op = true && that.isSetJoin_op(); if (this_present_join_op || that_present_join_op) { if (!(this_present_join_op && that_present_join_op)) return false; if (!this.join_op.equals(that.join_op)) return false; } boolean this_present_eq_join_conjuncts = true && this.isSetEq_join_conjuncts(); boolean that_present_eq_join_conjuncts = true && that.isSetEq_join_conjuncts(); if (this_present_eq_join_conjuncts || that_present_eq_join_conjuncts) { if (!(this_present_eq_join_conjuncts && that_present_eq_join_conjuncts)) return false; if (!this.eq_join_conjuncts.equals(that.eq_join_conjuncts)) return false; } boolean this_present_other_join_conjuncts = true && this.isSetOther_join_conjuncts(); boolean that_present_other_join_conjuncts = true && that.isSetOther_join_conjuncts(); if (this_present_other_join_conjuncts || that_present_other_join_conjuncts) { if (!(this_present_other_join_conjuncts && that_present_other_join_conjuncts)) return false; if (!this.other_join_conjuncts.equals(that.other_join_conjuncts)) return false; } return true; }
public int compareTo(THashJoinNode other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; THashJoinNode typedOther = (THashJoinNode) other; lastComparison = Boolean.valueOf(isSetJoin_op()).compareTo(typedOther.isSetJoin_op()); if (lastComparison != 0) { return lastComparison; } if (isSetJoin_op()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.join_op, typedOther.join_op); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetEq_join_conjuncts()).compareTo(typedOther.isSetEq_join_conjuncts()); if (lastComparison != 0) { return lastComparison; } if (isSetEq_join_conjuncts()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo( this.eq_join_conjuncts, typedOther.eq_join_conjuncts); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetOther_join_conjuncts()) .compareTo(typedOther.isSetOther_join_conjuncts()); if (lastComparison != 0) { return lastComparison; } if (isSetOther_join_conjuncts()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo( this.other_join_conjuncts, typedOther.other_join_conjuncts); if (lastComparison != 0) { return lastComparison; } } return 0; }
/** Performs a deep copy on <i>other</i>. */ public THashJoinNode(THashJoinNode other) { if (other.isSetJoin_op()) { this.join_op = other.join_op; } if (other.isSetEq_join_conjuncts()) { List<TEqJoinCondition> __this__eq_join_conjuncts = new ArrayList<TEqJoinCondition>(); for (TEqJoinCondition other_element : other.eq_join_conjuncts) { __this__eq_join_conjuncts.add(new TEqJoinCondition(other_element)); } this.eq_join_conjuncts = __this__eq_join_conjuncts; } if (other.isSetOther_join_conjuncts()) { List<com.cloudera.impala.thrift.TExpr> __this__other_join_conjuncts = new ArrayList<com.cloudera.impala.thrift.TExpr>(); for (com.cloudera.impala.thrift.TExpr other_element : other.other_join_conjuncts) { __this__other_join_conjuncts.add(new com.cloudera.impala.thrift.TExpr(other_element)); } this.other_join_conjuncts = __this__other_join_conjuncts; } }
public void write(org.apache.thrift.protocol.TProtocol oprot, THashJoinNode struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.join_op != null) { oprot.writeFieldBegin(JOIN_OP_FIELD_DESC); oprot.writeI32(struct.join_op.getValue()); oprot.writeFieldEnd(); } if (struct.eq_join_conjuncts != null) { oprot.writeFieldBegin(EQ_JOIN_CONJUNCTS_FIELD_DESC); { oprot.writeListBegin( new org.apache.thrift.protocol.TList( org.apache.thrift.protocol.TType.STRUCT, struct.eq_join_conjuncts.size())); for (TEqJoinCondition _iter14 : struct.eq_join_conjuncts) { _iter14.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } if (struct.other_join_conjuncts != null) { if (struct.isSetOther_join_conjuncts()) { oprot.writeFieldBegin(OTHER_JOIN_CONJUNCTS_FIELD_DESC); { oprot.writeListBegin( new org.apache.thrift.protocol.TList( org.apache.thrift.protocol.TType.STRUCT, struct.other_join_conjuncts.size())); for (com.cloudera.impala.thrift.TExpr _iter15 : struct.other_join_conjuncts) { _iter15.write(oprot); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } } oprot.writeFieldStop(); oprot.writeStructEnd(); }