in harry-core/src/harry/ddl/SchemaSpec.java [400:410]
public boolean equals(Object o)
{
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SchemaSpec that = (SchemaSpec) o;
return Objects.equals(keyspace, that.keyspace) &&
Objects.equals(table, that.table) &&
Objects.equals(partitionKeys, that.partitionKeys) &&
Objects.equals(clusteringKeys, that.clusteringKeys) &&
Objects.equals(regularColumns, that.regularColumns);
}