diff --git a/src/frontend/src/handler/alter_table_column.rs b/src/frontend/src/handler/alter_table_column.rs index c91b08344892f..1e11e390edfd8 100644 --- a/src/frontend/src/handler/alter_table_column.rs +++ b/src/frontend/src/handler/alter_table_column.rs @@ -149,7 +149,7 @@ fn to_ast_data_type(ty: &DataType) -> Result { .try_collect()?; Ok(AstDataType::Struct(fields)) } - DataType::Serial | DataType::Int256 => { + DataType::Serial | DataType::Int256 | DataType::Map(_) => { Err(anyhow!("unsupported data type: {:?}", ty).context("to_ast_data_type"))? } }