postgresql_copy: add seealso section (#61314)

This commit is contained in:
Andrey Klychkov 2019-08-27 10:10:59 +03:00 committed by Felix Fontein
parent c0046e7f52
commit cca95e323d

View file

@ -18,7 +18,7 @@ DOCUMENTATION = r'''
module: postgresql_copy
short_description: Copy data between a file/program and a PostgreSQL table
description:
- Copy data between a file/program and a PostgreSQL table U(https://www.postgresql.org/docs/current/sql-copy.html).
- Copy data between a file/program and a PostgreSQL table.
version_added: '2.9'
options:
@ -84,6 +84,11 @@ notes:
will execute it and rolled the transaction back but pay attention
it can affect database performance (e.g., if SQL collects a lot of data).
seealso:
- name: COPY command reference
description: Complete reference of the COPY command documentation.
link: https://www.postgresql.org/docs/current/sql-copy.html
author:
- Andrew Klychkov (@Andersson007)