risingwave_frontend/planner/
insert.rs1use fixedbitset::FixedBitSet;
16
17use crate::binder::BoundInsert;
18use crate::error::Result;
19use crate::optimizer::PlanRoot;
20use crate::optimizer::plan_node::{LogicalInsert, LogicalProject, PlanRef, generic};
21use crate::optimizer::property::{Order, RequiredDist};
22use crate::planner::Planner;
23
24impl Planner {
25 pub(super) fn plan_insert(&mut self, insert: BoundInsert) -> Result<PlanRoot> {
26 let mut input = self.plan_query(insert.source)?.into_unordered_subplan();
27 if !insert.cast_exprs.is_empty() {
28 input = LogicalProject::create(input, insert.cast_exprs);
29 }
30 let returning = !insert.returning_list.is_empty();
31 let mut plan: PlanRef = LogicalInsert::new(generic::Insert::new(
32 input,
33 insert.table_name.clone(),
34 insert.table_id,
35 insert.table_version_id,
36 insert.table_visible_columns,
37 insert.column_indices,
38 insert.default_columns,
39 insert.row_id_index,
40 returning,
41 ))
42 .into();
43 if returning {
45 plan = LogicalProject::create(plan, insert.returning_list);
46 }
47 let dist = RequiredDist::Any;
49 let mut out_fields = FixedBitSet::with_capacity(plan.schema().len());
50 out_fields.insert_range(..);
51 let out_names = if returning {
52 insert.returning_schema.expect("If returning list is not empty, should provide returning schema in BoundInsert.").names()
53 } else {
54 plan.schema().names()
55 };
56 let root = PlanRoot::new_with_logical_plan(plan, dist, Order::any(), out_fields, out_names);
57 Ok(root)
58 }
59}