Skip to content

Commit afd7987

Browse files
committed
Capitalize names of PLs consistently
Author: Daniel Gustafsson <daniel@yesql.se>
1 parent 193f5f9 commit afd7987

File tree

23 files changed

+41
-41
lines changed

23 files changed

+41
-41
lines changed

contrib/postgres_fdw/expected/postgres_fdw.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3879,7 +3879,7 @@ SELECT oid, * FROM ft_pg_type WHERE typname = 'int4';
38793879
(1 row)
38803880

38813881
-- ===================================================================
3882-
-- used in pl/pgsql function
3882+
-- used in PL/pgSQL function
38833883
-- ===================================================================
38843884
CREATE OR REPLACE FUNCTION f_test(p_c1 int) RETURNS int AS $$
38853885
DECLARE

contrib/postgres_fdw/sql/postgres_fdw.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ SELECT oid, * FROM ft_pg_type WHERE typname = 'int4';
952952
SELECT oid, * FROM ft_pg_type WHERE typname = 'int4';
953953

954954
-- ===================================================================
955-
-- used in pl/pgsql function
955+
-- used in PL/pgSQL function
956956
-- ===================================================================
957957
CREATE OR REPLACE FUNCTION f_test(p_c1 int) RETURNS int AS $$
958958
DECLARE

