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 flaky Hypercore tests #7368

Merged
merged 2 commits into from
Oct 20, 2024

Commits on Oct 20, 2024

  1. Fix flaky Hypercore index test

    Having multiple indexes that include same prefix of columns caused the
    planner to sometimes pick a different index for one of the querires,
    which led to different test output. Temporarily remove the alternative
    index to make the test predictible.
    erimatnor committed Oct 20, 2024
    Configuration menu
    Copy the full SHA
    b07a18b View commit details
    Browse the repository at this point in the history
  2. Fix flaky Hypercore join test

    The join test could sometimes pick a seqscan+sort instead of an
    indexscan when doing a MergeAppend+MergeJoin. Disabling seqscan should
    make it deterministic.
    erimatnor committed Oct 20, 2024
    Configuration menu
    Copy the full SHA
    3bdfadf View commit details
    Browse the repository at this point in the history