myt/exporters/procedure.ejs

15 lines
345 B
Plaintext
Raw Normal View History

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