Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit bc5572c

Browse files
committed
Merge branch 'PGPRO9_6' of gitlab.postgrespro.ru:pgpro-dev/postgrespro into PGPRO9_6
2 parents 44f332b + ae4f7c0 commit bc5572c

File tree

7 files changed

+926
-704
lines changed

7 files changed

+926
-704
lines changed

doc/src/sgml/jsquery.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<title>Installation</title>
5353
<para>
5454
When you installed <productname>Postgres Pro</productname> distribution, jsquery is available
55-
as a contrib moudle. Install contrib modules (postgrespro-contrib
55+
as a contrib module. Install contrib modules (postgrespro-contrib
5656
package in the binary distribution for Linux, or make -C contrib
5757
install if you are building from source), then start psql shell
5858
and type

doc/src/sgml/mchar.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
It implements types MCHAR and MVARCHAR, which are bug-to-bug
1616
compatible with MSSQL CHAR and VARCHAR respectively. Additionaly,
1717
these types use libicu for comparation and case conversion, so their
18-
behavoir is identical across different operating system.
18+
behavior is identical across different operating systems.
1919
</para>
2020
<para>
21-
PostgresPro also includes <xref linkend="citext"> extension which
21+
&productname; also includes <xref linkend="citext"> extension which
2222
provides types similar to MCHAR. But this extension doesn't emulate
23-
MS-SQL behavoir concerning end-of-value whitespace.
23+
MS-SQL behavior concerning end-of-value whitespace.
2424
</para>
2525
<para>
26-
Differences from PostgreSQL standard CHAR and VARCHAR are:
26+
Differences from &productname; standard CHAR and VARCHAR are:
2727
</para>
2828
<itemizedlist>
2929
<listitem>

doc/src/sgml/pgpathman.sgml

Lines changed: 907 additions & 688 deletions
Large diffs are not rendered by default.

doc/src/sgml/pgprobackup.sgml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,8 @@ doc/src/sgml/pgprobackup.sgml
371371
<listitem>
372372
<para>
373373
Specifies the number of full backup
374-
copies to keep in the data directory. Must be a positive integer.
374+
copies to keep in the data directory. Must be a positive integer.</para>
375+
<para>You can use this option with the <command>retention purge</command> command to override the default retention policy set in <filename>pg_probackup.conf</filename>.
375376
</para>
376377
</listitem>
377378
</varlistentry>
@@ -380,7 +381,8 @@ doc/src/sgml/pgprobackup.sgml
380381
<term><option>window</option></term>
381382
<listitem>
382383
<para>
383-
Defines the earliest point in time for which <application>pg_probackup</application> can complete the recovery. This option is set in the number of days from the current moment. For example, if <option>window</option>=7, <application>pg_probackup</application> must keep at least one full backup copy that is older than seven days, with all the corresponding WAL files.
384+
Defines the recovery point, in the number of days from the current moment. This is the earliest point in time for which <application>pg_probackup</application> can complete the recovery. For example, if <option>window</option>=7, <application>pg_probackup</application> must keep at least one full backup copy that is older than seven days, with all the corresponding WAL files.</para>
385+
<para>You can use this option with the <command>retention purge</command> command to override the default retention policy set in <filename>pg_probackup.conf</filename>.
384386
</para>
385387
</listitem>
386388
</varlistentry>
@@ -664,7 +666,7 @@ pg_probackup show
664666

665667
<listitem>
666668
<para>
667-
Recovery time &mdash; the least moment of time, the database cluster's state can be restored at.
669+
Recovery time &mdash; the earliest moment for which you can restore the state of the database cluster.
668670
</para>
669671
</listitem>
670672

doc/src/sgml/plantuner.sgml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,21 @@
1111
Whether somebody think it's bad or not, but sometime it's very
1212
interesting to be able to control planner (provide hints, which tell
1313
optimizer to ignore its algorithm in part), which is currently
14-
impossible in PostgreSQL. Oracle, for example, has over 120 hints,
14+
impossible in &productname; (and PostgreSQL).
15+
Oracle, for example, has over 120 hints,
1516
and Microsoft SQL Server also supports hints.
1617
</para>
1718
<para>
1819
This first version of plantuner provides a possibility to hide
19-
specified indexes from PostgreSQL planner, so it will not use them.
20+
specified indexes from &productname; planner, so it will not use them.
2021
</para>
2122
<para>
2223
There are many situations when developer want to temporarily disable
2324
specific index(es), without dropping them, or to instruct planner to
2425
use specific index.
2526
</para>
2627
<para>
27-
Next, for some workload PostgreSQL could be too pessimistic for
28+
Next, for some workload &productname; could be too pessimistic for
2829
newly created tables and assumes much more rows in table than
2930
it actually has. If plantuner.fix_empty_table GUC variable is set
3031
to true then module will set to zero the number of pages/tuples of

doc/src/sgml/ref/waitlsn.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
doc/src/sgml/ref/waitlsn.sgml
3-
PostgreSQL documentation
3+
&productname; documentation
44
-->
55

66
<refentry id="SQL-WAITLSN">
@@ -37,7 +37,7 @@ WAITLSN <replaceable class="PARAMETER">'LSN'</replaceable> [ , <replaceable clas
3737
<para>
3838
<command>WAITLSN</command> provides a simple
3939
interprocess <acronym>LSN</> wait mechanism for a backends on slave
40-
in master-slave replication scheme on <productname>PostgreSQL</productname> database.
40+
in master-slave replication scheme on <productname>&productname;</productname> database.
4141
</para>
4242
</refsect1>
4343

doc/src/sgml/rowtypes.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ INSERT INTO mytab (complex_col.r, complex_col.i) VALUES(1.1, 2.2);
260260
</para>
261261

262262
<para>
263-
In <productname>PostgreSQL</>, a reference to a table name (or alias)
263+
In <productname>&productname;</>, a reference to a table name (or alias)
264264
in a query is effectively a reference to the composite value of the
265265
table's current row. For example, if we had a table
266266
<structname>inventory_item</> as shown
@@ -306,7 +306,7 @@ SELECT c.* FROM inventory_item c;
306306
<programlisting>
307307
SELECT c.name, c.supplier_id, c.price FROM inventory_item c;
308308
</programlisting>
309-
<productname>PostgreSQL</> will apply this expansion behavior to
309+
<productname>&productname;</> will apply this expansion behavior to
310310
any composite-valued expression, although as shown <link
311311
linkend="rowtypes-accessing">above</link>, you need to write parentheses
312312
around the value that <literal>.*</> is applied to whenever it's not a
@@ -322,7 +322,7 @@ SELECT (myfunc(x)).a, (myfunc(x)).b, (myfunc(x)).c FROM some_table;
322322

323323
<tip>
324324
<para>
325-
<productname>PostgreSQL</> handles column expansion by
325+
<productname>&productname;</> handles column expansion by
326326
actually transforming the first form into the second. So, in this
327327
example, <function>myfunc()</> would get invoked three times per row
328328
with either syntax. If it's an expensive function you may wish to

0 commit comments

Comments
 (0)