public boolean equals()

in flink-cdc-connect/flink-cdc-source-connectors/flink-connector-oceanbase-cdc/src/main/java/org/apache/flink/cdc/connectors/oceanbase/table/OceanBaseTableSource.java [262:296]


    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        OceanBaseTableSource that = (OceanBaseTableSource) o;
        return Objects.equals(this.physicalSchema, that.physicalSchema)
                && Objects.equals(this.startupOptions, that.startupOptions)
                && Objects.equals(this.username, that.username)
                && Objects.equals(this.password, that.password)
                && Objects.equals(this.tenantName, that.tenantName)
                && Objects.equals(this.databaseName, that.databaseName)
                && Objects.equals(this.tableName, that.tableName)
                && Objects.equals(this.tableList, that.tableList)
                && Objects.equals(this.serverTimeZone, that.serverTimeZone)
                && Objects.equals(this.connectTimeout, that.connectTimeout)
                && Objects.equals(this.hostname, that.hostname)
                && Objects.equals(this.port, that.port)
                && Objects.equals(this.compatibleMode, that.compatibleMode)
                && Objects.equals(this.jdbcDriver, that.jdbcDriver)
                && Objects.equals(this.jdbcProperties, that.jdbcProperties)
                && Objects.equals(this.logProxyHost, that.logProxyHost)
                && Objects.equals(this.logProxyPort, that.logProxyPort)
                && Objects.equals(this.logProxyClientId, that.logProxyClientId)
                && Objects.equals(this.startupTimestamp, that.startupTimestamp)
                && Objects.equals(this.rsList, that.rsList)
                && Objects.equals(this.configUrl, that.configUrl)
                && Objects.equals(this.workingMode, that.workingMode)
                && Objects.equals(this.obcdcProperties, that.obcdcProperties)
                && Objects.equals(this.debeziumProperties, that.debeziumProperties)
                && Objects.equals(this.producedDataType, that.producedDataType)
                && Objects.equals(this.metadataKeys, that.metadataKeys);
    }