Commit ebb5457c authored by Tomas Vondra's avatar Tomas Vondra

Minor fixes in COPY progress docs

Author: Justin Pryzby
Discussion: https://postgr.es/m/CAFp7Qwr6_FmRM6pCO0x_a0mymOfX_Gg+FEKet4XaTGSW=LitKQ@mail.gmail.com
parent 0650ff23
...@@ -6414,9 +6414,9 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid, ...@@ -6414,9 +6414,9 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
<para> <para>
Whenever <command>COPY</command> is running, the Whenever <command>COPY</command> is running, the
<structname>pg_stat_progress_copy</structname> view will contain one row <structname>pg_stat_progress_copy</structname> view will contain one row
for each backend that is currently running <command>COPY</command> command. for each backend that is currently running a <command>COPY</command> command.
The table bellow describes the information that will be reported and provide The table below describes the information that will be reported and provides
information how to interpret it. information about how to interpret it.
</para> </para>
<table id="pg-stat-progress-copy-view" xreflabel="pg_stat_progress_copy"> <table id="pg-stat-progress-copy-view" xreflabel="pg_stat_progress_copy">
...@@ -6445,7 +6445,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid, ...@@ -6445,7 +6445,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
<row> <row>
<entry role="catalog_table_entry"><para role="column_definition"> <entry role="catalog_table_entry"><para role="column_definition">
<structfield>datid</structfield> <type>text</type> <structfield>datid</structfield> <type>oid</type>
</para> </para>
<para> <para>
OID of the database to which this backend is connected. OID of the database to which this backend is connected.
...@@ -6467,7 +6467,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid, ...@@ -6467,7 +6467,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
</para> </para>
<para> <para>
OID of the table on which the <command>COPY</command> command is executed. OID of the table on which the <command>COPY</command> command is executed.
It is set to 0 if <command>SELECT</command> query is provided. It is set to 0 if copying from a <command>SELECT</command> query.
</para></entry> </para></entry>
</row> </row>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment