Skip to content

Commit

Permalink
Update src/sql/src/statements.rs
Browse files Browse the repository at this point in the history
Co-authored-by: tison <[email protected]>
  • Loading branch information
MichaelScofield and tisonkun authored Feb 23, 2024
1 parent 9b91c35 commit cec970d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sql/src/statements.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ macro_rules! parse_number_to_value {
"0" => Ok(Value::Boolean(false)),
"1" => Ok(Value::Boolean(true)),
_ => ParseSqlValueSnafu {
msg: format!("Failed to parse number '{}' to boolean column type!", $n)}.fail(),
msg: format!("Failed to parse number '{}' to boolean column type", $n)}.fail(),
}
}
_ => ParseSqlValueSnafu {
Expand Down

0 comments on commit cec970d

Please sign in to comment.