Current section

Files

Jump to
ecto_gen priv eex_templates routine.ex.eex
Raw

priv/eex_templates/routine.ex.eex

<%= @function_spec %>
def <%= @function_name %>(<%= @input_params_with_default %>) do
Logger.debug("Calling stored procedure", procedure: "<%= @function_name %>")
Postgrex.query(
pid,
"select * from <%= @routine.schema %>.<%= @routine.name %>(<%= @sql_params %>)",
[<%= @input_params %>]
)
|> <%= @parse_function_name %>()
end