public boolean equals()

in spark-job/src/main/java/org/apache/cassandra/diff/TableSpec.java [101:113]


    public boolean equals(Object o) {
        if (this == o)
            return true;

        if (!(o instanceof TableSpec))
            return false;

        TableSpec other = (TableSpec)o;
        return this.keyspaceTablePair.equals(other.keyspaceTablePair)
               && this.clusteringColumns.equals(other.clusteringColumns)
               && this.regularColumns.equals(other.regularColumns);

    }