Module project

Source

Modulesยง

materialized_exprs ๐Ÿ”’
project_scalar ๐Ÿ”’
project_set ๐Ÿ”’

Structsยง

MaterializedExprsArgs
MaterializedExprsExecutor
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 a Delete/UpdateDelete row is received, the corresponding result row is popped from the state table without the need to re-evaluate the expressions.
ProjectExecutor
ProjectExecutor project data with the expr. The expr 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.
ProjectSetExecutor
ProjectSetExecutor projects data with the expr. The expr 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ยง

ProjectSetSelectItem
Either a scalar expression or a set-returning function.