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
Originally raised with Spring Boot the org.springframework.jdbc.datasource.init.ScriptUtils#splitSqlScript method cannot deal with semicolons that are part of a stored procedure.
For example:
CREATEFUNCTIONcount_clients() RETURNS integer
LANGUAGE plpgsql
AS $$beginselectcount(*) from clients;
end;$$;