You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATEFUNCTION_group_concat(text, text) RETURNS textAS $_$
SELECT CASE
WHEN $2 IS NULL THEN $1
WHEN $1 IS NULL THEN $2
ELSE $1||', '|| $2
END
$_$
LANGUAGE sql IMMUTABLE;
Discovered through testing the Sakila data dump.
The text was updated successfully, but these errors were encountered:
Initial support for CREATE FUNCTION has been released. We don't yet support all syntax for PL/pgSQL functions. Please open new issues requesting specific additional features for user-defined functions.
Doltgres does not yet support user-defined functions created through
CREATE FUNCTION
statements.Example from Sakila data dump:
Discovered through testing the Sakila data dump.
The text was updated successfully, but these errors were encountered: