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
afc58aff
Commit
afc58aff
authored
Sep 01, 2017
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc: Fix typos and other minor issues
Author: Alexander Lakhin <exclusion@gmail.com>
parent
51daa7bd
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
14 additions
and
13 deletions
+14
-13
doc/src/sgml/catalogs.sgml
doc/src/sgml/catalogs.sgml
+1
-1
doc/src/sgml/event-trigger.sgml
doc/src/sgml/event-trigger.sgml
+1
-0
doc/src/sgml/indexam.sgml
doc/src/sgml/indexam.sgml
+1
-1
doc/src/sgml/logicaldecoding.sgml
doc/src/sgml/logicaldecoding.sgml
+1
-1
doc/src/sgml/perform.sgml
doc/src/sgml/perform.sgml
+1
-1
doc/src/sgml/ref/alter_sequence.sgml
doc/src/sgml/ref/alter_sequence.sgml
+1
-1
doc/src/sgml/ref/alter_table.sgml
doc/src/sgml/ref/alter_table.sgml
+2
-2
doc/src/sgml/ref/copy.sgml
doc/src/sgml/ref/copy.sgml
+1
-1
doc/src/sgml/ref/create_sequence.sgml
doc/src/sgml/ref/create_sequence.sgml
+1
-1
doc/src/sgml/ref/create_table.sgml
doc/src/sgml/ref/create_table.sgml
+2
-2
doc/src/sgml/release-10.sgml
doc/src/sgml/release-10.sgml
+2
-2
No files found.
doc/src/sgml/catalogs.sgml
View file @
afc58aff
...
...
@@ -5385,7 +5385,7 @@ SCRAM-SHA-256$<replaceable><iteration count></>:<replaceable><salt><
<row>
<entry><structfield>pubname</structfield></entry>
<entry><type>
N
ame</type></entry>
<entry><type>
n
ame</type></entry>
<entry></entry>
<entry>Name of the publication</entry>
</row>
...
...
doc/src/sgml/event-trigger.sgml
View file @
afc58aff
...
...
@@ -565,6 +565,7 @@
<entry align="center"><literal>X</literal></entry>
<entry align="center"><literal>-</literal></entry>
<entry align="center"><literal>-</literal></entry>
<entry align="center"></entry>
</row>
<row>
<entry align="left"><literal>CREATE USER MAPPING</literal></entry>
...
...
doc/src/sgml/indexam.sgml
View file @
afc58aff
...
...
@@ -559,7 +559,7 @@ amgettuple (IndexScanDesc scan,
a <structname>HeapTuple</> pointer stored at <literal>scan->xs_hitup</>,
with tuple descriptor <literal>scan->xs_hitupdesc</>. (The latter
format should be used when reconstructing data that might possibly not fit
into an
IndexTuple
.) In either case,
into an
<structname>IndexTuple</>
.) In either case,
management of the data referenced by the pointer is the access method's
responsibility. The data must remain good at least until the next
<function>amgettuple</>, <function>amrescan</>, or <function>amendscan</>
...
...
doc/src/sgml/logicaldecoding.sgml
View file @
afc58aff
...
...
@@ -345,7 +345,7 @@ $ pg_recvlogical -d postgres --slot test --drop-slot
<para>
The <link linkend="view-pg-replication-slots"><structname>pg_replication_slots</structname></link>
view and the
<link linkend="
monitoring-stats-views-table
"><structname>pg_stat_replication</structname></link>
<link linkend="
pg-stat-replication-view
"><structname>pg_stat_replication</structname></link>
view provide information about the current state of replication slots and
streaming replication connections respectively. These views apply to both physical and
logical replication.
...
...
doc/src/sgml/perform.sgml
View file @
afc58aff
...
...
@@ -1840,7 +1840,7 @@ SELECT * FROM x, y, a, b, c WHERE something AND somethingelse;
<listitem>
<para>
Increase <xref linkend="guc-max-wal-size"> and <xref
linkend="guc-checkpoint-timeout">
; this reduces the frequency
linkend="guc-checkpoint-timeout">; this reduces the frequency
of checkpoints, but increases the storage requirements of
<filename>/pg_wal</>.
</para>
...
...
doc/src/sgml/ref/alter_sequence.sgml
View file @
afc58aff
...
...
@@ -89,7 +89,7 @@ ALTER SEQUENCE [ IF EXISTS ] <replaceable class="parameter">name</replaceable> S
The optional
clause <literal>AS <replaceable class="parameter">data_type</replaceable></literal>
changes the data type of the sequence. Valid types are
are
<literal>smallint</literal>, <literal>integer</literal>,
<literal>smallint</literal>, <literal>integer</literal>,
and <literal>bigint</literal>.
</para>
...
...
doc/src/sgml/ref/alter_table.sgml
View file @
afc58aff
...
...
@@ -620,8 +620,8 @@ ALTER TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable>
<literal>SHARE UPDATE EXCLUSIVE</literal> lock will be taken for
fillfactor and autovacuum storage parameters, as well as the
following planner related parameters:
effective_io_concurrency, parallel_workers, seq_page_cost
random_page_cost, n_distinct and n_distinct_inherited
.
<varname>effective_io_concurrency</>, <varname>parallel_workers</>, <varname>seq_page_cost</>,
<varname>random_page_cost</>, <varname>n_distinct</> and <varname>n_distinct_inherited</>
.
</para>
<note>
...
...
doc/src/sgml/ref/copy.sgml
View file @
afc58aff
...
...
@@ -482,7 +482,7 @@ COPY <replaceable class="parameter">count</replaceable>
<para>
For identity columns, the <command>COPY FROM</command> command will always
write the column values provided in the input data, like
the <command>IN
PU
T</command> option <literal>OVERRIDING SYSTEM
the <command>IN
SER
T</command> option <literal>OVERRIDING SYSTEM
VALUE</literal>.
</para>
...
...
doc/src/sgml/ref/create_sequence.sgml
View file @
afc58aff
...
...
@@ -119,7 +119,7 @@ SELECT * FROM <replaceable>name</replaceable>;
The optional
clause <literal>AS <replaceable class="parameter">data_type</replaceable></literal>
specifies the data type of the sequence. Valid types are
are
<literal>smallint</literal>, <literal>integer</literal>,
<literal>smallint</literal>, <literal>integer</literal>,
and <literal>bigint</literal>. <literal>bigint</literal> is the
default. The data type determines the default minimum and maximum
values of the sequence.
...
...
doc/src/sgml/ref/create_table.sgml
View file @
afc58aff
...
...
@@ -473,8 +473,8 @@ FROM ( { <replaceable class="PARAMETER">numeric_literal</replaceable> | <replace
<firstterm>partitioned</firstterm> table. The parenthesized list of
columns or expressions forms the <firstterm>partition key</firstterm>
for the table. When using range partitioning, the partition key can
include multiple columns or expressions (up to 32, but this limit can
altered when building <productname>PostgreSQL</productname>
.
), but for
include multiple columns or expressions (up to 32, but this limit can
be
altered when building <productname>PostgreSQL</productname>), but for
list partitioning, the partition key must consist of a single column or
expression. If no B-tree operator class is specified when creating a
partitioned table, the default B-tree operator class for the datatype will
...
...
doc/src/sgml/release-10.sgml
View file @
afc58aff
...
...
@@ -2905,7 +2905,7 @@
-->
<para>
Overhaul documentation <link linkend="docguide-toolsets">build
process</> (Alexander Lakhin
, Alexander Law
)
process</> (Alexander Lakhin)
</para>
</listitem>
...
...
@@ -2919,7 +2919,7 @@
</para>
<para>
Previously <application>Jade</>, <acronym>DSSSL
,</>
and
Previously <application>Jade</>, <acronym>DSSSL
</>,
and
<application>JadeTex</> were used.
</para>
</listitem>
...
...
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