-
Notifications
You must be signed in to change notification settings - Fork 4
support schema for SQL Server Table Registry #171
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
Conversation
albertshau
left a comment
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.
minor comments, otherwise lgtm
| @Override | ||
| public TableDetail describeTable(String db, String table) throws TableNotFoundException, IOException { | ||
| return describeTable(db, null, table); | ||
| } |
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.
nit: add a newline between methods
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.
done:)
| } | ||
| @Override | ||
| public TableDetail describeTable(String db, @Nullable String schema, String table) throws TableNotFoundException, | ||
| IOException { |
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.
fix indentation
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.
done:)
| private Optional<TableDetail.Builder> getTableDetailBuilder(DatabaseMetaData dbMeta, String db, String table) | ||
| throws SQLException { | ||
| private Optional<TableDetail.Builder> getTableDetailBuilder(DatabaseMetaData dbMeta, String db, | ||
| @Nullable String schema, String table) throws SQLException { |
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.
fix indentation
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.
done:)
support schema for SQL Server Table Registry
support schema for SQL Server Table Registry
No description provided.