Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions datafusion/core/tests/dataframe/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ async fn test_aggregate_with_pk() -> Result<()> {
let aggr_expr = vec![];
let df = df.aggregate(group_expr, aggr_expr)?;

// Since id and name are functionally dependant, we can use name among
// Since id and name are functionally dependent, we can use name among
// expression even if it is not part of the group by expression and can
// select "name" column even though it wasn't explicitly grouped
let df = df.select(vec![col("id"), col("name")])?;
Expand Down Expand Up @@ -895,7 +895,7 @@ async fn test_aggregate_with_pk2() -> Result<()> {
"
);

// Since id and name are functionally dependant, we can use name among expression
// Since id and name are functionally dependent, we can use name among expression
// even if it is not part of the group by expression.
let df_results = df.collect().await?;

Expand Down Expand Up @@ -943,7 +943,7 @@ async fn test_aggregate_with_pk3() -> Result<()> {
"
);

// Since id and name are functionally dependant, we can use name among expression
// Since id and name are functionally dependent, we can use name among expression
// even if it is not part of the group by expression.
let df_results = df.collect().await?;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ impl<const STREAMING: bool> GroupValuesColumn<STREAMING> {
///
/// The hash collision may be not frequent, so the fallback will indeed hardly happen.
/// In most situations, `scalarized_indices` will found to be empty after finishing to
/// preform `vectorized_equal_to`.
/// perform `vectorized_equal_to`.
fn scalarized_intern_remaining(
&mut self,
cols: &[ArrayRef],
Expand Down