Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::optimizer - Rust
[go: Go Back, main page]

Expand description

This module contains a query optimizer that operates against a logical plan and applies some simple rules to a logical plan, such as “Projection Push Down” and “Type Coercion”.

Modules

Eliminate common sub-expression.

Optimizer rule to replace LIMIT 0 on a plan with an empty relation. This saves time in planning and executing the query.

Filter Push Down optimizer rule ensures that filters are applied as early as possible in the plan

Optimizer rule to push down LIMIT in the query plan It will push down through projection, limits (taking the smaller limit)

Query optimizer traits

Projection Push Down optimizer rule ensures that only referenced columns are loaded into memory

Simplify expressions optimizer rule

single distinct to group by optimizer rule

espression/function to approx_percentile optimizer rule

Collection of utility functions that are leveraged by the query optimizer rules