mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-19 08:51:25 -07:00
* modules: fix names with hyphens (#656) * modules: fix names with hyphens (#656) * Fix param name for postgresql_schema * Add double quotes for schema name * Add delete created DB objects * Fix module code * Set correct test tasks order Co-authored-by: Maxim Voskresenskiy <maxim.voskresenskiy@uptick.com>
This commit is contained in:
parent
4c4a6ab27c
commit
a0c8a3034a
4 changed files with 128 additions and 0 deletions
|
@ -766,6 +766,9 @@ class Connection(object):
|
|||
if target_roles:
|
||||
as_who = ','.join('"%s"' % r for r in target_roles)
|
||||
|
||||
if schema_qualifier:
|
||||
schema_qualifier = '"%s"' % schema_qualifier
|
||||
|
||||
status_before = get_status(objs)
|
||||
|
||||
query = QueryBuilder(state) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue