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: deterministic index ordering when migrating #7208

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

Commits on Sep 27, 2024

  1. fix: deterministic index ordering when migrating

    Issue: We observed that, when creating a database based on the same
    gORM schema multiple times, indexes could appear in different orders,
    hurting determinism for use-cases like schema comparison.
    
    In order to fix this, it's simple to switch the ParseIndexes function
    to return a list of indices rather than a map, so the callers will
    iterate in deterministic order.
    bamo committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    827e2ef View commit details
    Browse the repository at this point in the history