Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xzhseh committed Feb 21, 2024
1 parent a4cf35a commit ce30232
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e_test/udf/sql_udf.slt
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ In SQL UDF definition: `select i_am_valid + _this_is_invalid_please_properly_mar
statement error
create function call_non_existent_function(INT) returns int language sql as 'select 1 + non_existent(1) + 1';
----
db error: ERROR: Failed to run the query
db error: ERROR: Failed to run the query

Caused by:
Invalid input syntax: Failed to conduct semantic check
Expand All @@ -351,7 +351,7 @@ In SQL UDF definition: `select 1 + non_existent(1) + 1`
statement error
create function param_func_mix(a INT, b INT) returns int language sql as 'select a + b + c + not_be_displayed(c)';
----
db error: ERROR: Failed to run the query
db error: ERROR: Failed to run the query

Caused by:
Invalid input syntax: Failed to conduct semantic check
Expand All @@ -367,7 +367,7 @@ create function call_regexp_replace() returns varchar language sql as 'select re
statement error
create function recursive(INT, INT) returns int language sql as 'select recursive($1, $2) + recursive($1, $2)';
----
ERROR: Failed to run the query
db error: ERROR: Failed to run the query

Caused by:
Invalid input syntax: Failed to conduct semantic check
Expand Down

0 comments on commit ce30232

Please sign in to comment.