Skip to content

Commit

Permalink
Fix ci 2
Browse files Browse the repository at this point in the history
  • Loading branch information
xinlifoobar committed Jul 11, 2024
1 parent 0a5eed5 commit a7302ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/sql/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ pub(crate) fn normalize_ident(id: Ident) -> String {
}

pub(crate) fn normalize_value(value: &Value) -> Result<String> {
value_to_string(value).and_then(|v| Ok(v.to_ascii_lowercase()))
value_to_string(value).map(|v| v.to_ascii_lowercase())
}

pub(crate) fn value_to_string(value: &Value) -> Result<String> {
Expand Down

0 comments on commit a7302ea

Please sign in to comment.