Module generic

Source
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ยง

impl_distill_unit_from_fields ๐Ÿ”’

Structsยง

Agg
Agg groups input data by their group key and computes aggregation functions.
AliasedExpr
Auxiliary struct for displaying expr AS alias
AzblobFileScan
CdcScan
CdcScan reads rows of a table from an external upstream database
CdcScanOptions
ChangeLog
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 to column_subsets and also keep original columns of input. It can be used to implement distinct aggregation and group set.
FileScan
Filter
GcsFileScan
HopWindow
HopWindow implements Hop Table Function.
Insert
Intersect
Intersect returns the intersect of the rows of its inputs. If all is false, it needs to eliminate duplicates.
Join
Join combines two relations according to some condition.
Limit
LogScan
MaterializedInputState
MaxOneRow
MySqlQuery
Now
OverWindow
PlanAggCall
Rewritten version of crate::expr::AggCall which uses InputRef instead of ExprImpl. Refer to crate::optimizer::plan_node::logical_agg::LogicalAggBuilder::try_rewrite_agg_call for more details.
PlanAggCallDisplay
PlanWindowFunction
Rewritten version of crate::expr::WindowFunction which uses InputRef instead of ExprImpl.
PostgresQuery
Project
Project computes a set of expressions from its input relation.
ProjectBuilder
Construct a Project and dedup expressions. expressions
ProjectSet
ProjectSet projects one row multiple times according to select_list.
RecursiveUnion
RecursiveUnion returns the union of the rows of its inputs. note: if all 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
TableScan
TableScan returns contents of a RisingWave Table.
TopN
TopN sorts the input data and fetches up to limit rows from offset
Union
Union returns the union of the rows of its inputs. If all is false, it needs to eliminate duplicates.
Update

Enumsยง

AggCallState
FileFormat
FileScanBackend
Mode
SourceNodeKind
In which scnario the source node is created
StorageType
TopNLimit
Limit is used to specify the number of records to return.

Constantsยง

CHANGELOG_OP
_CHANGELOG_ROW_ID

Traitsยง

DistillUnit
GenericPlanNode
GenericPlanRef
PhysicalPlanRef

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.