risingwave_frontend/handler/
alter_resource_group.rs1use pgwire::pg_response::StatementType;
16use risingwave_common::bail;
17use risingwave_sqlparser::ast::{ObjectName, SetVariableValue, SetVariableValueSingle, Value};
18
19use super::{HandlerArgs, RwPgResponse};
20use crate::Binder;
21use crate::catalog::root_catalog::SchemaPath;
22use crate::catalog::table_catalog::TableType;
23use crate::error::{ErrorCode, Result};
24
25pub async fn handle_alter_resource_group(
26 handler_args: HandlerArgs,
27 obj_name: ObjectName,
28 resource_group: Option<SetVariableValue>,
29 stmt_type: StatementType,
30 deferred: bool,
31) -> Result<RwPgResponse> {
32 let session = handler_args.session;
33 let db_name = session.database();
34 let (schema_name, real_table_name) =
35 Binder::resolve_schema_qualified_name(&db_name, obj_name.clone())?;
36 let search_path = session.config().search_path();
37 let user_name = &session.auth_context().user_name;
38 let schema_path = SchemaPath::new(schema_name.as_deref(), &search_path, user_name);
39
40 let table_id = {
41 let reader = session.env().catalog_reader().read_guard();
42
43 match stmt_type {
44 StatementType::ALTER_MATERIALIZED_VIEW => {
45 let (table, schema_name) =
46 reader.get_created_table_by_name(&db_name, schema_path, &real_table_name)?;
47
48 match (table.table_type(), stmt_type) {
49 (TableType::MaterializedView, StatementType::ALTER_MATERIALIZED_VIEW) => {}
50 _ => {
51 return Err(ErrorCode::InvalidInputSyntax(format!(
52 "cannot alter resource group of {} {} by {}",
53 table.table_type().to_prost().as_str_name(),
54 table.name(),
55 stmt_type,
56 ))
57 .into());
58 }
59 }
60
61 session.check_privilege_for_drop_alter(schema_name, &**table)?;
62 table.id.table_id()
63 }
64 _ => bail!(
65 "invalid statement type for alter resource group: {:?}",
66 stmt_type
67 ),
68 }
69 };
70
71 let resource_group = resource_group.map(resolve_resource_group).transpose()?;
72
73 let mut builder = RwPgResponse::builder(stmt_type);
74
75 let catalog_writer = session.catalog_writer()?;
76 catalog_writer
77 .alter_resource_group(table_id, resource_group, deferred)
78 .await?;
79
80 if deferred {
81 builder = builder.notice("DEFERRED is used, please ensure that automatic parallelism control is enabled on the meta, otherwise, the alter will not take effect.".to_owned());
82 }
83
84 Ok(builder.into())
85}
86
87pub(crate) fn resolve_resource_group(resource_group: SetVariableValue) -> Result<String> {
88 Ok(match resource_group {
89 SetVariableValue::Single(SetVariableValueSingle::Ident(ident)) => ident.real_value(),
90 SetVariableValue::Single(SetVariableValueSingle::Literal(Value::SingleQuotedString(v))) => {
91 v
92 }
93 _ => {
94 return Err(ErrorCode::InvalidInputSyntax(
95 "target parallelism must be a valid number or adaptive".to_owned(),
96 )
97 .into());
98 }
99 })
100}