Skip to content

Commit

Permalink
refactor: move aggregate_statistics to `datafusion-physical-optimiz…
Browse files Browse the repository at this point in the history
…er` (#11798)

* refactor: move aggregate statistics to datafusion-physical-optimizer

* chore

* chore: Update cargo lock

* refactor: Move COUNT_STAR_EXPANSION to datafusion_common

* refactor: Move tests to core/tests
  • Loading branch information
Weijun-H committed Aug 5, 2024
1 parent c6f0d3c commit fcd907d
Show file tree
Hide file tree
Showing 11 changed files with 770 additions and 704 deletions.
100 changes: 58 additions & 42 deletions datafusion-cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions datafusion/common/src/utils/expr.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.

//! Expression utilities

use crate::ScalarValue;

/// The value to which `COUNT(*)` is expanded to in
/// `COUNT(<constant>)` expressions
pub const COUNT_STAR_EXPANSION: ScalarValue = ScalarValue::Int64(Some(1));
1 change: 1 addition & 0 deletions datafusion/common/src/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

//! This module provides the bisect function, which implements binary search.

pub mod expr;
pub mod memory;
pub mod proxy;

Expand Down
Loading

0 comments on commit fcd907d

Please sign in to comment.