We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b3ef54 commit 9568fb5Copy full SHA for 9568fb5
src/max_min_by.rs
@@ -399,7 +399,7 @@ mod tests {
399
('c', 2)
400
) AS t(v, k)
401
"#;
402
- let df =ctx()?.sql(&query).await?;
+ let df = ctx()?.sql(&query).await?;
403
let result = extract_single_value::<String, arrow::array::StringArray>(df).await?;
404
assert_eq!(result, "c", "max_by should ignore NULLs");
405
Ok(())
0 commit comments