-
Notifications
You must be signed in to change notification settings - Fork 1
DMS: Fix primary key / where clause rendering #114
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
WalkthroughThe changes update the SQL generation logic for AWS DMS event translation to CrateDB, specifically revising how primary key columns and WHERE clauses are rendered. Tests and documentation are updated to align with the new approach, ensuring primary keys are handled as a separate Changes
Sequence Diagram(s)sequenceDiagram
participant DMS_Translator as DMSTranslatorCrateDBRecord
participant CrateDB as CrateDB
DMS_Translator->DMS_Translator: to_sql()
DMS_Translator->DMS_Translator: pk_clause()
DMS_Translator->DMS_Translator: keys_to_where()
DMS_Translator->CrateDB: Generate SQL (CREATE/UPDATE/DELETE) with pk OBJECT(STRICT) and WHERE pk['id']=?
CrateDB-->>DMS_Translator: SQL execution result
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (3)
🔇 Additional comments (7)
✨ Finishing Touches
🧪 Generate Unit Tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
About
A few more fixes about processing CDC events from DMS/Kinesis regarding the "universal" column mapping paradigm.
References