Modulesยง
- materialized_
exprs ๐ - project_
scalar ๐ - project_
set ๐
Structsยง
- Materialized
Exprs Args - Materialized
Exprs Executor - An executor that materializes the result of a set of expressions.
The expressions are evaluated on
Insert
/UpdateInsert
rows and the results are stored in a state table. When aDelete
/UpdateDelete
row is received, the corresponding result row is popped from the state table without the need to re-evaluate the expressions. - Project
Executor ProjectExecutor
project data with theexpr
. Theexpr
takes a chunk of data, and returns a new data chunk. And then,ProjectExecutor
will insert, delete or update element into next operator according to the result of the expression.- Project
SetExecutor ProjectSetExecutor
projects data with theexpr
. Theexpr
takes a chunk of data, and returns a new data chunk. And then,ProjectSetExecutor
will insert, delete or update element into next operator according to the result of the expression.
Enumsยง
- Project
SetSelect Item - Either a scalar expression or a set-returning function.