Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7a8f439

Browse files
committed
In docs, rename "backwards compatibility" to "backward compatibility"
for consistency.
1 parente3c732a commit7a8f439

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

‎doc/src/sgml/array.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ SELECT f1[1][-2][3] AS e1, f1[1][-1][5] AS e2
646646
If the value written for an element is <literal>NULL</> (in any case
647647
variant), the element is taken to be NULL. The presence of any quotes
648648
or backslashes disables this and allows the literal string value
649-
<quote>NULL</> to be entered. Also, forbackwards compatibility with
649+
<quote>NULL</> to be entered. Also, forbackward compatibility with
650650
pre-8.2 versions of <productname>PostgreSQL</>, the <xref
651651
linkend="guc-array-nulls"> configuration parameter can be turned
652652
<literal>off</> to suppress recognition of <literal>NULL</> as a NULL.

‎doc/src/sgml/config.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5357,7 +5357,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
53575357
null values to be entered. However, <productname>PostgreSQL</> versions
53585358
before 8.2 did not support null values in arrays, and therefore would
53595359
treat <literal>NULL</> as specifying a normal array element with
5360-
the string value <quote>NULL</>. Forbackwards compatibility with
5360+
the string value <quote>NULL</>. Forbackward compatibility with
53615361
applications that require the old behavior, this variable can be
53625362
turned <literal>off</>.
53635363
</para>

‎doc/src/sgml/func.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9695,7 +9695,7 @@ nextval('foo') <lineannotation>searches search path for <literal>fo
96959695
Before <productname>PostgreSQL</productname> 8.1, the arguments of the
96969696
sequence functions were of type <type>text</>, not <type>regclass</>, and
96979697
the above-described conversion from a text string to an OID value would
9698-
happen at run time during each call. Forbackwards compatibility, this
9698+
happen at run time during each call. Forbackward compatibility, this
96999699
facility still exists, but internally it is now handled as an implicit
97009700
coercion from <type>text</> to <type>regclass</> before the function is
97019701
invoked.

‎doc/src/sgml/libpq.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1313,7 +1313,7 @@ char *PQport(const PGconn *conn);
13131313
Returns the debug <acronym>TTY</acronym> of the connection.
13141314
(This is obsolete, since the server no longer pays attention
13151315
to the <acronym>TTY</acronym> setting, but the function remains
1316-
forbackwards compatibility.)
1316+
forbackward compatibility.)
13171317

13181318
<synopsis>
13191319
char *PQtty(const PGconn *conn);
@@ -6933,7 +6933,7 @@ ldap://ldap.acme.com/cn=dbserver,cn=hosts?pgconnectinfo?base?(objectclass=*)
69336933
The default value for <literal>sslmode</> is <literal>prefer</>. As is shown
69346934
in the table, this makes no sense from a security point of view, and it only
69356935
promises performance overhead if possible. It is only provided as the default
6936-
forbackwards compatibility, and is not recommended in secure deployments.
6936+
forbackward compatibility, and is not recommended in secure deployments.
69376937
</para>
69386938

69396939
</sect2>

‎doc/src/sgml/lobj.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Oid lo_creat(PGconn *conn, int mode);
114114

115115
<replaceable class="parameter">mode</replaceable> is unused and
116116
ignored as of <productname>PostgreSQL</productname> 8.1; however, for
117-
backwards compatibility with earlier releases it is best to
117+
backward compatibility with earlier releases it is best to
118118
set it to <symbol>INV_READ</symbol>, <symbol>INV_WRITE</symbol>,
119119
or <symbol>INV_READ</symbol> <literal>|</> <symbol>INV_WRITE</symbol>.
120120
(These symbolic constants are defined

‎doc/src/sgml/plperl.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ select returns_array();
202202
<para>
203203
Perl passes <productname>PostgreSQL</productname> arrays as a blessed
204204
PostgreSQL::InServer::ARRAY object. This object may be treated as an array
205-
reference or a string, allowing forbackwards compatibility with Perl
205+
reference or a string, allowing forbackward compatibility with Perl
206206
code written for <productname>PostgreSQL</productname> versions below 9.1 to
207207
run. For example:
208208

‎doc/src/sgml/user-manag.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ RESET ROLE;
384384
roles being used as SQL roles the <literal>INHERIT</> attribute, while
385385
giving roles being used as SQL users the <literal>NOINHERIT</> attribute.
386386
However, <productname>PostgreSQL</productname> defaults to giving all roles
387-
the <literal>INHERIT</> attribute, forbackwards compatibility with pre-8.1
387+
the <literal>INHERIT</> attribute, forbackward compatibility with pre-8.1
388388
releases in which users always had use of permissions granted to groups
389389
they were members of.
390390
</para>

‎doc/src/sgml/xfunc.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1368,7 +1368,7 @@ CREATE FUNCTION test(int, int) RETURNS int
13681368
The <quote>body</quote> of the function definition
13691369
specifies the C-language name of the function, which need not be the
13701370
same as the name being declared for SQL use.
1371-
(For reasons ofbackwards compatibility, an empty body
1371+
(For reasons ofbackward compatibility, an empty body
13721372
is accepted as meaning that the C-language function name is the
13731373
same as the SQL name.)
13741374
</para>
@@ -2701,7 +2701,7 @@ typedef struct
27012701
/*
27022702
* OPTIONAL pointer to result slot
27032703
*
2704-
* This is obsolete and only present forbackwards compatibility, viz,
2704+
* This is obsolete and only present forbackward compatibility, viz,
27052705
* user-defined SRFs that use the deprecated TupleDescGetSlot().
27062706
*/
27072707
TupleTableSlot *slot;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp