Expand description
This module contains the generic plan nodes that are shared by all the plan nodes. They are meant to reuse the common fields between logical, batch and stream nodes.
Re-exportsยง
pub use dynamic_filter::*;
Modulesยง
- agg ๐
- cdc_
scan ๐ - changelog ๐
- cte_ref ๐
- dedup ๐
- delete ๐
- dynamic_
filter - except ๐
- expand ๐
- file_
scan ๐ - filter ๐
- hop_
window ๐ - insert ๐
- intersect ๐
- join ๐
- limit ๐
- log_
scan ๐ - max_
one_ ๐row - mysql_
query ๐ - now ๐
- over_
window ๐ - postgres_
query ๐ - project ๐
- project_
set ๐ - recursive_
union ๐ - share ๐
- source ๐
- sys_
scan ๐ - table_
scan ๐ - top_n ๐
- union ๐
- update ๐
Macrosยง
Structsยง
- Agg
Agg
groups input data by their group key and computes aggregation functions.- Aliased
Expr - Auxiliary struct for displaying
expr AS alias
- Azblob
File Scan - CdcScan
CdcScan
reads rows of a table from an external upstream database- CdcScan
Options - Change
Log - CteRef
- Dedup
- Delete
- Except
Except
returns the rows of its first input except any matching rows from its other inputs.- Expand
Expand
expand one row multiple times according tocolumn_subsets
and also keep original columns of input. It can be used to implement distinct aggregation and group set.- File
Scan - Filter
- GcsFile
Scan - HopWindow
HopWindow
implements Hop Table Function.- Insert
- Intersect
Intersect
returns the intersect of the rows of its inputs. Ifall
is false, it needs to eliminate duplicates.- Join
Join
combines two relations according to some condition.- Limit
- LogScan
- Materialized
Input State - MaxOne
Row - MySql
Query - Now
- Over
Window - Plan
AggCall - Rewritten version of
crate::expr::AggCall
which usesInputRef
instead ofExprImpl
. Refer tocrate::optimizer::plan_node::logical_agg::LogicalAggBuilder::try_rewrite_agg_call
for more details. - Plan
AggCall Display - Plan
Window Function - Rewritten version of
crate::expr::WindowFunction
which usesInputRef
instead ofExprImpl
. - Postgres
Query - Project
Project
computes a set of expressions from its input relation.- Project
Builder - Construct a
Project
and dedup expressions. expressions - Project
Set ProjectSet
projects one row multiple times according toselect_list
.- Recursive
Union RecursiveUnion
returns the union of the rows of its inputs. note: ifall
is false, it needs to eliminate duplicates.- Share
- Source
Source
returns contents of a table or other equivalent object- SysScan
SysScan
returns contents of a table or other equivalent object- Table
Scan TableScan
returns contents of a RisingWave Table.- TopN
TopN
sorts the input data and fetches up tolimit
rows fromoffset
- Union
Union
returns the union of the rows of its inputs. Ifall
is false, it needs to eliminate duplicates.- Update
Enumsยง
- AggCall
State - File
Format - File
Scan Backend - Mode
- Source
Node Kind - In which scnario the source node is created
- Storage
Type - TopN
Limit Limit
is used to specify the number of records to return.
Constantsยง
Traitsยง
Functionsยง
- can_
push_ left_ from_ filter - can_
push_ left_ from_ on - can_
push_ on_ from_ filter - can_
push_ right_ from_ filter - can_
push_ right_ from_ on - push_
down_ into_ join - Try to split and pushdown
predicate
into a into a join condition and into the inputs of the join. Returns the pushed predicates. The pushed part will be removed from the original predicate. - push_
down_ join_ condition - Try to pushes parts of the join condition to its inputs. Returns the pushed predicates. The pushed part will be removed from the original join predicate.