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

Commit f0fe1c8

Browse files
committed
Fix typos
From: Alexander Law <exclusion@gmail.com>
1 parent a3bce17 commit f0fe1c8

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

doc/src/sgml/release-9.6.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ This commit is also listed under libpq and psql
10261026

10271027
<para>
10281028
This view exposes the same information available from
1029-
the the <application>pg_config</> comand-line utility,
1029+
the <application>pg_config</> comand-line utility,
10301030
namely assorted compile-time configuration information for
10311031
<productname>PostgreSQL</>.
10321032
</para>

doc/src/sgml/runtime.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ postgres$ <userinput>initdb -D /usr/local/pgsql/data</userinput>
184184
</para>
185185

186186
<para>
187-
Non-<literal>C</> and and non-<literal>POSIX</> locales rely on the
187+
Non-<literal>C</> and non-<literal>POSIX</> locales rely on the
188188
operating system's collation library for character set ordering.
189189
This controls the ordering of keys stored in indexes. For this reason,
190190
a cluster cannot switch to an incompatible collation library version,

src/backend/access/transam/multixact.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2802,7 +2802,7 @@ ReadMultiXactCounts(uint32 *multixacts, MultiXactOffset *members)
28022802
* more aggressive in clamping this value. That not only causes autovacuum
28032803
* to ramp up, but also makes any manual vacuums the user issues more
28042804
* aggressive. This happens because vacuum_set_xid_limits() clamps the
2805-
* freeze table and and the minimum freeze age based on the effective
2805+
* freeze table and the minimum freeze age based on the effective
28062806
* autovacuum_multixact_freeze_max_age this function returns. In the worst
28072807
* case, we'll claim the freeze_max_age to zero, and every vacuum of any
28082808
* table will try to freeze every multixact.

src/backend/utils/adt/tsquery.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ parse_tsquery(char *buf,
691691
findoprnd(ptr, query->size, &needcleanup);
692692

693693
/*
694-
* QI_VALSTOP nodes should be cleaned and and OP_PHRASE should be pushed
694+
* QI_VALSTOP nodes should be cleaned and OP_PHRASE should be pushed
695695
* down
696696
*/
697697
if (needcleanup)

src/test/regress/expected/privileges.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ INSERT INTO atest5(two) VALUES (6) ON CONFLICT (two) DO UPDATE set one = 8; -- f
390390
ERROR: permission denied for relation atest5
391391
INSERT INTO atest5(three) VALUES (4) ON CONFLICT (two) DO UPDATE set three = 10; -- fails (due to INSERT)
392392
ERROR: permission denied for relation atest5
393-
-- Check that the the columns in the inference require select privileges
393+
-- Check that the columns in the inference require select privileges
394394
-- Error. No privs on four
395395
INSERT INTO atest5(three) VALUES (4) ON CONFLICT (four) DO UPDATE set three = 10;
396396
ERROR: permission denied for relation atest5

src/test/regress/sql/privileges.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ INSERT INTO atest5(two) VALUES (6) ON CONFLICT (two) DO UPDATE set three = EXCLU
259259
INSERT INTO atest5(two) VALUES (6) ON CONFLICT (two) DO UPDATE set three = EXCLUDED.three;
260260
INSERT INTO atest5(two) VALUES (6) ON CONFLICT (two) DO UPDATE set one = 8; -- fails (due to UPDATE)
261261
INSERT INTO atest5(three) VALUES (4) ON CONFLICT (two) DO UPDATE set three = 10; -- fails (due to INSERT)
262-
-- Check that the the columns in the inference require select privileges
262+
-- Check that the columns in the inference require select privileges
263263
-- Error. No privs on four
264264
INSERT INTO atest5(three) VALUES (4) ON CONFLICT (four) DO UPDATE set three = 10;
265265

0 commit comments

Comments
 (0)