Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit94fe9c0

Browse files
committed
Use "backend process" rather than "backend server", where appropriate.
1 parent3a3f39f commit94fe9c0

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

‎doc/src/sgml/libpq.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1612,7 +1612,7 @@ int PQsocket(const PGconn *conn);
16121612
<para>
16131613
Returns the process <acronym>ID</acronym>
16141614
(PID)<indexterm><primary>PID</><secondary>determining PID of
1615-
server process</><tertiary>in libpq</></> of the backend server
1615+
server process</><tertiary>in libpq</></> of the backend
16161616
process handling this connection.
16171617

16181618
<synopsis>

‎doc/src/sgml/problems.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
</listitem>
7979
</itemizedlist>
8080

81-
Here <quote>program</quote> refers to any executable, not only the backendserver.
81+
Here <quote>program</quote> refers to any executable, not only the backendprocess.
8282
</para>
8383

8484
<para>
@@ -280,9 +280,9 @@
280280
When writing a bug report, please avoid confusing terminology.
281281
The software package in total is called <quote>PostgreSQL</quote>,
282282
sometimes <quote>Postgres</quote> for short. If you
283-
are specifically talking about the backendserver, mention that, do not
283+
are specifically talking about the backendprocess, mention that, do not
284284
just say <quote>PostgreSQL crashes</quote>. A crash of a single
285-
backendserverprocess is quite different from crash of the parent
285+
backend process is quite different from crash of the parent
286286
<quote>postgres</> process; please don't say <quote>the server
287287
crashed</> when you mean a single backend process went down, nor vice versa.
288288
Also, client programs such as the interactive frontend <quote><application>psql</application></quote>

‎doc/src/sgml/query.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,8 @@ INSERT INTO weather (date, city, temp_hi, temp_lo)
264264
COPY weather FROM '/home/user/weather.txt';
265265
</programlisting>
266266

267-
where the file name for the source file must be availableto the
268-
backend server machine, not the client, since the backendserver
267+
where the file name for the source file must be availableon the
268+
machine running the backend process, not the client, since the backendprocess
269269
reads the file directly. You can read more about the
270270
<command>COPY</command> command in <xref linkend="sql-copy">.
271271
</para>

‎doc/src/sgml/ref/pg_ctl-ref.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ PostgreSQL documentation
134134
<application>pg_ctl</application> is a utility for initializing a
135135
<productname>PostgreSQL</productname> database cluster, starting,
136136
stopping, or restarting the <productname>PostgreSQL</productname>
137-
backend server (<xref linkend="app-postgres">), or displaying the
137+
database server (<xref linkend="app-postgres">), or displaying the
138138
status of a running server. Although the server can be started
139139
manually, <application>pg_ctl</application> encapsulates tasks such
140140
as redirecting log output and properly detaching from the terminal

‎src/backend/libpq/pqsignal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*how to handle signalling.
2323
*
2424
*signal(2) handling - this is here because it affects some of
25-
*the frontend commands as well as the backendserver.
25+
*the frontend commands as well as the backendprocesses.
2626
*
2727
*Ultrix and SunOS provide BSD signal(2) semantics by default.
2828
*

‎src/backend/main/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ help(const char *progname)
310310
printf(_(" -O allow system table structure changes\n"));
311311
printf(_(" -P disable system indexes\n"));
312312
printf(_(" -t pa|pl|ex show timings after each query\n"));
313-
printf(_(" -T send SIGSTOP to all backendservers if one dies\n"));
313+
printf(_(" -T send SIGSTOP to all backendprocesses if one dies\n"));
314314
printf(_(" -W NUM wait NUM seconds to allow attach from a debugger\n"));
315315

316316
printf(_("\nOptions for single-user mode:\n"));

‎src/test/examples/testlibpq4.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ main(int argc, char **argv)
7272
* defaults by looking up environment variables or, failing that, using
7373
* hardwired constants
7474
*/
75-
pghost=NULL;/* host name of the backendserver*/
76-
pgport=NULL;/* port of the backendserver*/
75+
pghost=NULL;/* host name of the backend */
76+
pgport=NULL;/* port of the backend */
7777
pgoptions=NULL;/* special options to start up the backend
7878
* server */
79-
pgtty=NULL;/* debugging tty for the backendserver*/
79+
pgtty=NULL;/* debugging tty for the backend */
8080

8181
/* make a connection to the database */
8282
conn1=PQsetdb(pghost,pgport,pgoptions,pgtty,dbName1);

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp