-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
module development: postgresql_funcs #348
Comments
@stefanvdm-em hello, thanks for the suggestion! Here are several things we should take a consideration when we think about adding new modules:
@stefanvdm-em if you have a draft of the module, you can submit it here, of course. If you don't have but want to write it, please take the above into consideration and the question whether |
Hi @Andersson007, Thank you for the feedback and guidance. I have started to work on a draft for |
@stefanvdm-em sounds like a plan, thank you! |
SUMMARY
Create, alter or drop PostgreSQL functions.
ISSUE TYPE
COMPONENT NAME
postgresql_funcs
ADDITIONAL INFORMATION
Example usage:
PROPOSED ANSIBLE ARGUMENTS
Considering the most basic and minimal usage of CREATE FUNCTION
we can see that we will always need:
From my limited personal use of PostgreSQL functions, I have used the following attributes the most:
My suggestion would be to include the above-mentioned arguments initially and then expand to include all remaining options later.
APPROACH
Since PostgreSQL functions are named objects, similar to tables, I think it best to base the development of postgresql_funcs on postgresql_table.
The text was updated successfully, but these errors were encountered: