-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
381 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# 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. | ||
|
||
[package] | ||
name = "datafusion-physical-expr" | ||
description = "DataFusion is an in-memory query engine that uses Apache Arrow as the memory model" | ||
version = "7.0.0" | ||
homepage = "https://github.com/apache/arrow-datafusion" | ||
repository = "https://github.com/apache/arrow-datafusion" | ||
readme = "../README.md" | ||
authors = ["Apache Arrow <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = [ "arrow", "query", "sql" ] | ||
edition = "2021" | ||
rust-version = "1.58" | ||
|
||
[lib] | ||
name = "datafusion_physical_expr" | ||
path = "src/lib.rs" | ||
|
||
[features] | ||
|
||
[dependencies] | ||
datafusion-common = { path = "../datafusion-common", version = "7.0.0" } | ||
datafusion-expr = { path = "../datafusion-expr", version = "7.0.0" } | ||
arrow = { version = "9.0.0", features = ["prettyprint"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
--> | ||
|
||
# DataFusion Physical Expr | ||
|
||
This is an internal module for fundamental physical expression types of [DataFusion][df]. | ||
|
||
[df]: https://crates.io/crates/datafusion |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// 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. | ||
|
||
use crate::PhysicalExpr; | ||
|
||
use arrow::datatypes::Field; | ||
use datafusion_common::Result; | ||
use datafusion_expr::Accumulator; | ||
use std::fmt::Debug; | ||
|
||
use std::any::Any; | ||
use std::sync::Arc; | ||
|
||
/// An aggregate expression that: | ||
/// * knows its resulting field | ||
/// * knows how to create its accumulator | ||
/// * knows its accumulator's state's field | ||
/// * knows the expressions from whose its accumulator will receive values | ||
pub trait AggregateExpr: Send + Sync + Debug { | ||
/// Returns the aggregate expression as [`Any`](std::any::Any) so that it can be | ||
/// downcast to a specific implementation. | ||
fn as_any(&self) -> &dyn Any; | ||
|
||
/// the field of the final result of this aggregation. | ||
fn field(&self) -> Result<Field>; | ||
|
||
/// the accumulator used to accumulate values from the expressions. | ||
/// the accumulator expects the same number of arguments as `expressions` and must | ||
/// return states with the same description as `state_fields` | ||
fn create_accumulator(&self) -> Result<Box<dyn Accumulator>>; | ||
|
||
/// the fields that encapsulate the Accumulator's state | ||
/// the number of fields here equals the number of states that the accumulator contains | ||
fn state_fields(&self) -> Result<Vec<Field>>; | ||
|
||
/// expressions that are passed to the Accumulator. | ||
/// Single-column aggregations such as `sum` return a single value, others (e.g. `cov`) return many. | ||
fn expressions(&self) -> Vec<Arc<dyn PhysicalExpr>>; | ||
|
||
/// Human readable name such as `"MIN(c2)"`. The default | ||
/// implementation returns placeholder text. | ||
fn name(&self) -> &str { | ||
"AggregateExpr: default name" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// 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. | ||
|
||
mod aggregate_expr; | ||
mod physical_expr; | ||
mod sort_expr; | ||
mod window_expr; | ||
|
||
pub use aggregate_expr::AggregateExpr; | ||
pub use physical_expr::PhysicalExpr; | ||
pub use sort_expr::PhysicalSortExpr; | ||
pub use window_expr::WindowExpr; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// 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. | ||
|
||
use arrow::datatypes::{DataType, Schema}; | ||
|
||
use arrow::record_batch::RecordBatch; | ||
|
||
use datafusion_common::Result; | ||
|
||
use datafusion_expr::ColumnarValue; | ||
use std::fmt::{Debug, Display}; | ||
|
||
use std::any::Any; | ||
|
||
/// Expression that can be evaluated against a RecordBatch | ||
/// A Physical expression knows its type, nullability and how to evaluate itself. | ||
pub trait PhysicalExpr: Send + Sync + Display + Debug { | ||
/// Returns the physical expression as [`Any`](std::any::Any) so that it can be | ||
/// downcast to a specific implementation. | ||
fn as_any(&self) -> &dyn Any; | ||
/// Get the data type of this expression, given the schema of the input | ||
fn data_type(&self, input_schema: &Schema) -> Result<DataType>; | ||
/// Determine whether this expression is nullable, given the schema of the input | ||
fn nullable(&self, input_schema: &Schema) -> Result<bool>; | ||
/// Evaluate an expression against a RecordBatch | ||
fn evaluate(&self, batch: &RecordBatch) -> Result<ColumnarValue>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// 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. | ||
|
||
use crate::PhysicalExpr; | ||
use arrow::compute::kernels::sort::{SortColumn, SortOptions}; | ||
use arrow::record_batch::RecordBatch; | ||
use datafusion_common::{DataFusionError, Result}; | ||
use datafusion_expr::ColumnarValue; | ||
use std::sync::Arc; | ||
|
||
/// Represents Sort operation for a column in a RecordBatch | ||
#[derive(Clone, Debug)] | ||
pub struct PhysicalSortExpr { | ||
/// Physical expression representing the column to sort | ||
pub expr: Arc<dyn PhysicalExpr>, | ||
/// Option to specify how the given column should be sorted | ||
pub options: SortOptions, | ||
} | ||
|
||
impl std::fmt::Display for PhysicalSortExpr { | ||
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
let opts_string = match (self.options.descending, self.options.nulls_first) { | ||
(true, true) => "DESC", | ||
(true, false) => "DESC NULLS LAST", | ||
(false, true) => "ASC", | ||
(false, false) => "ASC NULLS LAST", | ||
}; | ||
|
||
write!(f, "{} {}", self.expr, opts_string) | ||
} | ||
} | ||
|
||
impl PhysicalSortExpr { | ||
/// evaluate the sort expression into SortColumn that can be passed into arrow sort kernel | ||
pub fn evaluate_to_sort_column(&self, batch: &RecordBatch) -> Result<SortColumn> { | ||
let value_to_sort = self.expr.evaluate(batch)?; | ||
let array_to_sort = match value_to_sort { | ||
ColumnarValue::Array(array) => array, | ||
ColumnarValue::Scalar(scalar) => { | ||
return Err(DataFusionError::Plan(format!( | ||
"Sort operation is not applicable to scalar value {}", | ||
scalar | ||
))); | ||
} | ||
}; | ||
Ok(SortColumn { | ||
values: array_to_sort, | ||
options: Some(self.options), | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
// 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. | ||
|
||
use crate::{PhysicalExpr, PhysicalSortExpr}; | ||
use arrow::compute::kernels::partition::lexicographical_partition_ranges; | ||
use arrow::compute::kernels::sort::{SortColumn, SortOptions}; | ||
use arrow::record_batch::RecordBatch; | ||
use arrow::{array::ArrayRef, datatypes::Field}; | ||
use datafusion_common::{DataFusionError, Result}; | ||
use std::any::Any; | ||
use std::fmt::Debug; | ||
use std::ops::Range; | ||
use std::sync::Arc; | ||
|
||
/// A window expression that: | ||
/// * knows its resulting field | ||
pub trait WindowExpr: Send + Sync + Debug { | ||
/// Returns the window expression as [`Any`](std::any::Any) so that it can be | ||
/// downcast to a specific implementation. | ||
fn as_any(&self) -> &dyn Any; | ||
|
||
/// the field of the final result of this window function. | ||
fn field(&self) -> Result<Field>; | ||
|
||
/// Human readable name such as `"MIN(c2)"` or `"RANK()"`. The default | ||
/// implementation returns placeholder text. | ||
fn name(&self) -> &str { | ||
"WindowExpr: default name" | ||
} | ||
|
||
/// expressions that are passed to the WindowAccumulator. | ||
/// Functions which take a single input argument, such as `sum`, return a single [`datafusion_expr::expr::Expr`], | ||
/// others (e.g. `cov`) return many. | ||
fn expressions(&self) -> Vec<Arc<dyn PhysicalExpr>>; | ||
|
||
/// evaluate the window function arguments against the batch and return | ||
/// array ref, normally the resulting vec is a single element one. | ||
fn evaluate_args(&self, batch: &RecordBatch) -> Result<Vec<ArrayRef>> { | ||
self.expressions() | ||
.iter() | ||
.map(|e| e.evaluate(batch)) | ||
.map(|r| r.map(|v| v.into_array(batch.num_rows()))) | ||
.collect() | ||
} | ||
|
||
/// evaluate the window function values against the batch | ||
fn evaluate(&self, batch: &RecordBatch) -> Result<ArrayRef>; | ||
|
||
/// evaluate the partition points given the sort columns; if the sort columns are | ||
/// empty then the result will be a single element vec of the whole column rows. | ||
fn evaluate_partition_points( | ||
&self, | ||
num_rows: usize, | ||
partition_columns: &[SortColumn], | ||
) -> Result<Vec<Range<usize>>> { | ||
if partition_columns.is_empty() { | ||
Ok(vec![Range { | ||
start: 0, | ||
end: num_rows, | ||
}]) | ||
} else { | ||
Ok(lexicographical_partition_ranges(partition_columns) | ||
.map_err(DataFusionError::ArrowError)? | ||
.collect::<Vec<_>>()) | ||
} | ||
} | ||
|
||
/// expressions that's from the window function's partition by clause, empty if absent | ||
fn partition_by(&self) -> &[Arc<dyn PhysicalExpr>]; | ||
|
||
/// expressions that's from the window function's order by clause, empty if absent | ||
fn order_by(&self) -> &[PhysicalSortExpr]; | ||
|
||
/// get partition columns that can be used for partitioning, empty if absent | ||
fn partition_columns(&self, batch: &RecordBatch) -> Result<Vec<SortColumn>> { | ||
self.partition_by() | ||
.iter() | ||
.map(|expr| { | ||
PhysicalSortExpr { | ||
expr: expr.clone(), | ||
options: SortOptions::default(), | ||
} | ||
.evaluate_to_sort_column(batch) | ||
}) | ||
.collect() | ||
} | ||
|
||
/// get sort columns that can be used for peer evaluation, empty if absent | ||
fn sort_columns(&self, batch: &RecordBatch) -> Result<Vec<SortColumn>> { | ||
let mut sort_columns = self.partition_columns(batch)?; | ||
let order_by_columns = self | ||
.order_by() | ||
.iter() | ||
.map(|e| e.evaluate_to_sort_column(batch)) | ||
.collect::<Result<Vec<SortColumn>>>()?; | ||
sort_columns.extend(order_by_columns); | ||
Ok(sort_columns) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.