We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent0aa1e9a commit7c7630cCopy full SHA for 7c7630c
doc/src/sgml/release-9.6.sgml
@@ -1026,7 +1026,7 @@ This commit is also listed under libpq and psql
1026
1027
<para>
1028
This view exposes the same information available from
1029
- thethe<application>pg_config</> comand-line utility,
+ the <application>pg_config</> comand-line utility,
1030
namely assorted compile-time configuration information for
1031
<productname>PostgreSQL</>.
1032
</para>
doc/src/sgml/runtime.sgml
@@ -184,7 +184,7 @@ postgres$ <userinput>initdb -D /usr/local/pgsql/data</userinput>
184
185
186
187
- Non-<literal>C</> andandnon-<literal>POSIX</> locales rely on the
+ Non-<literal>C</> and non-<literal>POSIX</> locales rely on the
188
operating system's collation library for character set ordering.
189
This controls the ordering of keys stored in indexes. For this reason,
190
a cluster cannot switch to an incompatible collation library version,
src/backend/access/transam/multixact.c
@@ -2802,7 +2802,7 @@ ReadMultiXactCounts(uint32 *multixacts, MultiXactOffset *members)
2802
* more aggressive in clamping this value. That not only causes autovacuum
2803
* to ramp up, but also makes any manual vacuums the user issues more
2804
* aggressive. This happens because vacuum_set_xid_limits() clamps the
2805
- * freeze table andandthe minimum freeze age based on the effective
+ * freeze table and the minimum freeze age based on the effective
2806
* autovacuum_multixact_freeze_max_age this function returns. In the worst
2807
* case, we'll claim the freeze_max_age to zero, and every vacuum of any
2808
* table will try to freeze every multixact.
src/backend/utils/adt/tsquery.c
@@ -691,7 +691,7 @@ parse_tsquery(char *buf,
691
findoprnd(ptr,query->size,&needcleanup);
692
693
/*
694
- * QI_VALSTOP nodes should be cleaned andandOP_PHRASE should be pushed
+ * QI_VALSTOP nodes should be cleaned and OP_PHRASE should be pushed
695
* down
696
*/
697
if (needcleanup)
src/test/regress/expected/privileges.out
@@ -390,7 +390,7 @@ INSERT INTO atest5(two) VALUES (6) ON CONFLICT (two) DO UPDATE set one = 8; -- f
390
ERROR: permission denied for relation atest5
391
INSERT INTO atest5(three) VALUES (4) ON CONFLICT (two) DO UPDATE set three = 10; -- fails (due to INSERT)
392
393
--- Check that thethecolumns in the inference require select privileges
+-- Check that the columns in the inference require select privileges
394
-- Error. No privs on four
395
INSERT INTO atest5(three) VALUES (4) ON CONFLICT (four) DO UPDATE set three = 10;
396
src/test/regress/sql/privileges.sql
@@ -259,7 +259,7 @@ INSERT INTO atest5(two) VALUES (6) ON CONFLICT (two) DO UPDATE set three = EXCLU
259
INSERT INTO atest5(two)VALUES (6)ON CONFLICT (two) DOUPDATEset three=EXCLUDED.three;
260
INSERT INTO atest5(two)VALUES (6)ON CONFLICT (two) DOUPDATEset one=8;-- fails (due to UPDATE)
261
INSERT INTO atest5(three)VALUES (4)ON CONFLICT (two) DOUPDATEset three=10;-- fails (due to INSERT)
262
263
264
INSERT INTO atest5(three)VALUES (4)ON CONFLICT (four) DOUPDATEset three=10;
265