-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathfunction.rs
526 lines (488 loc) · 19.6 KB
/
function.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
// 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::planner::{ContextProvider, PlannerContext, SqlToRel};
use arrow::datatypes::DataType;
use datafusion_common::{
internal_datafusion_err, internal_err, not_impl_err, plan_datafusion_err, plan_err,
DFSchema, Dependency, Diagnostic, Result, Span,
};
use datafusion_expr::expr::{ScalarFunction, Unnest};
use datafusion_expr::planner::{PlannerResult, RawAggregateExpr, RawWindowExpr};
use datafusion_expr::{
expr, qualified_wildcard, wildcard, Expr, ExprFunctionExt, ExprSchemable,
WindowFrame, WindowFunctionDefinition,
};
use sqlparser::ast::{
DuplicateTreatment, Expr as SQLExpr, Function as SQLFunction, FunctionArg,
FunctionArgExpr, FunctionArgumentClause, FunctionArgumentList, FunctionArguments,
NullTreatment, ObjectName, OrderByExpr, WindowType,
};
/// Suggest a valid function based on an invalid input function name
///
/// Returns `None` if no valid matches are found. This happens when there are no
/// functions registered with the context.
pub fn suggest_valid_function(
input_function_name: &str,
is_window_func: bool,
ctx: &dyn ContextProvider,
) -> Option<String> {
let valid_funcs = if is_window_func {
// All aggregate functions and builtin window functions
let mut funcs = Vec::new();
funcs.extend(ctx.udaf_names());
funcs.extend(ctx.udwf_names());
funcs
} else {
// All scalar functions and aggregate functions
let mut funcs = Vec::new();
funcs.extend(ctx.udf_names());
funcs.extend(ctx.udaf_names());
funcs
};
find_closest_match(valid_funcs, input_function_name)
}
/// Find the closest matching string to the target string in the candidates list, using edit distance(case insensitive)
/// Input `candidates` must not be empty otherwise an error is returned.
fn find_closest_match(candidates: Vec<String>, target: &str) -> Option<String> {
let target = target.to_lowercase();
candidates.into_iter().min_by_key(|candidate| {
datafusion_common::utils::datafusion_strsim::levenshtein(
&candidate.to_lowercase(),
&target,
)
})
}
/// Arguments to for a function call extracted from the SQL AST
#[derive(Debug)]
struct FunctionArgs {
/// Function name
name: ObjectName,
/// Argument expressions
args: Vec<FunctionArg>,
/// ORDER BY clause, if any
order_by: Vec<OrderByExpr>,
/// OVER clause, if any
over: Option<WindowType>,
/// FILTER clause, if any
filter: Option<Box<SQLExpr>>,
/// NULL treatment clause, if any
null_treatment: Option<NullTreatment>,
/// DISTINCT
distinct: bool,
}
impl FunctionArgs {
fn try_new(function: SQLFunction) -> Result<Self> {
let SQLFunction {
name,
args,
over,
filter,
mut null_treatment,
within_group,
..
} = function;
// Handle no argument form (aka `current_time` as opposed to `current_time()`)
let FunctionArguments::List(args) = args else {
return Ok(Self {
name,
args: vec![],
order_by: vec![],
over,
filter,
null_treatment,
distinct: false,
});
};
let FunctionArgumentList {
duplicate_treatment,
args,
clauses,
} = args;
let distinct = match duplicate_treatment {
Some(DuplicateTreatment::Distinct) => true,
Some(DuplicateTreatment::All) => false,
None => false,
};
// Pull out argument handling
let mut order_by = None;
for clause in clauses {
match clause {
FunctionArgumentClause::IgnoreOrRespectNulls(nt) => {
if null_treatment.is_some() {
return not_impl_err!(
"Calling {name}: Duplicated null treatment clause"
);
}
null_treatment = Some(nt);
}
FunctionArgumentClause::OrderBy(oby) => {
if order_by.is_some() {
return not_impl_err!("Calling {name}: Duplicated ORDER BY clause in function arguments");
}
order_by = Some(oby);
}
FunctionArgumentClause::Limit(limit) => {
return not_impl_err!(
"Calling {name}: LIMIT not supported in function arguments: {limit}"
)
}
FunctionArgumentClause::OnOverflow(overflow) => {
return not_impl_err!(
"Calling {name}: ON OVERFLOW not supported in function arguments: {overflow}"
)
}
FunctionArgumentClause::Having(having) => {
return not_impl_err!(
"Calling {name}: HAVING not supported in function arguments: {having}"
)
}
FunctionArgumentClause::Separator(sep) => {
return not_impl_err!(
"Calling {name}: SEPARATOR not supported in function arguments: {sep}"
)
}
FunctionArgumentClause::JsonNullClause(jn) => {
return not_impl_err!(
"Calling {name}: JSON NULL clause not supported in function arguments: {jn}"
)
}
}
}
if !within_group.is_empty() {
return not_impl_err!("WITHIN GROUP is not supported yet: {within_group:?}");
}
let order_by = order_by.unwrap_or_default();
Ok(Self {
name,
args,
order_by,
over,
filter,
null_treatment,
distinct,
})
}
}
impl<S: ContextProvider> SqlToRel<'_, S> {
pub(super) fn sql_function_to_expr(
&self,
function: SQLFunction,
schema: &DFSchema,
planner_context: &mut PlannerContext,
) -> Result<Expr> {
let function_args = FunctionArgs::try_new(function)?;
let FunctionArgs {
name,
args,
order_by,
over,
filter,
null_treatment,
distinct,
} = function_args;
// If function is a window function (it has an OVER clause),
// it shouldn't have ordering requirement as function argument
// required ordering should be defined in OVER clause.
let is_function_window = over.is_some();
let sql_parser_span = name.0[0].span;
let name = if name.0.len() > 1 {
// DF doesn't handle compound identifiers
// (e.g. "foo.bar") for function names yet
name.to_string()
} else {
crate::utils::normalize_ident(name.0[0].clone())
};
if name.eq("make_map") {
let mut fn_args =
self.function_args_to_expr(args.clone(), schema, planner_context)?;
for planner in self.context_provider.get_expr_planners().iter() {
match planner.plan_make_map(fn_args)? {
PlannerResult::Planned(expr) => return Ok(expr),
PlannerResult::Original(args) => fn_args = args,
}
}
}
// User-defined function (UDF) should have precedence
if let Some(fm) = self.context_provider.get_function_meta(&name) {
let args = self.function_args_to_expr(args, schema, planner_context)?;
return Ok(Expr::ScalarFunction(ScalarFunction::new_udf(fm, args)));
}
// Build Unnest expression
if name.eq("unnest") {
let mut exprs = self.function_args_to_expr(args, schema, planner_context)?;
if exprs.len() != 1 {
return plan_err!("unnest() requires exactly one argument");
}
let expr = exprs.swap_remove(0);
Self::check_unnest_arg(&expr, schema)?;
return Ok(Expr::Unnest(Unnest::new(expr)));
}
if !order_by.is_empty() && is_function_window {
return plan_err!(
"Aggregate ORDER BY is not implemented for window functions"
);
}
// Then, window function
if let Some(WindowType::WindowSpec(window)) = over {
let partition_by = window
.partition_by
.into_iter()
// Ignore window spec PARTITION BY for scalar values
// as they do not change and thus do not generate new partitions
.filter(|e| !matches!(e, sqlparser::ast::Expr::Value { .. },))
.map(|e| self.sql_expr_to_logical_expr(e, schema, planner_context))
.collect::<Result<Vec<_>>>()?;
let mut order_by = self.order_by_to_sort_expr(
window.order_by,
schema,
planner_context,
// Numeric literals in window function ORDER BY are treated as constants
false,
None,
)?;
let func_deps = schema.functional_dependencies();
// Find whether ties are possible in the given ordering
let is_ordering_strict = order_by.iter().find_map(|orderby_expr| {
if let Expr::Column(col) = &orderby_expr.expr {
let idx = schema.index_of_column(col).ok()?;
return if func_deps.iter().any(|dep| {
dep.source_indices == vec![idx] && dep.mode == Dependency::Single
}) {
Some(true)
} else {
Some(false)
};
}
Some(false)
});
let window_frame = window
.window_frame
.as_ref()
.map(|window_frame| {
let window_frame: WindowFrame = window_frame.clone().try_into()?;
window_frame
.regularize_order_bys(&mut order_by)
.map(|_| window_frame)
})
.transpose()?;
let window_frame = if let Some(window_frame) = window_frame {
window_frame
} else if let Some(is_ordering_strict) = is_ordering_strict {
WindowFrame::new(Some(is_ordering_strict))
} else {
WindowFrame::new((!order_by.is_empty()).then_some(false))
};
if let Ok(fun) = self.find_window_func(&name) {
let args = self.function_args_to_expr(args, schema, planner_context)?;
let mut window_expr = RawWindowExpr {
func_def: fun,
args,
partition_by,
order_by,
window_frame,
null_treatment,
};
for planner in self.context_provider.get_expr_planners().iter() {
match planner.plan_window(window_expr)? {
PlannerResult::Planned(expr) => return Ok(expr),
PlannerResult::Original(expr) => window_expr = expr,
}
}
let RawWindowExpr {
func_def,
args,
partition_by,
order_by,
window_frame,
null_treatment,
} = window_expr;
return Expr::WindowFunction(expr::WindowFunction::new(func_def, args))
.partition_by(partition_by)
.order_by(order_by)
.window_frame(window_frame)
.null_treatment(null_treatment)
.build();
}
} else {
// User defined aggregate functions (UDAF) have precedence in case it has the same name as a scalar built-in function
if let Some(fm) = self.context_provider.get_aggregate_meta(&name) {
// Reject RESPECT NULLS and IGNORE NULLS for aggregate functions
// See https://github.com/apache/datafusion/issues/15006
if null_treatment.is_some() {
return plan_err!("RESPECT NULLS and IGNORE NULLS are not supported for aggregate functions");
}
let order_by = self.order_by_to_sort_expr(
order_by,
schema,
planner_context,
true,
None,
)?;
let order_by = (!order_by.is_empty()).then_some(order_by);
let args = self.function_args_to_expr(args, schema, planner_context)?;
let filter: Option<Box<Expr>> = filter
.map(|e| self.sql_expr_to_logical_expr(*e, schema, planner_context))
.transpose()?
.map(Box::new);
let mut aggregate_expr = RawAggregateExpr {
func: fm,
args,
distinct,
filter,
order_by,
null_treatment: None, // See https://github.com/apache/datafusion/issues/15006
};
for planner in self.context_provider.get_expr_planners().iter() {
match planner.plan_aggregate(aggregate_expr)? {
PlannerResult::Planned(expr) => return Ok(expr),
PlannerResult::Original(expr) => aggregate_expr = expr,
}
}
let RawAggregateExpr {
func,
args,
distinct,
filter,
order_by,
null_treatment,
} = aggregate_expr;
return Ok(Expr::AggregateFunction(expr::AggregateFunction::new_udf(
func,
args,
distinct,
filter,
order_by,
null_treatment,
)));
}
}
// Could not find the relevant function, so return an error
if let Some(suggested_func_name) =
suggest_valid_function(&name, is_function_window, self.context_provider)
{
plan_err!("Invalid function '{name}'.\nDid you mean '{suggested_func_name}'?")
.map_err(|e| {
let span = Span::try_from_sqlparser_span(sql_parser_span);
let mut diagnostic =
Diagnostic::new_error(format!("Invalid function '{name}'"), span);
diagnostic.add_note(
format!("Possible function '{}'", suggested_func_name),
None,
);
e.with_diagnostic(diagnostic)
})
} else {
internal_err!("No functions registered with this context.")
}
}
pub(super) fn sql_fn_name_to_expr(
&self,
expr: SQLExpr,
fn_name: &str,
schema: &DFSchema,
planner_context: &mut PlannerContext,
) -> Result<Expr> {
let fun = self
.context_provider
.get_function_meta(fn_name)
.ok_or_else(|| {
internal_datafusion_err!("Unable to find expected '{fn_name}' function")
})?;
let args = vec![self.sql_expr_to_logical_expr(expr, schema, planner_context)?];
Ok(Expr::ScalarFunction(ScalarFunction::new_udf(fun, args)))
}
pub(super) fn find_window_func(
&self,
name: &str,
) -> Result<WindowFunctionDefinition> {
// Check udaf first
let udaf = self.context_provider.get_aggregate_meta(name);
// Use the builtin window function instead of the user-defined aggregate function
if udaf.as_ref().is_some_and(|udaf| {
udaf.name() != "first_value"
&& udaf.name() != "last_value"
&& udaf.name() != "nth_value"
}) {
Ok(WindowFunctionDefinition::AggregateUDF(udaf.unwrap()))
} else {
self.context_provider
.get_window_meta(name)
.map(WindowFunctionDefinition::WindowUDF)
.ok_or_else(|| {
plan_datafusion_err!("There is no window function named {name}")
})
}
}
fn sql_fn_arg_to_logical_expr(
&self,
sql: FunctionArg,
schema: &DFSchema,
planner_context: &mut PlannerContext,
) -> Result<Expr> {
match sql {
FunctionArg::Named {
name: _,
arg: FunctionArgExpr::Expr(arg),
operator: _,
} => self.sql_expr_to_logical_expr(arg, schema, planner_context),
FunctionArg::Named {
name: _,
arg: FunctionArgExpr::Wildcard,
operator: _,
} => Ok(wildcard()),
FunctionArg::Unnamed(FunctionArgExpr::Expr(arg)) => {
self.sql_expr_to_logical_expr(arg, schema, planner_context)
}
FunctionArg::Unnamed(FunctionArgExpr::Wildcard) => Ok(wildcard()),
FunctionArg::Unnamed(FunctionArgExpr::QualifiedWildcard(object_name)) => {
let qualifier = self.object_name_to_table_reference(object_name)?;
// Sanity check on qualifier with schema
let qualified_indices = schema.fields_indices_with_qualified(&qualifier);
if qualified_indices.is_empty() {
return plan_err!("Invalid qualifier {qualifier}");
}
Ok(qualified_wildcard(qualifier))
}
_ => not_impl_err!("Unsupported qualified wildcard argument: {sql:?}"),
}
}
pub(super) fn function_args_to_expr(
&self,
args: Vec<FunctionArg>,
schema: &DFSchema,
planner_context: &mut PlannerContext,
) -> Result<Vec<Expr>> {
args.into_iter()
.map(|a| self.sql_fn_arg_to_logical_expr(a, schema, planner_context))
.collect::<Result<Vec<Expr>>>()
}
pub(crate) fn check_unnest_arg(arg: &Expr, schema: &DFSchema) -> Result<()> {
// Check argument type, array types are supported
match arg.get_type(schema)? {
DataType::List(_)
| DataType::LargeList(_)
| DataType::FixedSizeList(_, _)
| DataType::Struct(_) => Ok(()),
DataType::Null => {
not_impl_err!("unnest() does not support null yet")
}
_ => {
plan_err!("unnest() can only be applied to array, struct and null")
}
}
}
}