myt/exporters/function.ejs

21 lines
488 B
Plaintext
Raw Normal View History

DROP FUNCTION IF EXISTS <%- schema %>.<%- name %>;
2020-11-14 01:38:56 +00:00
DELIMITER $$
CREATE DEFINER=<%- definer %> FUNCTION <%- schema %>.<%- name %>(<%- locals.paramList %>)
2022-02-07 14:43:12 +00:00
RETURNS <%- returns %><%
if (locals.isDeterministic == 'NO') { %>
2022-02-07 14:43:12 +00:00
NOT DETERMINISTIC<%
} else { %>
DETERMINISTIC<%
}
if (locals.dataAccess) { %>
2022-02-07 14:43:12 +00:00
<%- dataAccess %><%
}
if (locals.securityType == 'INVOKER') { %>
2022-02-07 14:43:12 +00:00
SQL SECURITY <%- securityType %><%
}
if (locals.comment) { %>
2022-02-07 14:43:12 +00:00
COMMENT <%- comment %><%
} %>
2020-11-14 01:38:56 +00:00
<%- body %>$$
DELIMITER ;