diff --git a/sql/core/src/test/resources/sql-tests/results/udaf.sql.out b/sql/core/src/test/resources/sql-tests/results/udaf.sql.out deleted file mode 100644 index 0605af1c808db..0000000000000 --- a/sql/core/src/test/resources/sql-tests/results/udaf.sql.out +++ /dev/null @@ -1,67 +0,0 @@ --- Automatically generated by SQLQueryTestSuite --- !query -CREATE OR REPLACE TEMPORARY VIEW t1 AS SELECT * FROM VALUES -(1), (2), (3), (4) -as t1(int_col1) --- !query schema -struct<> --- !query output - - - --- !query -CREATE FUNCTION myDoubleAvg AS 'test.org.apache.spark.sql.MyDoubleAvg' --- !query schema -struct<> --- !query output - - - --- !query -SELECT default.myDoubleAvg(int_col1) as my_avg from t1 --- !query schema -struct --- !query output -102.5 - - --- !query -SELECT default.myDoubleAvg(int_col1, 3) as my_avg from t1 --- !query schema -struct<> --- !query output -org.apache.spark.sql.AnalysisException -Invalid number of arguments for function spark_catalog.default.mydoubleavg. Expected: 1; Found: 2; line 1 pos 7 - - --- !query -CREATE FUNCTION udaf1 AS 'test.non.existent.udaf' --- !query schema -struct<> --- !query output - - - --- !query -SELECT default.udaf1(int_col1) as udaf1 from t1 --- !query schema -struct<> --- !query output -org.apache.spark.sql.AnalysisException -Can not load class 'test.non.existent.udaf' when registering the function 'spark_catalog.default.udaf1', please make sure it is on the classpath; line 1 pos 7 - - --- !query -DROP FUNCTION myDoubleAvg --- !query schema -struct<> --- !query output - - - --- !query -DROP FUNCTION udaf1 --- !query schema -struct<> --- !query output -