postgresql modules: fix examples to use FQCN (#643)

This commit is contained in:
Andrew Klychkov 2020-07-13 12:54:34 +03:00 committed by GitHub
parent a424ee71e3
commit f62b8027e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 138 additions and 138 deletions

View file

@ -95,12 +95,12 @@ extends_documentation_fragment:
EXAMPLES = r'''
- name: Create a new publication with name "acme" targeting all tables in database "test".
postgresql_publication:
community.general.postgresql_publication:
db: test
name: acme
- name: Create publication "acme" publishing only prices and vehicles tables.
postgresql_publication:
community.general.postgresql_publication:
name: acme
tables:
- prices
@ -109,7 +109,7 @@ EXAMPLES = r'''
- name: >
Create publication "acme", set user alice as an owner, targeting all tables.
Allowable DML operations are INSERT and UPDATE only
postgresql_publication:
community.general.postgresql_publication:
name: acme
owner: alice
parameters:
@ -118,7 +118,7 @@ EXAMPLES = r'''
- name: >
Assuming publication "acme" exists and there are targeted
tables "prices" and "vehicles", add table "stores" to the publication.
postgresql_publication:
community.general.postgresql_publication:
name: acme
tables:
- prices
@ -126,7 +126,7 @@ EXAMPLES = r'''
- stores
- name: Remove publication "acme" if exists in database "test".
postgresql_publication:
community.general.postgresql_publication:
db: test
name: acme
state: absent