8 lines
286 B
Plaintext
Executable File
8 lines
286 B
Plaintext
Executable File
DROP FUNCTION IF EXISTS <%- schema %>.<%- name %>;
|
|
DELIMITER $$
|
|
CREATE DEFINER=<%- definer %> FUNCTION <%- schema %>.<%- name %>(<%- paramList %>)
|
|
RETURNS <%- returns %>
|
|
<% if (isDeterministic != 'NO') { %>DETERMINISTIC<% } else { %>NOT DETERMINISTIC<% } %>
|
|
<%- body %>$$
|
|
DELIMITER ;
|