Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
94fe9c0f
Commit
94fe9c0f
authored
Mar 12, 2011
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use "backend process" rather than "backend server", where appropriate.
parent
3a3f39fd
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
12 deletions
+12
-12
doc/src/sgml/libpq.sgml
doc/src/sgml/libpq.sgml
+1
-1
doc/src/sgml/problems.sgml
doc/src/sgml/problems.sgml
+3
-3
doc/src/sgml/query.sgml
doc/src/sgml/query.sgml
+2
-2
doc/src/sgml/ref/pg_ctl-ref.sgml
doc/src/sgml/ref/pg_ctl-ref.sgml
+1
-1
src/backend/libpq/pqsignal.c
src/backend/libpq/pqsignal.c
+1
-1
src/backend/main/main.c
src/backend/main/main.c
+1
-1
src/test/examples/testlibpq4.c
src/test/examples/testlibpq4.c
+3
-3
No files found.
doc/src/sgml/libpq.sgml
View file @
94fe9c0f
...
...
@@ -1612,7 +1612,7 @@ int PQsocket(const PGconn *conn);
<para>
Returns the process <acronym>ID</acronym>
(PID)<indexterm><primary>PID</><secondary>determining PID of
server process</><tertiary>in libpq</></> of the backend
server
server process</><tertiary>in libpq</></> of the backend
process handling this connection.
<synopsis>
...
...
doc/src/sgml/problems.sgml
View file @
94fe9c0f
...
...
@@ -78,7 +78,7 @@
</listitem>
</itemizedlist>
Here <quote>program</quote> refers to any executable, not only the backend
server
.
Here <quote>program</quote> refers to any executable, not only the backend
process
.
</para>
<para>
...
...
@@ -280,9 +280,9 @@
When writing a bug report, please avoid confusing terminology.
The software package in total is called <quote>PostgreSQL</quote>,
sometimes <quote>Postgres</quote> for short. If you
are specifically talking about the backend
server
, mention that, do not
are specifically talking about the backend
process
, mention that, do not
just say <quote>PostgreSQL crashes</quote>. A crash of a single
backend
server
process is quite different from crash of the parent
backend process is quite different from crash of the parent
<quote>postgres</> process; please don't say <quote>the server
crashed</> when you mean a single backend process went down, nor vice versa.
Also, client programs such as the interactive frontend <quote><application>psql</application></quote>
...
...
doc/src/sgml/query.sgml
View file @
94fe9c0f
...
...
@@ -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>
...
...
doc/src/sgml/ref/pg_ctl-ref.sgml
View file @
94fe9c0f
...
...
@@ -134,7 +134,7 @@ PostgreSQL documentation
<application>pg_ctl</application> is a utility for initializing a
<productname>PostgreSQL</productname> database cluster, starting,
stopping, or restarting the <productname>PostgreSQL</productname>
backend
server (<xref linkend="app-postgres">), or displaying the
database
server (<xref linkend="app-postgres">), or displaying the
status of a running server. Although the server can be started
manually, <application>pg_ctl</application> encapsulates tasks such
as redirecting log output and properly detaching from the terminal
...
...
src/backend/libpq/pqsignal.c
View file @
94fe9c0f
...
...
@@ -22,7 +22,7 @@
* how to handle signalling.
*
* signal(2) handling - this is here because it affects some of
* the frontend commands as well as the backend
server
.
* the frontend commands as well as the backend
processes
.
*
* Ultrix and SunOS provide BSD signal(2) semantics by default.
*
...
...
src/backend/main/main.c
View file @
94fe9c0f
...
...
@@ -310,7 +310,7 @@ help(const char *progname)
printf
(
_
(
" -O allow system table structure changes
\n
"
));
printf
(
_
(
" -P disable system indexes
\n
"
));
printf
(
_
(
" -t pa|pl|ex show timings after each query
\n
"
));
printf
(
_
(
" -T send SIGSTOP to all backend
server
s if one dies
\n
"
));
printf
(
_
(
" -T send SIGSTOP to all backend
processe
s if one dies
\n
"
));
printf
(
_
(
" -W NUM wait NUM seconds to allow attach from a debugger
\n
"
));
printf
(
_
(
"
\n
Options for single-user mode:
\n
"
));
...
...
src/test/examples/testlibpq4.c
View file @
94fe9c0f
...
...
@@ -72,11 +72,11 @@ main(int argc, char **argv)
* defaults by looking up environment variables or, failing that, using
* hardwired constants
*/
pghost
=
NULL
;
/* host name of the backend
server
*/
pgport
=
NULL
;
/* port of the backend
server
*/
pghost
=
NULL
;
/* host name of the backend */
pgport
=
NULL
;
/* port of the backend */
pgoptions
=
NULL
;
/* special options to start up the backend
* server */
pgtty
=
NULL
;
/* debugging tty for the backend
server
*/
pgtty
=
NULL
;
/* debugging tty for the backend */
/* make a connection to the database */
conn1
=
PQsetdb
(
pghost
,
pgport
,
pgoptions
,
pgtty
,
dbName1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment