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
ad762426
Commit
ad762426
authored
Feb 06, 2011
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove tags.
parent
50d89d42
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
21 additions
and
23 deletions
+21
-23
doc/src/sgml/advanced.sgml
doc/src/sgml/advanced.sgml
+1
-1
doc/src/sgml/array.sgml
doc/src/sgml/array.sgml
+1
-1
doc/src/sgml/backup.sgml
doc/src/sgml/backup.sgml
+2
-2
doc/src/sgml/catalogs.sgml
doc/src/sgml/catalogs.sgml
+2
-3
doc/src/sgml/client-auth.sgml
doc/src/sgml/client-auth.sgml
+4
-4
doc/src/sgml/config.sgml
doc/src/sgml/config.sgml
+3
-4
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+2
-2
doc/src/sgml/high-availability.sgml
doc/src/sgml/high-availability.sgml
+1
-1
doc/src/sgml/libpq.sgml
doc/src/sgml/libpq.sgml
+1
-1
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+2
-2
doc/src/sgml/spi.sgml
doc/src/sgml/spi.sgml
+1
-1
doc/src/sgml/tsearch2.sgml
doc/src/sgml/tsearch2.sgml
+1
-1
No files found.
doc/src/sgml/advanced.sgml
View file @
ad762426
...
@@ -533,7 +533,7 @@ WHERE pos < 3;
...
@@ -533,7 +533,7 @@ WHERE pos < 3;
</programlisting>
</programlisting>
The above query only shows the rows from the inner query having
The above query only shows the rows from the inner query having
<literal>rank</> less than
<literal>3</>
.
<literal>rank</> less than
3
.
</para>
</para>
<para>
<para>
...
...
doc/src/sgml/array.sgml
View file @
ad762426
...
@@ -259,7 +259,7 @@ SELECT schedule[1:2][1:1] FROM sal_emp WHERE name = 'Bill';
...
@@ -259,7 +259,7 @@ SELECT schedule[1:2][1:1] FROM sal_emp WHERE name = 'Bill';
If any dimension is written as a slice, i.e., contains a colon, then all
If any dimension is written as a slice, i.e., contains a colon, then all
dimensions are treated as slices. Any dimension that has only a single
dimensions are treated as slices. Any dimension that has only a single
number (no colon) is treated as being from
<literal>1</>
number (no colon) is treated as being from
1
to the number specified. For example, <literal>[2]</> is treated as
to the number specified. For example, <literal>[2]</> is treated as
<literal>[1:2]</>, as in this example:
<literal>[1:2]</>, as in this example:
...
...
doc/src/sgml/backup.sgml
View file @
ad762426
...
@@ -835,8 +835,8 @@ SELECT pg_stop_backup();
...
@@ -835,8 +835,8 @@ SELECT pg_stop_backup();
GNU <application>tar</> return an error code indistinguishable from
GNU <application>tar</> return an error code indistinguishable from
a fatal error if a file was truncated while <application>tar</> was
a fatal error if a file was truncated while <application>tar</> was
copying it. Fortunately, GNU <application>tar</> versions 1.16 and
copying it. Fortunately, GNU <application>tar</> versions 1.16 and
later exit with
<literal>1</>
if a file was changed during the backup,
later exit with
1
if a file was changed during the backup,
and
<literal>2</>
for other errors.
and
2
for other errors.
</para>
</para>
<para>
<para>
...
...
doc/src/sgml/catalogs.sgml
View file @
ad762426
...
@@ -1455,7 +1455,7 @@
...
@@ -1455,7 +1455,7 @@
return the cast destination type as their result type. A cast
return the cast destination type as their result type. A cast
function can have up to three arguments. The second argument,
function can have up to three arguments. The second argument,
if present, must be type <type>integer</>; it receives the type
if present, must be type <type>integer</>; it receives the type
modifier associated with the destination type, or
<literal>-1</>
modifier associated with the destination type, or
-1
if there is none. The third argument,
if there is none. The third argument,
if present, must be type <type>boolean</>; it receives <literal>true</>
if present, must be type <type>boolean</>; it receives <literal>true</>
if the cast is an explicit cast, <literal>false</> otherwise.
if the cast is an explicit cast, <literal>false</> otherwise.
...
@@ -6541,8 +6541,7 @@
...
@@ -6541,8 +6541,7 @@
OID of the object within its system catalog, or null if the
OID of the object within its system catalog, or null if the
object is not a general database object.
object is not a general database object.
For advisory locks it is used to distinguish the two key
For advisory locks it is used to distinguish the two key
spaces (<literal>1</> for an int8 key, <literal>2</> for two
spaces (1 for an int8 key, 2 for two int4 keys).
int4 keys).
</entry>
</entry>
</row>
</row>
<row>
<row>
...
...
doc/src/sgml/client-auth.sgml
View file @
ad762426
...
@@ -921,7 +921,7 @@ omicron bryanh guest1
...
@@ -921,7 +921,7 @@ omicron bryanh guest1
<term><literal>include_realm</literal></term>
<term><literal>include_realm</literal></term>
<listitem>
<listitem>
<para>
<para>
If set to
<literal>1</>
, the realm name from the authenticated user
If set to
1
, the realm name from the authenticated user
principal is included in the system user name that's passed through
principal is included in the system user name that's passed through
user name mapping (<xref linkend="auth-username-maps">). This is
user name mapping (<xref linkend="auth-username-maps">). This is
useful for handling users from multiple realms.
useful for handling users from multiple realms.
...
@@ -992,7 +992,7 @@ omicron bryanh guest1
...
@@ -992,7 +992,7 @@ omicron bryanh guest1
<term><literal>include_realm</literal></term>
<term><literal>include_realm</literal></term>
<listitem>
<listitem>
<para>
<para>
If set to
<literal>1</>
, the realm name from the authenticated user
If set to
1
, the realm name from the authenticated user
principal is included in the system user name that's passed through
principal is included in the system user name that's passed through
user name mapping (<xref linkend="auth-username-maps">). This is
user name mapping (<xref linkend="auth-username-maps">). This is
useful for handling users from multiple realms.
useful for handling users from multiple realms.
...
@@ -1161,7 +1161,7 @@ omicron bryanh guest1
...
@@ -1161,7 +1161,7 @@ omicron bryanh guest1
<term><literal>include_realm</literal></term>
<term><literal>include_realm</literal></term>
<listitem>
<listitem>
<para>
<para>
If set to
<literal>1</>
, the realm name from the authenticated user
If set to
1
, the realm name from the authenticated user
principal is included in the system user name that's passed through
principal is included in the system user name that's passed through
user name mapping (<xref linkend="auth-username-maps">). This is
user name mapping (<xref linkend="auth-username-maps">). This is
useful for handling users from multiple realms.
useful for handling users from multiple realms.
...
@@ -1372,7 +1372,7 @@ omicron bryanh guest1
...
@@ -1372,7 +1372,7 @@ omicron bryanh guest1
<term><literal>ldaptls</literal></term>
<term><literal>ldaptls</literal></term>
<listitem>
<listitem>
<para>
<para>
Set to
<literal>1</>
to make the connection between PostgreSQL and the
Set to
1
to make the connection between PostgreSQL and the
LDAP server use TLS encryption. Note that this only encrypts
LDAP server use TLS encryption. Note that this only encrypts
the traffic to the LDAP server — the connection to the client
the traffic to the LDAP server — the connection to the client
will still be unencrypted unless SSL is used.
will still be unencrypted unless SSL is used.
...
...
doc/src/sgml/config.sgml
View file @
ad762426
...
@@ -3709,7 +3709,7 @@ FROM pg_stat_activity;
...
@@ -3709,7 +3709,7 @@ FROM pg_stat_activity;
A value of zero logs all temporary file information, while positive
A value of zero logs all temporary file information, while positive
values log only files whose size is greater than or equal to
values log only files whose size is greater than or equal to
the specified number of kilobytes. The
the specified number of kilobytes. The
default setting is
<literal>-1</>
, which disables such logging.
default setting is
-1
, which disables such logging.
Only superusers can change this setting.
Only superusers can change this setting.
</para>
</para>
</listitem>
</listitem>
...
@@ -4228,8 +4228,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
...
@@ -4228,8 +4228,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
<listitem>
<listitem>
<para>
<para>
Specifies the cost delay value that will be used in automatic
Specifies the cost delay value that will be used in automatic
<command>VACUUM</> operations. If <literal>-1</> is
<command>VACUUM</> operations. If -1 is specified, the regular
specified, the regular
<xref linkend="guc-vacuum-cost-delay"> value will be used.
<xref linkend="guc-vacuum-cost-delay"> value will be used.
The default value is 20 milliseconds.
The default value is 20 milliseconds.
This parameter can only be set in the <filename>postgresql.conf</>
This parameter can only be set in the <filename>postgresql.conf</>
...
@@ -4248,7 +4247,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
...
@@ -4248,7 +4247,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
<listitem>
<listitem>
<para>
<para>
Specifies the cost limit value that will be used in automatic
Specifies the cost limit value that will be used in automatic
<command>VACUUM</> operations. If
<literal>-1</>
is specified (which is the
<command>VACUUM</> operations. If
-1
is specified (which is the
default), the regular
default), the regular
<xref linkend="guc-vacuum-cost-limit"> value will be used. Note that
<xref linkend="guc-vacuum-cost-limit"> value will be used. Note that
the value is distributed proportionally among the running autovacuum
the value is distributed proportionally among the running autovacuum
...
...
doc/src/sgml/func.sgml
View file @
ad762426
...
@@ -3705,8 +3705,8 @@ substring('foobar' from 'o(.)b') <lineannotation>o</lineannotation>
...
@@ -3705,8 +3705,8 @@ substring('foobar' from 'o(.)b') <lineannotation>o</lineannotation>
match, the
<replaceable>
source
</>
string is returned with the
match, the
<replaceable>
source
</>
string is returned with the
<replaceable>
replacement
</>
string substituted for the matching
<replaceable>
replacement
</>
string substituted for the matching
substring. The
<replaceable>
replacement
</>
string can contain
substring. The
<replaceable>
replacement
</>
string can contain
<literal>
\
</><replaceable>
n
</>
, where
<replaceable>
n
</>
is
<literal>
1
</>
<literal>
\
</><replaceable>
n
</>
, where
<replaceable>
n
</>
is
1
through
<literal>
9
</>
, to indicate that the source substring matching the
through
9
, to indicate that the source substring matching the
<replaceable>
n
</>
'th parenthesized subexpression of the pattern should be
<replaceable>
n
</>
'th parenthesized subexpression of the pattern should be
inserted, and it can contain
<literal>
\
&
</>
to indicate that the
inserted, and it can contain
<literal>
\
&
</>
to indicate that the
substring matching the entire pattern should be inserted. Write
substring matching the entire pattern should be inserted. Write
...
...
doc/src/sgml/high-availability.sgml
View file @
ad762426
...
@@ -1913,7 +1913,7 @@ LOG: database system is ready to accept read only connections
...
@@ -1913,7 +1913,7 @@ LOG: database system is ready to accept read only connections
advised to select a larger value of <varname>max_locks_per_transaction</>,
advised to select a larger value of <varname>max_locks_per_transaction</>,
perhaps as much as twice the value of the parameter on
perhaps as much as twice the value of the parameter on
the primary server. You need not consider this at all if
the primary server. You need not consider this at all if
your setting of <varname>max_prepared_transactions</> is
<literal>0</>
.
your setting of <varname>max_prepared_transactions</> is
0
.
</para>
</para>
</listitem>
</listitem>
</itemizedlist>
</itemizedlist>
...
...
doc/src/sgml/libpq.sgml
View file @
ad762426
...
@@ -5331,7 +5331,7 @@ int PQsetvalue(PGresult *res, int tup_num, int field_num, char *value, int len);
...
@@ -5331,7 +5331,7 @@ int PQsetvalue(PGresult *res, int tup_num, int field_num, char *value, int len);
function can only grow the tuples array one tuple at a time. But any
function can only grow the tuples array one tuple at a time. But any
field of any existing tuple can be modified in any order. If a value at
field of any existing tuple can be modified in any order. If a value at
<parameter>field_num</parameter> already exists, it will be overwritten.
<parameter>field_num</parameter> already exists, it will be overwritten.
If <parameter>len</parameter> is
<literal>-1</literal>
or
If <parameter>len</parameter> is
-1
or
<parameter>value</parameter> is <symbol>NULL</>, the field value
<parameter>value</parameter> is <symbol>NULL</>, the field value
will be set to an SQL null value. The
will be set to an SQL null value. The
<parameter>value</parameter> is copied into the result's private storage,
<parameter>value</parameter> is copied into the result's private storage,
...
...
doc/src/sgml/runtime.sgml
View file @
ad762426
...
@@ -2007,7 +2007,7 @@ pg_dumpall -p 5432 | psql -d postgres -p 5433
...
@@ -2007,7 +2007,7 @@ pg_dumpall -p 5432 | psql -d postgres -p 5433
certificates of the certificate authorities (<acronym>CA</acronym>s)
certificates of the certificate authorities (<acronym>CA</acronym>s)
you trust in the file <filename>root.crt</filename> in the data
you trust in the file <filename>root.crt</filename> in the data
directory, and set the <literal>clientcert</literal> parameter
directory, and set the <literal>clientcert</literal> parameter
to
<literal>1</literal>
on the appropriate <literal>hostssl</> line(s) in
to
1
on the appropriate <literal>hostssl</> line(s) in
<filename>pg_hba.conf</>.
<filename>pg_hba.conf</>.
A certificate will then be requested from the client during
A certificate will then be requested from the client during
SSL connection startup. (See <xref linkend="libpq-ssl"> for a
SSL connection startup. (See <xref linkend="libpq-ssl"> for a
...
@@ -2025,7 +2025,7 @@ pg_dumpall -p 5432 | psql -d postgres -p 5433
...
@@ -2025,7 +2025,7 @@ pg_dumpall -p 5432 | psql -d postgres -p 5433
The <literal>clientcert</literal> option in <filename>pg_hba.conf</> is
The <literal>clientcert</literal> option in <filename>pg_hba.conf</> is
available for all authentication methods, but only for rows specified as
available for all authentication methods, but only for rows specified as
<literal>hostssl</>. When <literal>clientcert</literal> is not specified
<literal>hostssl</>. When <literal>clientcert</literal> is not specified
or is set to
<literal>0</>
, the server will still verify presented client
or is set to
0
, the server will still verify presented client
certificates against <filename>root.crt</filename> if that file exists
certificates against <filename>root.crt</filename> if that file exists
— but it will not insist that a client certificate be presented.
— but it will not insist that a client certificate be presented.
</para>
</para>
...
...
doc/src/sgml/spi.sgml
View file @
ad762426
...
@@ -1199,7 +1199,7 @@ int SPI_getargcount(SPIPlanPtr <parameter>plan</parameter>)
...
@@ -1199,7 +1199,7 @@ int SPI_getargcount(SPIPlanPtr <parameter>plan</parameter>)
The count of expected arguments for the <parameter>plan</parameter>.
The count of expected arguments for the <parameter>plan</parameter>.
If the <parameter>plan</parameter> is <symbol>NULL</symbol> or invalid,
If the <parameter>plan</parameter> is <symbol>NULL</symbol> or invalid,
<varname>SPI_result</varname> is set to <symbol>SPI_ERROR_ARGUMENT</symbol>
<varname>SPI_result</varname> is set to <symbol>SPI_ERROR_ARGUMENT</symbol>
and
<literal>-1</literal>
is returned.
and
-1
is returned.
</para>
</para>
</refsect1>
</refsect1>
</refentry>
</refentry>
...
...
doc/src/sgml/tsearch2.sgml
View file @
ad762426
...
@@ -163,7 +163,7 @@
...
@@ -163,7 +163,7 @@
due to failure to recreate the original <application>tsearch2</>
due to failure to recreate the original <application>tsearch2</>
objects. These errors can be ignored, but this means you cannot
objects. These errors can be ignored, but this means you cannot
restore the dump in a single transaction (eg, you cannot use
restore the dump in a single transaction (eg, you cannot use
<application>pg_restore</>'s <
literal
>-1</> switch).
<application>pg_restore</>'s <
option
>-1</> switch).
</para>
</para>
</step>
</step>
...
...
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