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

Commit d866f03

Browse files
committed
Doc: use "an SQL" consistently rather than "a SQL"
Similarly to what was done in 04539e7 and 7bdd489, we standardized on SQL being pronounced "es-que-ell" rather than "sequel" in our documentation. This fixes the instances of "a SQL" that have crept in during the v16 cycle. Discussion: https://postgr.es/m/CAApHDvpML27UqFXnrYO1MJddsKVMQoiZisPvsAGhKE_tsKXquw%40mail.gmail.com
1 parent 26e65eb commit d866f03

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/sgml/ecpg.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1506,7 +1506,7 @@ EXEC SQL TYPE serial_t IS long;
15061506
</para>
15071507

15081508
<para>
1509-
Any word you declare as a typedef cannot be used as a SQL keyword
1509+
Any word you declare as a typedef cannot be used as an SQL keyword
15101510
in <literal>EXEC SQL</literal> commands later in the same program.
15111511
For example, this won't work:
15121512
<programlisting>
@@ -1518,7 +1518,7 @@ EXEC SQL START TRANSACTION;
15181518
</programlisting>
15191519
ECPG will report a syntax error for <literal>START
15201520
TRANSACTION</literal>, because it no longer
1521-
recognizes <literal>START</literal> as a SQL keyword,
1521+
recognizes <literal>START</literal> as an SQL keyword,
15221522
only as a typedef.
15231523
(If you have such a conflict, and renaming the typedef
15241524
seems impractical, you could write the SQL command
@@ -1530,7 +1530,7 @@ EXEC SQL START TRANSACTION;
15301530
In <productname>PostgreSQL</productname> releases before v16, use
15311531
of SQL keywords as typedef names was likely to result in syntax
15321532
errors associated with use of the typedef itself, rather than use
1533-
of the name as a SQL keyword. The new behavior is less likely to
1533+
of the name as an SQL keyword. The new behavior is less likely to
15341534
cause problems when an existing ECPG application is recompiled in
15351535
a new <productname>PostgreSQL</productname> release with new
15361536
keywords.

0 commit comments

Comments
 (0)