-
Notifications
You must be signed in to change notification settings - Fork 3.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
Clarify UPDATE statement support for JDBC connectors #19341
Conversation
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.
Mostly okay but still needs clarification and confirmation from @vlad-lyutenko
UPDATE table SET col1 = 1 WHERE col3 = 1 AND col2 = 3 | ||
``` | ||
|
||
All column values of a table row can not be updated simultaneously. The |
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.
All?
You mean not more than one?
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.
it could be more then one but not all columns :
like if have 6 columns in table we can update 5, 4, ... simultaneously, but not 6
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 meant all. You can update multiple columns simultaneously. The distinction is that you can't update every column in the table simultaneously.
5c94005
to
1a1c120
Compare
Still more clarification needed @vlad-lyutenko and @blvckcoffee ... |
1a1c120
to
c3b27d3
Compare
c3b27d3
to
63829b1
Compare
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.
Looks good now
Description
UPDATE
statements to docs pages for several JDBC connectors. This documentation is incomplete and more specific detail ofUPDATE
support is required. This PR creates a fragment detailingUPDATE
support limitations.Additional context and related issues
Release notes
(x) This is not user-visible or is docs only, and no release notes are required.
( ) Release notes are required. Please propose a release note for me.
( ) Release notes are required, with the following suggested text: