We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83acc8c commit 383602cCopy full SHA for 383602c
datafusion/sqllogictest/test_files/create_function.slt
@@ -37,7 +37,6 @@ CREATE FUNCTION foo.bar (DOUBLE) RETURNS DOUBLE RETURN $1 + $2;
37
statement error DataFusion error: This feature is not implemented: Qualified functions are not supported
38
DROP FUNCTION foo.bar;
39
40
-
41
# Show it is possible to drop existing (UDF) functions
42
query I
43
select abs(-1);
@@ -49,12 +48,8 @@ statement ok
49
48
DROP FUNCTION abs;
50
51
# now the the query errors
52
-query error
+query error Invalid function 'abs'.
53
54
-----
55
-DataFusion error: Error during planning: Invalid function 'abs'.
56
-Did you mean 'cos'?
57
58
59
# Can't drop the function again
60
statement error DataFusion error: Execution error: Function does not exist
0 commit comments