in cassandra-analytics-common/src/main/java/org/apache/cassandra/spark/data/CqlTable.java [252:273]
public boolean equals(Object other)
{
if (other == null)
{
return false;
}
if (this == other)
{
return true;
}
if (this.getClass() != other.getClass())
{
return false;
}
CqlTable that = (CqlTable) other;
return Objects.equals(this.keyspace, that.keyspace)
&& Objects.equals(this.table, that.table)
&& Objects.equals(this.createStatement, that.createStatement)
&& Objects.equals(this.fields, that.fields)
&& Objects.equals(this.udts, that.udts);
}