Skip to content

Commit

Permalink
Fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed Dec 14, 2022
1 parent 23f5e40 commit e38e76d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/core/src/dataframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ impl DataFrame {
/// let df = ctx.read_csv("tests/example.csv", CsvReadOptions::new()).await?;
///
/// // The following use is the equivalent of "SELECT MIN(b) GROUP BY a"
/// let _ = df.aggregate(vec![col("a")], vec![min(col("b"))])?;
/// let _ = df.clone().aggregate(vec![col("a")], vec![min(col("b"))])?;
///
/// // The following use is the equivalent of "SELECT MIN(b)"
/// let _ = df.aggregate(vec![], vec![min(col("b"))])?;
Expand Down

0 comments on commit e38e76d

Please sign in to comment.