Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions rust/datafusion/src/execution/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -997,10 +997,7 @@ mod tests {

let my_add = ScalarFunction::new(
"my_add",
vec![
Field::new("a", DataType::Int32, true),
Field::new("b", DataType::Int32, true),
],
vec![DataType::Int32, DataType::Int32],
DataType::Int32,
myfunc,
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ use crate::error::ExecutionError;
use crate::execution::physical_plan::udf::ScalarFunction;

use arrow::array::{Array, ArrayRef, Float64Array, Float64Builder};
use arrow::datatypes::{DataType, Field};
use arrow::datatypes::DataType;

use std::sync::Arc;

macro_rules! math_unary_function {
($NAME:expr, $FUNC:ident) => {
ScalarFunction::new(
$NAME,
vec![Field::new("n", DataType::Float64, true)],
vec![DataType::Float64],
DataType::Float64,
Arc::new(|args: &[ArrayRef]| {
let n = &args[0].as_any().downcast_ref::<Float64Array>();
Expand Down Expand Up @@ -86,7 +86,7 @@ mod tests {
execution::context::ExecutionContext,
logicalplan::{col, sqrt, LogicalPlanBuilder},
};
use arrow::datatypes::Schema;
use arrow::datatypes::{Field, Schema};

#[test]
fn cast_i8_input() -> Result<()> {
Expand Down
4 changes: 2 additions & 2 deletions rust/datafusion/src/execution/physical_plan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use crate::error::Result;
use crate::execution::context::ExecutionContextState;
use crate::logicalplan::{LogicalPlan, ScalarValue};
use arrow::array::ArrayRef;
use arrow::datatypes::{DataType, Field, Schema, SchemaRef};
use arrow::datatypes::{DataType, Schema, SchemaRef};
use arrow::{
compute::kernels::length::length,
record_batch::{RecordBatch, RecordBatchReader},
Expand Down Expand Up @@ -115,7 +115,7 @@ pub trait Accumulator: Debug {
pub fn scalar_functions() -> Vec<ScalarFunction> {
let mut udfs = vec![ScalarFunction::new(
"length",
vec![Field::new("n", DataType::Utf8, true)],
vec![DataType::Utf8],
DataType::UInt32,
Arc::new(|args: &[ArrayRef]| Ok(Arc::new(length(args[0].as_ref())?))),
)];
Expand Down
10 changes: 5 additions & 5 deletions rust/datafusion/src/execution/physical_plan/udf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use std::fmt;

use arrow::array::ArrayRef;
use arrow::datatypes::{DataType, Field, Schema};
use arrow::datatypes::{DataType, Schema};

use crate::error::Result;
use crate::execution::physical_plan::PhysicalExpr;
Expand All @@ -38,7 +38,7 @@ pub struct ScalarFunction {
/// Function name
pub name: String,
/// Function argument meta-data
pub args: Vec<Field>,
pub arg_types: Vec<DataType>,
/// Return type
pub return_type: DataType,
/// UDF implementation
Expand All @@ -61,7 +61,7 @@ impl Debug for ScalarFunction {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.debug_struct("ScalarFunction")
.field("name", &self.name)
.field("args", &self.args)
.field("arg_types", &self.arg_types)
.field("return_type", &self.return_type)
.field("fun", &"<FUNC>")
.finish()
Expand All @@ -72,13 +72,13 @@ impl ScalarFunction {
/// Create a new ScalarFunction
pub fn new(
name: &str,
args: Vec<Field>,
arg_types: Vec<DataType>,
return_type: DataType,
fun: ScalarUdf,
) -> Self {
Self {
name: name.to_owned(),
args,
arg_types,
return_type,
fun,
}
Expand Down
3 changes: 1 addition & 2 deletions rust/datafusion/src/optimizer/type_coercion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,8 @@ where
match self.scalar_functions.lookup(name) {
Some(func_meta) => {
for i in 0..expressions.len() {
let field = &func_meta.args[i];
let actual_type = expressions[i].get_type(schema)?;
let required_type = field.data_type();
let required_type = &func_meta.arg_types[i];
if &actual_type != required_type {
// attempt to coerce using numerical coercion
// todo: also try string coercion.
Expand Down
8 changes: 3 additions & 5 deletions rust/datafusion/src/sql/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -520,10 +520,8 @@ impl<'a, S: SchemaProvider> SqlToRel<'a, S> {

let mut safe_args: Vec<Expr> = vec![];
for i in 0..rex_args.len() {
safe_args.push(
rex_args[i]
.cast_to(fm.args[i].data_type(), schema)?,
);
safe_args
.push(rex_args[i].cast_to(&fm.arg_types[i], schema)?);
}

Ok(Expr::ScalarFunction {
Expand Down Expand Up @@ -908,7 +906,7 @@ mod tests {
match name {
"sqrt" => Some(Arc::new(ScalarFunction::new(
"sqrt",
vec![Field::new("n", DataType::Float64, false)],
vec![DataType::Float64],
DataType::Float64,
Arc::new(|_| Err(ExecutionError::NotImplemented("".to_string()))),
))),
Expand Down
2 changes: 1 addition & 1 deletion rust/datafusion/tests/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ fn create_ctx() -> Result<ExecutionContext> {
// register a custom UDF
ctx.register_udf(ScalarFunction::new(
"custom_sqrt",
vec![Field::new("n", DataType::Float64, true)],
vec![DataType::Float64],
DataType::Float64,
Arc::new(custom_sqrt),
));
Expand Down