Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed May 14, 2024
1 parent f553243 commit f8eed01
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions datafusion/sql/src/expr/function.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ use datafusion_expr::{
expr::{ScalarFunction, Unnest},
BuiltInWindowFunction,
};
use sqlparser::ast::{DuplicateTreatment, Expr as SQLExpr, Function as SQLFunction, FunctionArg, FunctionArgExpr, FunctionArgumentClause, FunctionArgumentList, FunctionArguments, NullTreatment, ObjectName, OrderByExpr, WindowType};
use sqlparser::ast::{
DuplicateTreatment, Expr as SQLExpr, Function as SQLFunction, FunctionArg,
FunctionArgExpr, FunctionArgumentClause, FunctionArgumentList, FunctionArguments,
NullTreatment, ObjectName, OrderByExpr, WindowType,
};
use std::str::FromStr;
use strum::IntoEnumIterator;

Expand Down Expand Up @@ -192,7 +196,8 @@ impl<'a, S: ContextProvider> SqlToRel<'a, S> {
let FunctionArgs {
name,
args,
order_by, over,
order_by,
over,
filter,
null_treatment,
distinct,
Expand Down

0 comments on commit f8eed01

Please sign in to comment.