This is an automated email from the ASF dual-hosted git repository.

zhangstar333 pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new d80031fc683 [fix](case) try to drop function before create it (#41828)
d80031fc683 is described below

commit d80031fc68344ae6e442c7bb66eb757e7ae009dd
Author: Dongyang Li <[email protected]>
AuthorDate: Tue Oct 15 10:30:01 2024 +0800

    [fix](case) try to drop function before create it (#41828)
    
    bp: #41603
    
    Co-authored-by: stephen <[email protected]>
---
 regression-test/suites/javaudf_p0/function_meta/load.groovy | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/regression-test/suites/javaudf_p0/function_meta/load.groovy 
b/regression-test/suites/javaudf_p0/function_meta/load.groovy
index d9088446250..e63aced8b57 100644
--- a/regression-test/suites/javaudf_p0/function_meta/load.groovy
+++ b/regression-test/suites/javaudf_p0/function_meta/load.groovy
@@ -32,7 +32,10 @@
 
      log.info("Jar path: ${jarPath}".toString())
      sql """ DROP TABLE IF EXISTS ${tableName} """
-     sql """DROP FUNCTION IF EXISTS function_query_test(int);"""
+     sql """DROP FUNCTION IF EXISTS java_udf_int_test(int);"""
+     sql """DROP FUNCTION IF EXISTS udaf_my_sum_int(int);"""
+     sql """DROP FUNCTION IF EXISTS udtf_int(int);"""
+     sql """DROP FUNCTION IF EXISTS java_udf_int_test_global_2(int);"""
      sql """
      CREATE TABLE IF NOT EXISTS ${tableName} (
          `user_id`     INT         NOT NULL COMMENT ""


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to