Commit f29a0044 authored by Peter Eisentraut's avatar Peter Eisentraut

Remove whitespace from end of lines

parent a559ed5e
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
</para> </para>
<para> <para>
In order to function, this module must be loaded via In order to function, this module must be loaded via
<xref linkend="guc-shared-preload-libraries"> in <filename>postgresql.conf</>. <xref linkend="guc-shared-preload-libraries"> in <filename>postgresql.conf</>.
</para> </para>
......
...@@ -790,7 +790,7 @@ NUMERIC ...@@ -790,7 +790,7 @@ NUMERIC
</indexterm> </indexterm>
<para> <para>
The data types <type>smallserial</type>, <type>serial</type> and The data types <type>smallserial</type>, <type>serial</type> and
<type>bigserial</type> are not true types, but merely <type>bigserial</type> are not true types, but merely
a notational convenience for creating unique identifier columns a notational convenience for creating unique identifier columns
(similar to the <literal>AUTO_INCREMENT</literal> property (similar to the <literal>AUTO_INCREMENT</literal> property
...@@ -3898,7 +3898,7 @@ SELECT to_tsvector( 'postgraduate' ) @@ to_tsquery( 'postgres:*' ); ...@@ -3898,7 +3898,7 @@ SELECT to_tsvector( 'postgraduate' ) @@ to_tsquery( 'postgres:*' );
t t
(1 row) (1 row)
</programlisting> </programlisting>
because <literal>postgres</> gets stemmed to <literal>postgr</>: because <literal>postgres</> gets stemmed to <literal>postgr</>:
<programlisting> <programlisting>
SELECT to_tsquery('postgres:*'); SELECT to_tsquery('postgres:*');
to_tsquery to_tsquery
......
...@@ -872,7 +872,7 @@ primary_conninfo = 'host=192.168.1.50 port=5432 user=foo password=foopass' ...@@ -872,7 +872,7 @@ primary_conninfo = 'host=192.168.1.50 port=5432 user=foo password=foopass'
<literal>pg_stat_replication</></link> view. Large differences between <literal>pg_stat_replication</></link> view. Large differences between
<function>pg_current_xlog_location</> and <literal>sent_location</> field <function>pg_current_xlog_location</> and <literal>sent_location</> field
might indicate that the master server is under heavy load, while might indicate that the master server is under heavy load, while
differences between <literal>sent_location</> and differences between <literal>sent_location</> and
<function>pg_last_xlog_receive_location</> on the standby might indicate <function>pg_last_xlog_receive_location</> on the standby might indicate
network delay, or that the standby is under heavy load. network delay, or that the standby is under heavy load.
</para> </para>
......
...@@ -49,8 +49,8 @@ ...@@ -49,8 +49,8 @@
<xref linkend="installation-notes-mingw"> and <xref linkend="installation-notes-cygwin">. <xref linkend="installation-notes-mingw"> and <xref linkend="installation-notes-cygwin">.
To produce native 64 bit binaries in these environments, use the tools from To produce native 64 bit binaries in these environments, use the tools from
<productname>MinGW-w64</productname>. These tools can also be used to <productname>MinGW-w64</productname>. These tools can also be used to
cross-compile for 32 bit and 64 bit <productname>Windows</productname> cross-compile for 32 bit and 64 bit <productname>Windows</productname>
targets on other hosts, such as <productname>Linux</productname> and targets on other hosts, such as <productname>Linux</productname> and
<productname>Darwin</productname>. <productname>Darwin</productname>.
<productname>Cygwin</productname> is not recommended for running a <productname>Cygwin</productname> is not recommended for running a
production server, and it should only be used for running on production server, and it should only be used for running on
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
</para> </para>
<para> <para>
Native builds of <application>psql</application> don't support command Native builds of <application>psql</application> don't support command
line editing. The <productname>Cygwin</productname> build does support line editing. The <productname>Cygwin</productname> build does support
command line editing, so it should be used where psql is needed for command line editing, so it should be used where psql is needed for
interactive use on <productname>Windows</productname>. interactive use on <productname>Windows</productname>.
......
...@@ -294,7 +294,7 @@ NET STOP pgsql-8.3 (<productname>PostgreSQL</> 8.3 and older used a different s ...@@ -294,7 +294,7 @@ NET STOP pgsql-8.3 (<productname>PostgreSQL</> 8.3 and older used a different s
<application>pg_upgrade</> requires the specification of the old and new cluster's <application>pg_upgrade</> requires the specification of the old and new cluster's
data and executable (<filename>bin</>) directories. You can also specify data and executable (<filename>bin</>) directories. You can also specify
user and port values, and whether you want the data linked instead of user and port values, and whether you want the data linked instead of
copied (the default). copied (the default).
</para> </para>
<para> <para>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
DROP FOREIGN TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> [, ...] [ CASCADE | RESTRICT ] DROP FOREIGN TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> [, ...] [ CASCADE | RESTRICT ]
</synopsis> </synopsis>
</refsynopsisdiv> </refsynopsisdiv>
<refsect1> <refsect1>
<title>Description</title> <title>Description</title>
...@@ -30,7 +30,7 @@ DROP FOREIGN TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceabl ...@@ -30,7 +30,7 @@ DROP FOREIGN TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceabl
Only the owner of a foreign table can remove it. Only the owner of a foreign table can remove it.
</para> </para>
</refsect1> </refsect1>
<refsect1> <refsect1>
<title>Parameters</title> <title>Parameters</title>
...@@ -80,14 +80,14 @@ DROP FOREIGN TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceabl ...@@ -80,14 +80,14 @@ DROP FOREIGN TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceabl
<title>Examples</title> <title>Examples</title>
<para> <para>
To destroy two foreign tables, <literal>films</literal> and To destroy two foreign tables, <literal>films</literal> and
<literal>distributors</literal>: <literal>distributors</literal>:
<programlisting> <programlisting>
DROP FOREIGN TABLE films, distributors; DROP FOREIGN TABLE films, distributors;
</programlisting></para> </programlisting></para>
</refsect1> </refsect1>
<refsect1> <refsect1>
<title>Compatibility</title> <title>Compatibility</title>
......
...@@ -140,14 +140,14 @@ GRANT <replaceable class="PARAMETER">role_name</replaceable> [, ...] TO <replace ...@@ -140,14 +140,14 @@ GRANT <replaceable class="PARAMETER">role_name</replaceable> [, ...] TO <replace
<para> <para>
PostgreSQL grants default privileges on some types of objects to PostgreSQL grants default privileges on some types of objects to
<literal>PUBLIC</literal>. No privileges are granted to <literal>PUBLIC</literal>. No privileges are granted to
<literal>PUBLIC</literal> by default on tables, <literal>PUBLIC</literal> by default on tables,
columns, schemas or tablespaces. For other types, the default privileges columns, schemas or tablespaces. For other types, the default privileges
granted to <literal>PUBLIC</literal> are as follows: granted to <literal>PUBLIC</literal> are as follows:
<literal>CONNECT</literal> and <literal>CREATE TEMP TABLE</literal> for <literal>CONNECT</literal> and <literal>CREATE TEMP TABLE</literal> for
databases; <literal>EXECUTE</literal> privilege for functions; and databases; <literal>EXECUTE</literal> privilege for functions; and
<literal>USAGE</literal> privilege for languages. <literal>USAGE</literal> privilege for languages.
The object owner can, of course, <command>REVOKE</command> The object owner can, of course, <command>REVOKE</command>
both default and expressly granted privileges. (For maximum both default and expressly granted privileges. (For maximum
security, issue the <command>REVOKE</> in the same transaction that security, issue the <command>REVOKE</> in the same transaction that
creates the object; then there is no window in which another user creates the object; then there is no window in which another user
......
...@@ -745,7 +745,7 @@ PostgreSQL documentation ...@@ -745,7 +745,7 @@ PostgreSQL documentation
<para> <para>
Note that the single-user mode server does not provide sophisticated Note that the single-user mode server does not provide sophisticated
line-editing features (no command history, for example). line-editing features (no command history, for example).
Single-User mode also does not do any background processing, like Single-User mode also does not do any background processing, like
automatic checkpoints. automatic checkpoints.
......
...@@ -147,7 +147,7 @@ $ for DBNAME in template0 template1 postgres; do ...@@ -147,7 +147,7 @@ $ for DBNAME in template0 template1 postgres; do
Second, build and install the policy package for the regression test. Second, build and install the policy package for the regression test.
The <filename>sepgsql-regtest.pp</> is a special purpose policy package The <filename>sepgsql-regtest.pp</> is a special purpose policy package
which provides a set of rules to be allowed during the regression tests. which provides a set of rules to be allowed during the regression tests.
It should be built from the policy source file It should be built from the policy source file
(<filename>sepgsql-regtest.te</>), which is normally done using (<filename>sepgsql-regtest.te</>), which is normally done using
<command>make</command>. You will need to locate the appropriate <command>make</command>. You will need to locate the appropriate
Makefile on your system; the path shown below is only an example. Makefile on your system; the path shown below is only an example.
......
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