You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: datafusion/sqllogictest/test_files/scalar.slt
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1874,6 +1874,16 @@ SELECT arrow_typeof(1, 1);
1874
1874
statement error Error during planning: No function matches the given name and argument types 'power\(Int64, Int64, Int64\)'. You might need to add explicit type casts.\n\tCandidate functions:\n\tpower\(Int64, Int64\)\n\tpower\(Float64, Float64\)
1875
1875
SELECT power(1, 2, 3);
1876
1876
1877
+
# The following functions need 1 argument
1878
+
statement error Error during planning: No function matches the given name and argument types 'abs\(\)'. You might need to add explicit type casts.\n\tCandidate functions:\n\tabs\(Any\)
1879
+
SELECT abs();
1880
+
1881
+
statement error Error during planning: No function matches the given name and argument types 'acos\(\)'. You might need to add explicit type casts.\n\tCandidate functions:\n\tacos\(Float64/Float32\)
1882
+
SELECT acos();
1883
+
1884
+
statement error Error during planning: No function matches the given name and argument types 'isnan\(\)'. You might need to add explicit type casts.\n\tCandidate functions:\n\tisnan\(Float32\)\n\tisnan\(Float64\)
1885
+
SELECT isnan();
1886
+
1877
1887
# turn off enable_ident_normalization
1878
1888
statement ok
1879
1889
set datafusion.sql_parser.enable_ident_normalization = false;
0 commit comments