@@ -422,10 +422,10 @@ mod math_functions {
422
422
select:: test_utils:: select_expr, BinaryOp , FunctionArg , FunctionArgType ,
423
423
} ;
424
424
425
- const CORE_FUNCTIONS : [ & str ; 26 ] = [
426
- "acos" , "acosh" , "asin" , "asinh" , "atan" , "atan2 " , "atanh " , "ceil " , "ceiling " , "cos " ,
427
- "cosh " , "degrees " , "exp " , "floor " , "ln " , "log " , "log10 " , "log2 " , "pi " , "radians " , "sin " ,
428
- "sinh" , "sqrt" , "tan" , " tanh", "trunc" ,
425
+ const CORE_FUNCTIONS : [ & str ; 23 ] = [
426
+ "acos" , "acosh" , "asin" , "asinh" , "atan" , "ceil " , "ceiling " , "cos " , "cosh " , "degrees " ,
427
+ "exp " , "floor " , "ln " , "log10 " , "log2 " , "pi " , "radians " , "sin " , "sinh " , "sqrt " , "tan " ,
428
+ "tanh" , "trunc" ,
429
429
] ;
430
430
431
431
#[ test]
@@ -453,7 +453,7 @@ mod math_functions {
453
453
454
454
#[ test]
455
455
fn functions_test2 ( ) {
456
- for function_name in [ "log" , "mod" , "pow" , "power" ] {
456
+ for function_name in [ "atan2" , " log", "mod" , "pow" , "power" ] {
457
457
run_sunny_day_test (
458
458
& format ! ( "SELECT {}(1+2, 3*4);" , function_name) ,
459
459
select_expr ( function (
0 commit comments