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

Issue/247 Duplicate Resources #249

Closed
wants to merge 6 commits into from
Closed

Commits on Nov 19, 2024

  1. Configuration menu
    Copy the full SHA
    7f658c9 View commit details
    Browse the repository at this point in the history
  2. added check to make sure StructureDefinition defines a base definition

    check needed to avoid NPE in HAPI code
    hhund committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    4c9c1b2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7e23ea6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c7aa50c View commit details
    Browse the repository at this point in the history
  5. code cleanup

    hhund committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    b8923ea View commit details
    Browse the repository at this point in the history
  6. database constraint trigger to ensure resource unique criteria

    * Unique constraints implemented as constraint trigger run after insert
    * Constraint trigger functions use postgres advisory transaction locks
    to ensure uniqueness checks are not executed in parallel
    * Transaction isolation level of insert/update operations changed from
    repeatable read to read committed, enabling dirty reads needed to allow
    constraint triggers to see inserts/updates executed by parallel running
    transactions
    * New integration test to validate parallel create operations via
    transaction and batch bundles as well as direct POSTs
    hhund committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    0cbf256 View commit details
    Browse the repository at this point in the history