Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix](case) try to drop function before create it #41603

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion regression-test/suites/javaudf_p0/function_meta/load.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
Expand Down
Loading