Modules§
- expr 🔒
 
Traits§
- Substrait
Plan Decoder  - The datafusion 
[LogicalPlan]decoder. 
Functions§
- add_
insert_ to_ logical_ plan  - create a 
insert into table_name <input>logical plan - breakup_
insert_ plan  - Convert a insert into logical plan to an (table_name, logical_plan) where table_name is the name of the table to insert into. logical_plan is the plan to be executed.
 - build_
filter_ from_ timestamp  - Builds an 
Exprthat filters timestamp column from given timestamp range. Returns None if time range is None or full time range. - build_
same_ type_ ts_ filter  - Builds a filter for a timestamp column with the same type as the timestamp column. Returns None if time range is None or full time range.
 - rename_
logical_ plan_ columns  - Rename columns by applying a new projection. Returns an error if the column to be
renamed does not exist. The 
renamesparameter is aVectorwith elements in the form of(old_name, new_name).