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

Unnest IN/ANY/EXISTS subqueries and optimize them using semi-join algorithm #8061

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Jul 3, 2023

  1. Added support for semi/anti and outer joins to hash join algorithm. R…

    …eimplemented support for semi/anti joins inside the nested loop algorithm. Slightly changed implementation of full outer joins. Added transformation of IN/EXISTS subqueries into lateral semi-joins. Basic optimizer support for semi-joins. More efficient optimization for cross joins. Added some debug info (hash table statistics) for hash joins.
    dyemanov committed Jul 3, 2023
    2 Configuration menu
    Copy the full SHA
    ee56d5a View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2023

  1. Handle not only possibly indexed booleans but all possible candidates…

    …, this allows expression-based hashing
    dyemanov committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    9870b59 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2024

  1. Sync with master

    dyemanov committed Mar 31, 2024
    Configuration menu
    Copy the full SHA
    f561b80 View commit details
    Browse the repository at this point in the history