risingwave_frontend/planner/
insert.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright 2024 RisingWave Labs
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use fixedbitset::FixedBitSet;

use crate::binder::BoundInsert;
use crate::error::Result;
use crate::optimizer::plan_node::{generic, LogicalInsert, LogicalProject, PlanRef};
use crate::optimizer::property::{Order, RequiredDist};
use crate::optimizer::PlanRoot;
use crate::planner::Planner;

impl Planner {
    pub(super) fn plan_insert(&mut self, insert: BoundInsert) -> Result<PlanRoot> {
        let mut input = self.plan_query(insert.source)?.into_unordered_subplan();
        if !insert.cast_exprs.is_empty() {
            input = LogicalProject::create(input, insert.cast_exprs);
        }
        let returning = !insert.returning_list.is_empty();
        let mut plan: PlanRef = LogicalInsert::new(generic::Insert::new(
            input,
            insert.table_name.clone(),
            insert.table_id,
            insert.table_version_id,
            insert.table_visible_columns,
            insert.column_indices,
            insert.default_columns,
            insert.row_id_index,
            returning,
        ))
        .into();
        // If containing RETURNING, add one logicalproject node
        if returning {
            plan = LogicalProject::create(plan, insert.returning_list);
        }
        // For insert, frontend will only schedule one task so do not need this to be single.
        let dist = RequiredDist::Any;
        let mut out_fields = FixedBitSet::with_capacity(plan.schema().len());
        out_fields.insert_range(..);
        let out_names = if returning {
            insert.returning_schema.expect("If returning list is not empty, should provide returning schema in BoundInsert.").names()
        } else {
            plan.schema().names()
        };
        let root = PlanRoot::new_with_logical_plan(plan, dist, Order::any(), out_fields, out_names);
        Ok(root)
    }
}