-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Adapt source-mssql to latest Kotlin converted CDK #36772
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
@@ -111,7 +111,7 @@ abstract class JdbcDatabase(protected val sourceOperations: JdbcCompatibleSource | |||
* close the returned stream to release the database connection. Otherwise, there will be a | |||
* connection leak. | |||
* | |||
* @param statementCreator create a [PreparedStatement] from a [Connection]. | |||
* @paramstatementCreator create a [PreparedStatement] from a [Connection]. |
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: revert this
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.
Formatter did this 🤷♂️
I don't quite know why
unsafeQuery( | ||
{ c: Connection -> getPreparedStatement(sql, params, c) }, | ||
{ obj: ResultSet -> obj.metaData } | ||
{ obj: ResultSet -> obj.metaData }, |
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.
do we need this extra comma?
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 this is something our formatter does
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.
some minor nits need to be cleaned up, otherwise LGTM!
/publish-java-cdk dry-run=true
|
/publish-java-cdk
|
Make source-mssql build and test with the latest CDK