-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Improve JDBC connector SQL support section #24523
base: master
Are you sure you want to change the base?
Conversation
As applicable for PostgreSQL connector for now. Also extract into a fragment so it can be reused in other connectors.
The connector supports adding rows using [MERGE statements](/sql/merge), if the | ||
`merge.non-transactional-merge.enabled` catalog property or the corresponding | ||
`non_transactional_merge_enabled` catalog session property is set to | ||
`true`. Merge is only supported for directly modifying target tables. |
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.
Not sure this sentence makes sense and takes the original content and captures what was meant @chenjian2664 and @ebyhr
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.
Thanks. I was also thought to do this, but forgot :)
Involve @kokosing
@@ -0,0 +1,10 @@ | |||
### Non-transactional MERGE | |||
|
|||
The connector supports adding rows using [MERGE statements](/sql/merge), if 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.
The connector supports adding rows using
MERGE can add/update/delete rows, maybe you have better phrase? like change adding rows
to modifying rows
?
Phoenix Connector also supports non transactional merge @mosabua |
Description
For now this is PostgresSQL connector only. Once I get some feedback that this is good .. I will expand the second commit and do the same changes for all other JDBC connectors.
Additional context and related issues
Follow up to #23034 and related PRs.
Release notes
(x) This is not user-visible or is docs only, and no release notes are required.