-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove unused schema parameter and cleanup. #2780
Conversation
/test connector=connectors/source-postgres
|
/test connector=connectors/source-mssql
|
/test connector=connectors/source-mysql
|
/test connector=connectors/source-jdbc
|
/test connector=connectors/source-redshift
|
private List<TableInfoInternal> discoverInternal(final JdbcDatabase database, | ||
final Optional<String> databaseOptional, | ||
final Optional<String> schemaOptional) | ||
private List<TableInfoInternal> discoverInternal(final JdbcDatabase database, final Optional<String> databaseOptional) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm wondering if this databaseOptional
is not unused as the schema parameter too? (depending on the source database, we sometimes use it as a schema replacement)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you may be right. Will take a second look after!
What
Remove unused schema parameter for better readability.
Pre-merge Checklist