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: use insert ignore for filecache_extended #48564

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Oct 7, 2024

  1. fix: use insert ignore for filecache_extended

    The current approach is to insert a new row and, if a unique constraint violation occurs, update an existing one. PostgreSQL logs the unique constraint violation as error "duplicate key value violates unique constraint".
    
    Our Adapter.insertIgnoreConflict method provides a way to run an insert query without logging such errors by using the vendor-specific sql extensions like "on conflict do nothing" on Postgres.
    
    Signed-off-by: Daniel Kesselberg <[email protected]>
    kesselb committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    af89838 View commit details
    Browse the repository at this point in the history