in flink-doris-connector/src/main/java/org/apache/doris/flink/table/DorisDynamicTableSource.java [235:249]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DorisDynamicTableSource that = (DorisDynamicTableSource) o;
return Objects.equals(options, that.options)
&& Objects.equals(readOptions, that.readOptions)
&& Objects.equals(lookupOptions, that.lookupOptions)
&& Objects.equals(physicalSchema, that.physicalSchema)
&& Objects.equals(resolvedFilterQuery, that.resolvedFilterQuery)
&& Objects.equals(physicalRowDataType, that.physicalRowDataType);
}