Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Chitti-Ankith committed Oct 27, 2023
1 parent 53bc5c9 commit 566918c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def test_lower_function(self):
def test_concat_function(self):
function_name = "CONCAT"
execute_query_fetch_all(self.evadb, f"DROP FUNCTION IF EXISTS {function_name};")
create_function_query = """CREATE FUNCTION IF NOT EXISTS {function_name}
create_function_query = f"""CREATE FUNCTION IF NOT EXISTS {function_name}
INPUT (inp ANYTYPE)
OUTPUT (output ANYTYPE)
TYPE HelperFunction
Expand Down

0 comments on commit 566918c

Please sign in to comment.