doc/src/sgml/install-windows.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ $ENV{MSBFLAGS}="/m";
205205
<varlistentry>
206206
<term><productname>ActiveState TCL</productname></term>
207207
<listitem><para>
208-
Required for building <application>PL/TCL</application> (Note: version
208+
Required for building <application>PL/Tcl</application> (Note: version
209209
8.4 is required, the free Standard Distribution is sufficient).
210210
</para></listitem>
211211
</varlistentry>

doc/src/sgml/parallel.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
149149
which the system thinks that partial or incremental execution might
150150
occur, no parallel plan is generated. For example, a cursor created
151151
using <link linkend="sql-declare">DECLARE CURSOR</link> will never use
152-
a parallel plan. Similarly, a PL/pgsql loop of the form
152+
a parallel plan. Similarly, a PL/pgSQL loop of the form
153153
<literal>FOR x IN query LOOP .. END LOOP</literal> will never use a
154154
parallel plan, because the parallel query system is unable to verify
155155
that the code in the loop is safe to execute while parallel query is
@@ -478,7 +478,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
478478
<para>
479479
Functions and aggregates must be marked <literal>PARALLEL UNSAFE</> if
480480
they write to the database, access sequences, change the transaction state
481-
even temporarily (e.g. a PL/pgsql function which establishes an
481+
even temporarily (e.g. a PL/pgSQL function which establishes an
482482
<literal>EXCEPTION</> block to catch errors), or make persistent changes to
483483
settings. Similarly, functions must be marked <literal>PARALLEL
484484
RESTRICTED</> if they access temporary tables, client connection state,

doc/src/sgml/plpgsql.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4851,7 +4851,7 @@ a_output := a_output || $$ if v_$$ || referrer_keys.kind || $$ like '$$
48514851

48524852
<para>
48534853
To aid the user in finding instances of simple but common problems before
4854-
they cause harm, <application>PL/PgSQL</> provides additional
4854+
they cause harm, <application>PL/pgSQL</> provides additional
48554855
<replaceable>checks</>. When enabled, depending on the configuration, they
48564856
can be used to emit either a <literal>WARNING</> or an <literal>ERROR</>
48574857
during the compilation of a function. A function which has received

doc/src/sgml/release-7.4.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,14 +242,14 @@
242242

243243
<listitem>
244244
<para>
245-
Update pl/perl's <filename>ppport.h</> for modern Perl versions
245+
Update PL/Perl's <filename>ppport.h</> for modern Perl versions
246246
(Andrew)
247247
</para>
248248
</listitem>
249249

250250
<listitem>
251251
<para>
252-
Fix assorted memory leaks in pl/python (Andreas Freund, Tom)
252+
Fix assorted memory leaks in PL/Python (Andreas Freund, Tom)
253253
</para>
254254
</listitem>
255255

doc/src/sgml/release-8.0.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -312,14 +312,14 @@
312312

313313
<listitem>
314314
<para>
315-
Update pl/perl's <filename>ppport.h</> for modern Perl versions
315+
Update PL/Perl's <filename>ppport.h</> for modern Perl versions
316316
(Andrew)
317317
</para>
318318
</listitem>
319319

320320
<listitem>
321321
<para>
322-
Fix assorted memory leaks in pl/python (Andreas Freund, Tom)
322+
Fix assorted memory leaks in PL/Python (Andreas Freund, Tom)
323323
</para>
324324
</listitem>
325325

@@ -2439,9 +2439,9 @@ when the data directory is not specified (Magnus)</para></listitem>
24392439
(Neil)</para></listitem>
24402440

24412441
<listitem><para>Recover properly if error occurs during argument passing
2442-
in <application>PL/python</> (Neil)</para></listitem>
2442+
in <application>PL/Python</> (Neil)</para></listitem>
24432443

2444-
<listitem><para>Fix <application>PL/perl</>'s handling of locales on
2444+
<listitem><para>Fix <application>PL/Perl</>'s handling of locales on
24452445
Win32 to match the backend (Andrew)</para></listitem>
24462446

24472447
<listitem><para>Fix crash when <literal>log_min_messages</> is set to

doc/src/sgml/release-8.1.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -539,14 +539,14 @@
539539

540540
<listitem>
541541
<para>
542-
Update pl/perl's <filename>ppport.h</> for modern Perl versions
542+
Update PL/Perl's <filename>ppport.h</> for modern Perl versions
543543
(Andrew)
544544
</para>
545545
</listitem>
546546

547547
<listitem>
548548
<para>
549-
Fix assorted memory leaks in pl/python (Andreas Freund, Tom)
549+
Fix assorted memory leaks in PL/Python (Andreas Freund, Tom)
550550
</para>
551551
</listitem>
552552

@@ -3089,12 +3089,12 @@ when the data directory is not specified (Magnus)</para></listitem>
30893089
together in function result type declarations</para></listitem>
30903090

30913091
<listitem><para>Recover properly if error occurs during argument passing
3092-
in <application>PL/python</> (Neil)</para></listitem>
3092+
in <application>PL/Python</> (Neil)</para></listitem>
30933093

30943094
<listitem><para>Fix memory leak in <function>plperl_return_next</>
30953095
(Neil)</para></listitem>
30963096

3097-
<listitem><para>Fix <application>PL/perl</>'s handling of locales on
3097+
<listitem><para>Fix <application>PL/Perl</>'s handling of locales on
30983098
Win32 to match the backend (Andrew)</para></listitem>
30993099

31003100
<listitem><para>Various optimizer fixes (Tom)</para></listitem>

doc/src/sgml/release-8.2.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1442,14 +1442,14 @@
14421442

14431443
<listitem>
14441444
<para>
1445-
Update pl/perl's <filename>ppport.h</> for modern Perl versions
1445+
Update PL/Perl's <filename>ppport.h</> for modern Perl versions
14461446
(Andrew)
14471447
</para>
14481448
</listitem>
14491449

14501450
<listitem>
14511451
<para>
1452-
Fix assorted memory leaks in pl/python (Andreas Freund, Tom)
1452+
Fix assorted memory leaks in PL/Python (Andreas Freund, Tom)
14531453
</para>
14541454
</listitem>
14551455

doc/src/sgml/release-8.3.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3022,14 +3022,14 @@
30223022

30233023
<listitem>
30243024
<para>
3025-
Update pl/perl's <filename>ppport.h</> for modern Perl versions
3025+
Update PL/Perl's <filename>ppport.h</> for modern Perl versions
30263026
(Andrew)
30273027
</para>
30283028
</listitem>
30293029

30303030
<listitem>
30313031
<para>
3032-
Fix assorted memory leaks in pl/python (Andreas Freund, Tom)
3032+
Fix assorted memory leaks in PL/Python (Andreas Freund, Tom)
30333033
</para>
30343034
</listitem>
30353035

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy