File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
datafusion/sqllogictest/test_files Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ CREATE FUNCTION foo.bar (DOUBLE) RETURNS DOUBLE RETURN $1 + $2;
37
37
statement error DataFusion error: This feature is not implemented: Qualified functions are not supported
38
38
DROP FUNCTION foo.bar;
39
39
40
-
41
40
# Show it is possible to drop existing (UDF) functions
42
41
query I
43
42
select abs(-1);
@@ -49,12 +48,8 @@ statement ok
49
48
DROP FUNCTION abs;
50
49
51
50
# now the the query errors
52
- query error
51
+ query error Invalid function 'abs'.
53
52
select abs(-1);
54
- ----
55
- DataFusion error: Error during planning: Invalid function 'abs'.
56
- Did you mean 'cos'?
57
-
58
53
59
54
# Can't drop the function again
60
55
statement error DataFusion error: Execution error: Function does not exist
You can’t perform that action at this time.
0 commit comments