Skip to content

Commit d91a7c0

Browse files
authored
Add comments to physical optimizer tests (#14075)
1 parent f1671bb commit d91a7c0

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

datafusion/core/tests/physical_optimizer/combine_partial_final_agg.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18+
//! Tests for [`CombinePartialFinalAggregate`] physical optimizer rule
19+
//!
20+
//! Note these tests are not in the same module as the optimizer pass because
21+
//! they rely on `ParquetExec` which is in the core crate.
1822
use std::sync::Arc;
1923

2024
use arrow::datatypes::{DataType, Field, Schema, SchemaRef};

datafusion/core/tests/physical_optimizer/limited_distinct_aggregation.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
//! Tests for the limited distinct aggregation optimizer rule
19-
18+
//! Tests for [`LimitedDistinctAggregation`] physical optimizer rule
19+
//!
20+
//! Note these tests are not in the same module as the optimizer pass because
21+
//! they rely on `ParquetExec` which is in the core crate.
2022
use super::test_util::{parquet_exec_with_sort, schema, trim_plan_display};
2123

2224
use std::sync::Arc;

0 commit comments

Comments
 (0)