[mysql] Add heartbeatInterval field to equals() and hashCode() (#1118)

pull/1178/head
Qingsheng Ren 3 years ago committed by GitHub
parent b7e6ccc67d
commit c06fd64c50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -360,7 +360,8 @@ public class MySqlTableSource implements ScanTableSource, SupportsReadingMetadat
&& Objects.equals(startupOptions, that.startupOptions)
&& Objects.equals(producedDataType, that.producedDataType)
&& Objects.equals(metadataKeys, that.metadataKeys)
&& Objects.equals(jdbcProperties, that.jdbcProperties);
&& Objects.equals(jdbcProperties, that.jdbcProperties)
&& Objects.equals(heartbeatInterval, that.heartbeatInterval);
}
@Override
@ -389,7 +390,8 @@ public class MySqlTableSource implements ScanTableSource, SupportsReadingMetadat
producedDataType,
metadataKeys,
scanNewlyAddedTableEnabled,
jdbcProperties);
jdbcProperties,
heartbeatInterval);
}
@Override

Loading…
Cancel
Save