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

feat(sql-udf): support basic anonymous sql udf #14139

Merged
merged 28 commits into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
6e3f5d4
feat(sql-udf): support basic sql udf function
xzhseh Dec 21, 2023
bf57014
support anonymous sql udf
xzhseh Dec 26, 2023
16780b4
remove redundant code
xzhseh Dec 26, 2023
fa8fc7a
add basic test for anonymous sql udf
xzhseh Dec 26, 2023
5b5c82d
add more test cases for parser & sql_udf
xzhseh Dec 26, 2023
456d6fd
Merge branch 'main' into xzhseh/sql-udf
xzhseh Dec 27, 2023
94ebbda
feat(sql-udf): support basic anonymous sql udf return expression (#14…
xzhseh Dec 28, 2023
22ca504
Merge branch 'main' into xzhseh/sql-udf
xzhseh Dec 28, 2023
7084a6c
adjust test cases for some syntax when creating sql udfs
xzhseh Dec 28, 2023
fa0c44b
remove panic code && refactor some parts && add more comments
xzhseh Dec 29, 2023
2dde82e
add more test cases
xzhseh Dec 29, 2023
831a7b2
fix format && remove unnecessary file
xzhseh Dec 29, 2023
d5f6b7f
ignore language specification for general udf
xzhseh Dec 29, 2023
7e821f2
remove unused type checker
xzhseh Dec 29, 2023
8074636
forbid recursive definition
xzhseh Dec 29, 2023
44f8d46
refactor some parts
xzhseh Dec 29, 2023
a356566
fix format
xzhseh Dec 29, 2023
1c9b8ab
support nested sql udf calling
xzhseh Dec 29, 2023
2618a0b
fix check
xzhseh Dec 29, 2023
922c1e7
fix check
xzhseh Jan 1, 2024
cfb0a62
Merge branch 'main' into xzhseh/sql-udf
xzhseh Jan 1, 2024
9ccaa07
Merge branch 'main' into xzhseh/sql-udf
xzhseh Jan 2, 2024
c6d677b
update copyright
xzhseh Jan 2, 2024
88b00f1
update copyright
xzhseh Jan 2, 2024
53e53ff
remove unnecessary check & refactor
xzhseh Jan 2, 2024
d6c3d0d
feat(udf): add `body` field for udf body definition (#14300)
xzhseh Jan 2, 2024
199f04f
Merge branch 'main' into xzhseh/sql-udf
xzhseh Jan 2, 2024
d601ac8
Merge branch 'main' into xzhseh/sql-udf
xzhseh Jan 4, 2024
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
192 changes: 192 additions & 0 deletions e2e_test/udf/sql_udf.slt
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

QQ: Can prepared statements work correctly? And are there any tests?

Copy link
Member

@BugenZhao BugenZhao Jan 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be surprising but I couldn't find any e2e tests for the prepared statement itself. 😕

#14141

Copy link
Contributor Author

@xzhseh xzhseh Jan 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can prepared statements work correctly?

I think so, under current implementation the check of udf_context will be immediately cleared after bind_function, which ensure it will not interleave with the parameter bindings of prepare-related statements. (e.g., triggered by third party drivers, etc)

Original file line number Diff line number Diff line change
@@ -0,0 +1,192 @@
statement ok
SET RW_IMPLICIT_FLUSH TO true;

# Create an anonymous function with double dollar as clause
statement ok
create function add(INT, INT) returns int language sql as $$select $1 + $2$$;

# Create an anonymous function with single quote as clause
statement ok
create function sub(INT, INT) returns int language sql as 'select $1 - $2';

# Create an anonymous function that calls other pre-defined sql udfs
statement ok
create function add_sub_binding() returns int language sql as 'select add(1, 1) + sub(2, 2)';

# Create an anonymous function that calls built-in functions
# Note that double dollar signs should be used otherwise the parsing will fail, as illutrates below
statement ok
create function call_regexp_replace() returns varchar language sql as $$select regexp_replace('💩💩💩💩💩foo🤔️bar亲爱的😭baz这不是爱情❤️‍🔥', 'baz(...)', '这是🥵', 'ic')$$;

statement error Expected end of statement, found: 💩
create function call_regexp_replace() returns varchar language sql as 'select regexp_replace('💩💩💩💩💩foo🤔️bar亲爱的😭baz这不是爱情❤️‍🔥', 'baz(...)', '这是🥵', 'ic')';
Comment on lines +18 to +22
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😄


# Create an anonymous function with return expression
statement ok
create function add_return(INT, INT) returns int language sql return $1 + $2;

statement ok
create function add_return_binding() returns int language sql return add_return(1, 1) + add_return(1, 1);

# Recursive definition is forbidden
statement error recursive definition is forbidden, please recheck your function syntax
create function recursive(INT, INT) returns int language sql as 'select recursive($1, $2) + recursive($1, $2)';

# Create a wrapper function for `add` & `sub`
statement ok
create function add_sub_wrapper(INT, INT) returns int language sql as 'select add($1, $2) + sub($1, $2) + 114512';

# Call the defined sql udf
query I
select add(1, -1);
----
0

query I
select sub(1, 1);
----
0

query I
select add_sub_binding();
----
2

query III
select add(1, -1), sub(1, 1), add_sub_binding();
----
0 0 2

query I
select add_return(1, 1);
----
2

query I
select add_return_binding();
----
4

query T
select call_regexp_replace();
----
💩💩💩💩💩foo🤔️bar亲爱的😭这是🥵爱情❤️‍🔥

query I
select add_sub_wrapper(1, 1);
----
114514

# Create a mock table
statement ok
create table t1 (c1 INT, c2 INT);

# Insert some data into the mock table
statement ok
insert into t1 values (1, 1), (2, 2), (3, 3), (4, 4), (5, 5);

query III
select sub(c1, c2), c1, c2, add(c1, c2) from t1 order by c1 asc;
----
0 1 1 2
0 2 2 4
0 3 3 6
0 4 4 8
0 5 5 10

query I
select c1, c2, add_return(c1, c2) from t1 order by c1 asc;
----
1 1 2
2 2 4
3 3 6
4 4 8
5 5 10

# Invalid function body syntax
statement error Expected an expression:, found: EOF at the end
create function add_error(INT, INT) returns int language sql as $$select $1 + $2 +$$;

# Multiple type interleaving sql udf
statement ok
create function add_sub(INT, FLOAT, INT) returns float language sql as $$select -$1 + $2 - $3$$;

statement ok
create function add_sub_return(INT, FLOAT, INT) returns float language sql return -$1 + $2 - $3;

# Note: need EXPLICIT type cast in order to call the multiple types interleaving sql udf
xzhseh marked this conversation as resolved.
Show resolved Hide resolved
query I
select add_sub(1::INT, 5.1415926::FLOAT, 1::INT);
----
3.1415926

# Without EXPLICIT type cast
statement error unsupported function: "add_sub"
select add_sub(1, 3.14, 2);

# Same as above, need EXPLICIT type cast to make the binding works
query I
select add_sub_return(1::INT, 5.1415926::FLOAT, 1::INT);
----
3.1415926

query III
select add(1, -1), sub(1, 1), add_sub(1::INT, 5.1415926::FLOAT, 1::INT);
----
0 0 3.1415926

# Create another mock table
statement ok
create table t2 (c1 INT, c2 FLOAT, c3 INT);

statement ok
insert into t2 values (1, 3.14, 2), (2, 4.44, 5), (20, 10.30, 02);

query IIIIII
select c1, c2, c3, add(c1, c3), sub(c1, c3), add_sub(c1::INT, c2::FLOAT, c3::INT) from t2 order by c1 asc;
----
1 3.14 2 3 -1 0.14000000000000012
2 4.44 5 7 -3 -2.5599999999999996
20 10.3 2 22 18 -11.7

query IIIIII
select c1, c2, c3, add(c1, c3), sub(c1, c3), add_sub_return(c1::INT, c2::FLOAT, c3::INT) from t2 order by c1 asc;
----
1 3.14 2 3 -1 0.14000000000000012
2 4.44 5 7 -3 -2.5599999999999996
20 10.3 2 22 18 -11.7

# Drop the functions
statement ok
drop function add;

statement ok
drop function sub;

statement ok
drop function add_sub_binding;

statement ok
drop function add_sub;

statement ok
drop function add_sub_return;

statement ok
drop function add_return;

statement ok
drop function add_return_binding;

statement ok
drop function call_regexp_replace;

statement ok
drop function add_sub_wrapper;

# Drop the mock table
statement ok
drop table t1;

statement ok
drop table t2;
12 changes: 12 additions & 0 deletions src/frontend/src/binder/expr/column.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,18 @@ impl Binder {
}
};

// Special check for sql udf
xzhseh marked this conversation as resolved.
Show resolved Hide resolved
// Note: The check in `bind_column` is to inline the identifiers,
// which, in the context of sql udf, will NOT be perceived as normal
// columns, but the actual named input parameters.
// Thus, we need to figure out if the current "column name" corresponds
// to the name of the defined sql udf parameters stored in `udf_context`.
// If so, we will treat this bind as an special bind, the actual expression
// stored in `udf_context` will then be bound instead of binding the non-existing column.
if let Some(expr) = self.udf_context.get(&column_name) {
return self.bind_expr(expr.clone());
}

match self
.context
.get_column_binding_indices(&table_name, &column_name)
Expand Down
Loading
Loading