1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-27 00:12:01 +03:00

Use "backend process" rather than "backend server", where appropriate.

This commit is contained in:
Bruce Momjian
2011-03-12 09:38:56 -05:00
parent 3a3f39fdc0
commit 94fe9c0f4e
7 changed files with 12 additions and 12 deletions

View File

@@ -264,8 +264,8 @@ INSERT INTO weather (date, city, temp_hi, temp_lo)
COPY weather FROM '/home/user/weather.txt';
</programlisting>
where the file name for the source file must be available to the
backend server machine, not the client, since the backend server
where the file name for the source file must be available on the
machine running the backend process, not the client, since the backend process
reads the file directly. You can read more about the
<command>COPY</command> command in <xref linkend="sql-copy">.
</para>