Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
f0fe1c8f
Commit
f0fe1c8f
authored
Aug 16, 2016
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos
From: Alexander Law <exclusion@gmail.com>
parent
a3bce17e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
doc/src/sgml/release-9.6.sgml
doc/src/sgml/release-9.6.sgml
+1
-1
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+1
-1
src/backend/access/transam/multixact.c
src/backend/access/transam/multixact.c
+1
-1
src/backend/utils/adt/tsquery.c
src/backend/utils/adt/tsquery.c
+1
-1
src/test/regress/expected/privileges.out
src/test/regress/expected/privileges.out
+1
-1
src/test/regress/sql/privileges.sql
src/test/regress/sql/privileges.sql
+1
-1
No files found.
doc/src/sgml/release-9.6.sgml
View file @
f0fe1c8f
...
...
@@ -1026,7 +1026,7 @@ This commit is also listed under libpq and psql
<para>
This view exposes the same information available from
the
the
<application>pg_config</> comand-line utility,
the <application>pg_config</> comand-line utility,
namely assorted compile-time configuration information for
<productname>PostgreSQL</>.
</para>
...
...
doc/src/sgml/runtime.sgml
View file @
f0fe1c8f
...
...
@@ -184,7 +184,7 @@ postgres$ <userinput>initdb -D /usr/local/pgsql/data</userinput>
</para>
<para>
Non-<literal>C</> and
and
non-<literal>POSIX</> locales rely on the
Non-<literal>C</> and non-<literal>POSIX</> locales rely on the
operating system's collation library for character set ordering.
This controls the ordering of keys stored in indexes. For this reason,
a cluster cannot switch to an incompatible collation library version,
...
...
src/backend/access/transam/multixact.c
View file @
f0fe1c8f
...
...
@@ -2802,7 +2802,7 @@ ReadMultiXactCounts(uint32 *multixacts, MultiXactOffset *members)
* more aggressive in clamping this value. That not only causes autovacuum
* to ramp up, but also makes any manual vacuums the user issues more
* aggressive. This happens because vacuum_set_xid_limits() clamps the
* freeze table and
and
the minimum freeze age based on the effective
* freeze table and the minimum freeze age based on the effective
* autovacuum_multixact_freeze_max_age this function returns. In the worst
* case, we'll claim the freeze_max_age to zero, and every vacuum of any
* table will try to freeze every multixact.
...
...
src/backend/utils/adt/tsquery.c
View file @
f0fe1c8f
...
...
@@ -691,7 +691,7 @@ parse_tsquery(char *buf,
findoprnd
(
ptr
,
query
->
size
,
&
needcleanup
);
/*
* QI_VALSTOP nodes should be cleaned and
and
OP_PHRASE should be pushed
* QI_VALSTOP nodes should be cleaned and OP_PHRASE should be pushed
* down
*/
if
(
needcleanup
)
...
...
src/test/regress/expected/privileges.out
View file @
f0fe1c8f
...
...
@@ -390,7 +390,7 @@ INSERT INTO atest5(two) VALUES (6) ON CONFLICT (two) DO UPDATE set one = 8; -- f
ERROR: permission denied for relation atest5
INSERT INTO atest5(three) VALUES (4) ON CONFLICT (two) DO UPDATE set three = 10; -- fails (due to INSERT)
ERROR: permission denied for relation atest5
-- Check that the
the
columns in the inference require select privileges
-- Check that the columns in the inference require select privileges
-- Error. No privs on four
INSERT INTO atest5(three) VALUES (4) ON CONFLICT (four) DO UPDATE set three = 10;
ERROR: permission denied for relation atest5
...
...
src/test/regress/sql/privileges.sql
View file @
f0fe1c8f
...
...
@@ -259,7 +259,7 @@ INSERT INTO atest5(two) VALUES (6) ON CONFLICT (two) DO UPDATE set three = EXCLU
INSERT
INTO
atest5
(
two
)
VALUES
(
6
)
ON
CONFLICT
(
two
)
DO
UPDATE
set
three
=
EXCLUDED
.
three
;
INSERT
INTO
atest5
(
two
)
VALUES
(
6
)
ON
CONFLICT
(
two
)
DO
UPDATE
set
one
=
8
;
-- fails (due to UPDATE)
INSERT
INTO
atest5
(
three
)
VALUES
(
4
)
ON
CONFLICT
(
two
)
DO
UPDATE
set
three
=
10
;
-- fails (due to INSERT)
-- Check that the
the
columns in the inference require select privileges
-- Check that the columns in the inference require select privileges
-- Error. No privs on four
INSERT
INTO
atest5
(
three
)
VALUES
(
4
)
ON
CONFLICT
(
four
)
DO
UPDATE
set
three
=
10
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment