Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
StrikeW committed Aug 14, 2024
1 parent 756d840 commit 219a77e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/handler/alter_table_column.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ fn to_ast_data_type(ty: &DataType) -> Result<AstDataType> {
.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"))?
}
}
Expand Down

0 comments on commit 219a77e

Please sign in to comment.