risingwave_frontend/handler/
alter_swap_rename.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// 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 std::sync::Arc;

use pgwire::pg_response::StatementType;
use risingwave_common::bail_not_implemented;
use risingwave_pb::ddl_service::alter_swap_rename_request;
use risingwave_pb::ddl_service::alter_swap_rename_request::ObjectNameSwapPair;
use risingwave_sqlparser::ast::ObjectName;

use crate::catalog::root_catalog::SchemaPath;
use crate::catalog::CatalogError;
use crate::error::{ErrorCode, Result};
use crate::handler::{HandlerArgs, RwPgResponse};
use crate::session::SessionImpl;
use crate::user::UserId;
use crate::Binder;

/// Check if the session user has the privilege to swap and rename the objects.
fn check_swap_rename_privilege(
    session_impl: &Arc<SessionImpl>,
    src_owner: UserId,
    target_owner: UserId,
) -> Result<()> {
    if !session_impl.is_super_user()
        && (src_owner != session_impl.user_id() || target_owner != session_impl.user_id())
    {
        return Err(ErrorCode::PermissionDenied(format!(
            "{} is not super user and not the owner of the objects.",
            session_impl.user_name()
        ))
        .into());
    }
    Ok(())
}

pub async fn handle_swap_rename(
    handler_args: HandlerArgs,
    source_object: ObjectName,
    target_object: ObjectName,
    stmt_type: StatementType,
) -> Result<RwPgResponse> {
    let session = handler_args.session;
    let db_name = session.database();
    let (src_schema_name, src_obj_name) =
        Binder::resolve_schema_qualified_name(db_name, source_object)?;
    let search_path = session.config().search_path();
    let user_name = &session.auth_context().user_name;
    let src_schema_path = SchemaPath::new(src_schema_name.as_deref(), &search_path, user_name);
    let (target_schema_name, target_obj_name) =
        Binder::resolve_schema_qualified_name(db_name, target_object)?;
    let target_schema_path =
        SchemaPath::new(target_schema_name.as_deref(), &search_path, user_name);

    let obj = match stmt_type {
        StatementType::ALTER_SCHEMA => {
            // TODO: support it until resolves https://github.com/risingwavelabs/risingwave/issues/19028
            bail_not_implemented!("ALTER SCHEMA SWAP WITH is not supported yet");
        }
        StatementType::ALTER_TABLE | StatementType::ALTER_MATERIALIZED_VIEW => {
            let catalog_reader = session.env().catalog_reader().read_guard();
            let (src_table, _) = catalog_reader.get_created_table_by_name(
                db_name,
                src_schema_path,
                &src_obj_name,
            )?;
            let (target_table, _) = catalog_reader.get_created_table_by_name(
                db_name,
                target_schema_path,
                &target_obj_name,
            )?;

            if src_table.table_type != target_table.table_type {
                return Err(ErrorCode::PermissionDenied(format!(
                    "cannot swap between {} and {}: type mismatch",
                    src_obj_name, target_obj_name
                ))
                .into());
            }
            if stmt_type == StatementType::ALTER_TABLE && !src_table.is_table() {
                return Err(CatalogError::NotFound("table", src_obj_name.to_string()).into());
            } else if stmt_type == StatementType::ALTER_MATERIALIZED_VIEW && !src_table.is_mview() {
                return Err(
                    CatalogError::NotFound("materialized view", src_obj_name.to_string()).into(),
                );
            }

            check_swap_rename_privilege(&session, src_table.owner, target_table.owner)?;

            alter_swap_rename_request::Object::Table(ObjectNameSwapPair {
                src_object_id: src_table.id.table_id,
                dst_object_id: target_table.id.table_id,
            })
        }
        StatementType::ALTER_VIEW => {
            let catalog_reader = session.env().catalog_reader().read_guard();
            let (src_view, _) =
                catalog_reader.get_view_by_name(db_name, src_schema_path, &src_obj_name)?;
            let (target_view, _) =
                catalog_reader.get_view_by_name(db_name, target_schema_path, &target_obj_name)?;
            check_swap_rename_privilege(&session, src_view.owner, target_view.owner)?;

            alter_swap_rename_request::Object::View(ObjectNameSwapPair {
                src_object_id: src_view.id,
                dst_object_id: target_view.id,
            })
        }
        StatementType::ALTER_SOURCE => {
            let catalog_reader = session.env().catalog_reader().read_guard();
            let (src_source, _) =
                catalog_reader.get_source_by_name(db_name, src_schema_path, &src_obj_name)?;
            let (target_source, _) =
                catalog_reader.get_source_by_name(db_name, target_schema_path, &target_obj_name)?;
            check_swap_rename_privilege(&session, src_source.owner, target_source.owner)?;

            alter_swap_rename_request::Object::Source(ObjectNameSwapPair {
                src_object_id: src_source.id,
                dst_object_id: target_source.id,
            })
        }
        StatementType::ALTER_SINK => {
            let catalog_reader = session.env().catalog_reader().read_guard();
            let (src_sink, _) =
                catalog_reader.get_sink_by_name(db_name, src_schema_path, &src_obj_name)?;
            let (target_sink, _) =
                catalog_reader.get_sink_by_name(db_name, target_schema_path, &target_obj_name)?;
            check_swap_rename_privilege(
                &session,
                src_sink.owner.user_id,
                target_sink.owner.user_id,
            )?;

            alter_swap_rename_request::Object::Sink(ObjectNameSwapPair {
                src_object_id: src_sink.id.sink_id,
                dst_object_id: target_sink.id.sink_id,
            })
        }
        StatementType::ALTER_SUBSCRIPTION => {
            let catalog_reader = session.env().catalog_reader().read_guard();
            let (src_subscription, _) =
                catalog_reader.get_subscription_by_name(db_name, src_schema_path, &src_obj_name)?;
            let (target_subscription, _) = catalog_reader.get_subscription_by_name(
                db_name,
                target_schema_path,
                &target_obj_name,
            )?;
            check_swap_rename_privilege(
                &session,
                src_subscription.owner.user_id,
                target_subscription.owner.user_id,
            )?;

            alter_swap_rename_request::Object::Subscription(ObjectNameSwapPair {
                src_object_id: src_subscription.id.subscription_id,
                dst_object_id: target_subscription.id.subscription_id,
            })
        }
        _ => {
            unreachable!("handle_swap_rename: unsupported statement type")
        }
    };

    let catalog_writer = session.catalog_writer()?;
    catalog_writer.alter_swap_rename(obj).await?;

    Ok(RwPgResponse::empty_result(stmt_type))
}