Skip to content

Commit

Permalink
fix: sql groupby logic
Browse files Browse the repository at this point in the history
  • Loading branch information
universalmind303 committed Sep 13, 2024
1 parent fffd122 commit 5f29755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daft-sql/src/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ impl SQLPlanner {
.iter()
.map(|n| col(n.as_str()))
.chain(groupby_selection)
.collect::<Vec<_>>();
.collect();

rel.inner = rel.inner.select(selection_colums)?;
}
Expand Down

0 comments on commit 5f29755

Please sign in to comment.