File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
core/src/main/java/com/datastax/oss/driver/internal/core/metadata/schema Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,8 @@ public boolean equals(Object other) {
142
142
&& Objects .equals (this .partitionKey , that .getPartitionKey ())
143
143
&& Objects .equals (this .clusteringColumns , that .getClusteringColumns ())
144
144
&& Objects .equals (this .columns , that .getColumns ())
145
- && Objects .equals (this .indexes , that .getIndexes ());
145
+ && Objects .equals (this .indexes , that .getIndexes ())
146
+ && Objects .equals (this .options , that .getOptions ());
146
147
} else {
147
148
return false ;
148
149
}
@@ -159,7 +160,8 @@ public int hashCode() {
159
160
partitionKey ,
160
161
clusteringColumns ,
161
162
columns ,
162
- indexes );
163
+ indexes ,
164
+ options );
163
165
}
164
166
165
167
@ Override
You can’t perform that action at this time.
0 commit comments