Skip to content

Commit d80031f

Browse files
hello-stephenstephen
and
stephen
authored
[fix](case) try to drop function before create it (#41828)
bp: #41603 Co-authored-by: stephen <hello-stephen@qq.com>
1 parent 6ef819d commit d80031f

File tree

1 file changed

+4
-1
lines changed
  • regression-test/suites/javaudf_p0/function_meta

1 file changed

+4
-1
lines changed

regression-test/suites/javaudf_p0/function_meta/load.groovy

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@
3232

3333
log.info("Jar path: ${jarPath}".toString())
3434
sql """ DROP TABLE IF EXISTS ${tableName} """
35-
sql """DROP FUNCTION IF EXISTS function_query_test(int);"""
35+
sql """DROP FUNCTION IF EXISTS java_udf_int_test(int);"""
36+
sql """DROP FUNCTION IF EXISTS udaf_my_sum_int(int);"""
37+
sql """DROP FUNCTION IF EXISTS udtf_int(int);"""
38+
sql """DROP FUNCTION IF EXISTS java_udf_int_test_global_2(int);"""
3639
sql """
3740
CREATE TABLE IF NOT EXISTS ${tableName} (
3841
`user_id` INT NOT NULL COMMENT ""

0 commit comments

Comments
 (0)