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

Commit e16a374

Browse files
author
Liudmila Mantrova
committed
DOC: eliminating erroneous productnames in EE modules
1 parent b6f6cab commit e16a374

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

doc/src/sgml/aqo.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ where <replaceable>mode</> is the name of the optimization mode to use.
132132
</para>
133133
<note><para>
134134
You can view the
135-
current query plan using the standard <productname>&productname;</productname> <command>EXPLAIN</> command with the
135+
current query plan using the standard <productname>&project;</productname> <command>EXPLAIN</> command with the
136136
<command>ANALYZE</> option. For details, see the <xref linkend="using-explain">.</para>
137137
</note>
138138
<para>

doc/src/sgml/atx.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>Overview</title>
88

99
<para>
10-
&productname; supports nested transactions: they are rarely explicitly used by programmer and mostly used for error handling and stored
10+
&project; supports nested transactions: they are rarely explicitly used by programmer and mostly used for error handling and stored
1111
procedures. It is possible to rollback a subtransaction without affecting the parent transaction. But commit of a subtraction is delayed until
1212
commit of parent transaction.
1313
</para>
@@ -121,7 +121,7 @@ deadlock is reported.
121121
<sect1><title>SQL Grammar Extension for Autonomous Transactions</title>
122122

123123
<para>
124-
&productname; <literal>BEGIN</literal>/<literal>END</literal> transaction statements are extended by optional keyword <literal>AUTONOMOUS</literal>:
124+
&project; <literal>BEGIN</literal>/<literal>END</literal> transaction statements are extended by optional keyword <literal>AUTONOMOUS</literal>:
125125
</para>
126126

127127
<programlisting>
@@ -170,7 +170,7 @@ $$ language plpgsql;
170170
<para>
171171
When exception is raised inside <command>BEGIN AUTONOMOUS</command> block, this autonomous transaction is aborted and standard
172172
exception handling procedure is started, unwinding stack and executing exception handlers until exception is caught.
173-
So exception handling is done in the same way as with normal &productname; subtransactions.
173+
So exception handling is done in the same way as with normal &project; subtransactions.
174174
</para>
175175
<para>
176176
When an error is caught by an <literal>EXCEPTION</literal> clause, the local variables of the PL/pgSQL function remain as they were when the error occurred, but all changes to persistent database state within the block are rolled back.

doc/src/sgml/pghintplan.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ postgres=#
351351
<para>
352352
The objects as the hint parameter should be enclosed by double
353353
quotes if they includes parentheses, double quotes and white
354-
spaces. The escaping rule is the same as <productname>&productname;</productname>.
354+
spaces. The escaping rule is the same as <productname>&project;</productname>.
355355
</para>
356356
</sect3>
357357
<sect3>

doc/src/sgml/pgpro-scheduler.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ SELECT <function>pg_reload_conf()</>;
159159
subsystems may also use background workers. The
160160
<varname>schedule.max_workers</> value cannot exceed the
161161
total number of workers enabled by the
162-
<varname>max_worker_processes</> <productname>&productname;</productname> variable.
162+
<varname>max_worker_processes</> <productname>&project;</productname> variable.
163163
</para>
164164
<para>
165165
The <filename>pgpro_scheduler</filename> extension starts a

doc/src/sgml/pgrepack.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ $ psql -f "$(pg_config --sharedir)/contrib/pg_repack.sql" -d <replaceable>your_d
278278
<application>pg_repack</application> will wait to acquire this lock.
279279
If the lock cannot be taken after this duration, <application>pg_repack</application>
280280
will forcibly cancel the conflicting queries. If you are using
281-
<productname>&productname;</productname> or <productname>PostgreSQL</productname> version 8.4
281+
<productname>&project;</productname> or <productname>PostgreSQL</productname> version 8.4
282282
or newer, <application>pg_repack</application> will fall back to using
283283
<function>pg_terminate_backend()</function> to disconnect any remaining backends after
284284
this timeout has passed twice. The default is 60 seconds.
@@ -458,7 +458,7 @@ $ psql -f "$(pg_config --sharedir)/contrib/pg_repack.sql" -d <replaceable>your_d
458458
</varlistentry>
459459
</variablelist>
460460
<para>
461-
This utility, like most other <productname>&productname;</> utilities,
461+
This utility, like most other <productname>&project;</> utilities,
462462
also uses the environment variables supported by <application>libpq</>
463463
(see <xref linkend="libpq-envars">).
464464
</para>
@@ -512,7 +512,7 @@ $ pg_repack -d test --index idx --tablespace tbs
512512
</para>
513513

514514
<para>
515-
For <productname>&productname;</productname> or PostgreSQL 9.1 and newer execute:
515+
For <productname>&project;</productname> or PostgreSQL 9.1 and newer execute:
516516
<programlisting>
517517
DROP EXTENSION pg_repack CASCADE
518518
</programlisting>

0 commit comments

Comments
 (0)