mirror of
https://github.com/postgres/postgres.git
synced 2025-12-21 05:21:08 +03:00
This patch makes some SGML markup more consistent and makes a small
improvement to the SSL auth docs.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.54 2003/11/29 19:51:38 pgsql Exp $
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.55 2003/12/13 23:59:07 neilc Exp $
|
||||
PostgreSQL documentation
|
||||
-->
|
||||
|
||||
@@ -584,8 +584,8 @@ ZW ZIMBABWE
|
||||
</para>
|
||||
|
||||
<para>
|
||||
The following syntax was used before PostgreSQL version 7.3 and is
|
||||
still supported:
|
||||
The following syntax was used before <productname>PostgreSQL</>
|
||||
version 7.3 and is still supported:
|
||||
|
||||
<synopsis>
|
||||
COPY [ BINARY ] <replaceable class="parameter">tablename</replaceable> [ WITH OIDS ]
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/create_table_as.sgml,v 1.18 2003/12/01 22:07:58 momjian Exp $
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/create_table_as.sgml,v 1.19 2003/12/13 23:59:07 neilc Exp $
|
||||
PostgreSQL documentation
|
||||
-->
|
||||
|
||||
@@ -125,17 +125,19 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable>table_name
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Prior to PostgreSQL 7.5, <command>CREATE TABLE AS</command> always
|
||||
included OIDs in the table it produced. Furthermore, these OIDs
|
||||
were newly generated: they were distinct from the OIDs of any of
|
||||
the rows in the source tables of the <command>SELECT</command> or
|
||||
<command>EXECUTE</command> statement. Therefore, if <command>CREATE
|
||||
TABLE AS</command> was frequently executed, the OID counter would
|
||||
be rapidly incremented. As of PostgreSQL 7.5, the inclusion of OIDs
|
||||
in the table generated by <command>CREATE TABLE AS</command> is
|
||||
controlled by the <varname>default_with_oids</varname> configuration
|
||||
variable. This variable currently defaults to true, but will likely
|
||||
default to false in a future release of <productname>PostgreSQL</>.
|
||||
Prior to <productname>PostgreSQL</> 7.5, <command>CREATE TABLE
|
||||
AS</command> always included OIDs in the table it
|
||||
produced. Furthermore, these OIDs were newly generated: they were
|
||||
distinct from the OIDs of any of the rows in the source tables of
|
||||
the <command>SELECT</command> or <command>EXECUTE</command>
|
||||
statement. Therefore, if <command>CREATE TABLE AS</command> was
|
||||
frequently executed, the OID counter would be rapidly
|
||||
incremented. As of <productname>PostgreSQL</> 7.5, the inclusion of
|
||||
OIDs in the table generated by <command>CREATE TABLE AS</command>
|
||||
is controlled by the <varname>default_with_oids</varname>
|
||||
configuration variable. This variable currently defaults to true,
|
||||
but will likely default to false in a future release of
|
||||
<productname>PostgreSQL</>.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/postmaster.sgml,v 1.42 2003/11/29 19:51:39 pgsql Exp $
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/postmaster.sgml,v 1.43 2003/12/13 23:59:07 neilc Exp $
|
||||
PostgreSQL documentation
|
||||
-->
|
||||
|
||||
@@ -452,17 +452,17 @@ PostgreSQL documentation
|
||||
</para>
|
||||
|
||||
<para>
|
||||
A failure message indicating inability to bind to a port may indicate
|
||||
that that port is already in use by some non-PostgreSQL process.
|
||||
You may also get this error if you terminate the
|
||||
<command>postmaster</command>
|
||||
and immediately restart it using the same port; in this case, you must
|
||||
simply wait a few seconds until the operating system closes the port
|
||||
before trying again. Finally, you may get this error if you specify
|
||||
a port number that your operating system considers to be reserved.
|
||||
For example, many versions of Unix consider port numbers under 1024 to
|
||||
be <quote>trusted</quote>
|
||||
and only permit the Unix superuser to access them.
|
||||
A failure message indicating inability to bind to a port may
|
||||
indicate that that port is already in use by some
|
||||
non-<productname>PostgreSQL</productname> process. You may also
|
||||
get this error if you terminate the <command>postmaster</command>
|
||||
and immediately restart it using the same port; in this case, you
|
||||
must simply wait a few seconds until the operating system closes
|
||||
the port before trying again. Finally, you may get this error if
|
||||
you specify a port number that your operating system considers to
|
||||
be reserved. For example, many versions of Unix consider port
|
||||
numbers under 1024 to be <quote>trusted</quote> and only permit
|
||||
the Unix superuser to access them.
|
||||
</para>
|
||||
|
||||
</refsect1>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/select_into.sgml,v 1.26 2003/12/01 22:07:58 momjian Exp $
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/select_into.sgml,v 1.27 2003/12/13 23:59:07 neilc Exp $
|
||||
PostgreSQL documentation
|
||||
-->
|
||||
|
||||
@@ -94,17 +94,18 @@ SELECT [ ALL | DISTINCT [ ON ( <replaceable class="PARAMETER">expression</replac
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Prior to PostgreSQL 7.5, the table created by <command>SELECT
|
||||
INTO</command> always included OIDs. Furthermore, these OIDs were
|
||||
newly generated: they were distinct from the OIDs of any of the
|
||||
rows in the source tables of the <command>SELECT INTO</command>
|
||||
statement. Therefore, if <command>SELECT INTO</command> was
|
||||
frequently executed, the OID counter would be rapidly
|
||||
incremented. As of PostgreSQL 7.5, the inclusion of OIDs in the
|
||||
table created by <command>SELECT INTO</command> is controlled by
|
||||
the <varname>default_with_oids</varname> configuration
|
||||
variable. This variable currently defaults to true, but will likely
|
||||
default to false in a future release of <productname>PostgreSQL</>.
|
||||
Prior to <productname>PostgreSQL</> 7.5, the table created by
|
||||
<command>SELECT INTO</command> always included OIDs. Furthermore,
|
||||
these OIDs were newly generated: they were distinct from the OIDs
|
||||
of any of the rows in the source tables of the <command>SELECT
|
||||
INTO</command> statement. Therefore, if <command>SELECT
|
||||
INTO</command> was frequently executed, the OID counter would be
|
||||
rapidly incremented. As of <productname>PostgreSQL</> 7.5, the
|
||||
inclusion of OIDs in the table created by <command>SELECT
|
||||
INTO</command> is controlled by the
|
||||
<varname>default_with_oids</varname> configuration variable. This
|
||||
variable currently defaults to true, but will likely default to
|
||||
false in a future release of <productname>PostgreSQL</>.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user