Skip to content
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

Fix 4545 Sqlite 3-35 On Conflict #4551

Merged
merged 3 commits into from
Aug 28, 2023

Commits on Aug 21, 2023

  1. sqlite 3-35 On Conflict

    Allow multiple ON CONFLICT clauses that are evaluated in order,
    The final ON CONFLICT clause may omit the conflict target and yet still use DO UPDATE
    
    TODO - restrict final ON CONFLICT to have optional conflict target
    griffio committed Aug 21, 2023
    Configuration menu
    Copy the full SHA
    8fb902b View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. Add InsertStmtMixin

    Multiple ON CONFLICT clauses are allowed in the grammar
    Only the final clause allows optional conflict target and annotated in the Mixin
    
    Add fixture test
    griffio committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    75260ab View commit details
    Browse the repository at this point in the history
  2. Add Integration Test

    Similar to sqlite-3-24 test extended for multiple ON CONFLICT clauses
    griffio committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    2446c10 View commit details
    Browse the repository at this point in the history