in cloud-spanner-r2dbc/src/main/java/com/google/cloud/spanner/r2dbc/SpannerConnectionConfiguration.java [162:175]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SpannerConnectionConfiguration that = (SpannerConnectionConfiguration) o;
return this.partialResultSetFetchSize == that.partialResultSetFetchSize
&& Objects.equals(this.fullyQualifiedDbName, that.fullyQualifiedDbName)
&& Objects.equals(this.credentials, that.credentials)
&& Objects.equals(this.ddlOperationTimeout, that.ddlOperationTimeout)
&& Objects.equals(this.ddlOperationPollInterval, that.ddlOperationPollInterval);
}