Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mert Akkaya committed Aug 2, 2024
1 parent d2da821 commit 1bd49fd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions datafusion/optimizer/src/eliminate_distinct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@
// under the License.

//! Optimizer rule to replaces redundant aggregations on a plan.
//! This reduces redundant Aggregations in PyhsicalPlan.
//!
//! This optimizer changes this kind of query
//!
//! SELECT DISTINCT c3 FROM aggregate_test_100 GROUP BY c3 LIMIT 5;
//! to this
//! SELECT c3 FROM aggregate_test_100 GROUP BY c3 LIMIT 5;
Expand Down

0 comments on commit 1bd49fd

Please sign in to comment.