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

colexec: plan disk-spilling enabled operators when vectorize=auto #45582

Merged
merged 3 commits into from
Mar 2, 2020
Merged

colexec: plan disk-spilling enabled operators when vectorize=auto #45582

merged 3 commits into from
Mar 2, 2020

Commits on Mar 2, 2020

  1. colexec: plan HashRouter when vectorize=auto

    The HashRouter can spill to disk, so it may now be planned when vectorize=auto.
    
    Release note: None (this behavior change will be called out in a following
    commit)
    asubiotto committed Mar 2, 2020
    Configuration menu
    Copy the full SHA
    180689f View commit details
    Browse the repository at this point in the history
  2. colexec: plan Sorter when vectorize=auto

    The sort operator can spill to disk, so it may now be planned when
    vectorize=auto.
    
    Release note (sql change): sorts are run using the vectorized engine when
    vectorize=auto (default configuration)
    asubiotto committed Mar 2, 2020
    Configuration menu
    Copy the full SHA
    ef84825 View commit details
    Browse the repository at this point in the history
  3. colexec: plan HashJoiner when vectorize=auto

    The hash joiner operator can spill to disk, so it may now be planned when
    vectorize=auto.
    
    Release note (sql change): hash joins are run using the vectorized engine when
    vectorize = auto (default configuration)
    asubiotto committed Mar 2, 2020
    Configuration menu
    Copy the full SHA
    1e2556a View commit details
    Browse the repository at this point in the history