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

Iterative optimizer #6956

Merged
merged 2 commits into from Jan 7, 2017
Merged

Iterative optimizer #6956

merged 2 commits into from Jan 7, 2017

Commits on Dec 23, 2016

  1. Move replaceChild logic to per-node method

    This makes it easier to extend the node hierarchy for tests in the
    upcoming iterative optimizer.
    martint committed Dec 23, 2016
    Configuration menu
    Copy the full SHA
    64004e8 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2016

  1. Iterative optimizer

    This optimizer decouples the traversal of the plan tree (IterativeOptimizer)
    from the transformation logic (Rule). The optimization loop applies rules
    recursively until a fixpoint is reached.
    
    It's implemented as PlanOptimizer so that it fits right into the existing
    framework.
    martint committed Dec 28, 2016
    Configuration menu
    Copy the full SHA
    aafcb1e View commit details
    Browse the repository at this point in the history