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

pull/1136/head
Qingsheng Ren 3 years ago committed by GitHub
parent 47e005ab47
commit 9c905f6dd1
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