Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Bugen Zhao <[email protected]>
  • Loading branch information
BugenZhao committed Nov 24, 2023
1 parent bb34b5e commit 2b32ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/handler/create_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ fn ensure_column_options_supported(c: &ColumnDef) -> Result<()> {
ColumnOption::GeneratedColumns(_) => {}
ColumnOption::DefaultColumns(_) => {}
ColumnOption::Unique { is_primary: true } => {}
_ => bail_not_implemented!(issue = None, "column constraints \"{}\"", option_def),
_ => bail_not_implemented!("column constraints \"{}\"", option_def),
}
}
Ok(())
Expand Down

0 comments on commit 2b32ba6

Please sign in to comment.