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
3d8fc8c6
Commit
3d8fc8c6
authored
Jun 10, 2016
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Schema-qualify some references to regprocedure.
Andreas Karlsson, per a gripe from Tom Lane.
parent
bf9a60ee
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
contrib/citext/citext--1.1--1.2.sql
contrib/citext/citext--1.1--1.2.sql
+4
-4
contrib/intagg/intagg--1.0--1.1.sql
contrib/intagg/intagg--1.0--1.1.sql
+1
-1
No files found.
contrib/citext/citext--1.1--1.2.sql
View file @
3d8fc8c6
...
...
@@ -42,13 +42,13 @@ ALTER FUNCTION split_part(citext, citext, int) PARALLEL SAFE;
ALTER
FUNCTION
translate
(
citext
,
citext
,
text
)
PARALLEL
SAFE
;
UPDATE
pg_proc
SET
proparallel
=
's'
WHERE
oid
=
'min(citext)'
::
regprocedure
;
WHERE
oid
=
'min(citext)'
::
pg_catalog
.
regprocedure
;
UPDATE
pg_proc
SET
proparallel
=
's'
WHERE
oid
=
'max(citext)'
::
regprocedure
;
WHERE
oid
=
'max(citext)'
::
pg_catalog
.
regprocedure
;
UPDATE
pg_aggregate
SET
aggcombinefn
=
'citext_smaller'
WHERE
aggfnoid
=
'max(citext)'
::
regprocedure
;
WHERE
aggfnoid
=
'max(citext)'
::
pg_catalog
.
regprocedure
;
UPDATE
pg_aggregate
SET
aggcombinefn
=
'citext_larger'
WHERE
aggfnoid
=
'max(citext)'
::
regprocedure
;
WHERE
aggfnoid
=
'max(citext)'
::
pg_catalog
.
regprocedure
;
contrib/intagg/intagg--1.0--1.1.sql
View file @
3d8fc8c6
...
...
@@ -8,4 +8,4 @@ ALTER FUNCTION int_agg_final_array(internal) PARALLEL SAFE;
ALTER
FUNCTION
int_array_enum
(
int4
[])
PARALLEL
SAFE
;
UPDATE
pg_proc
SET
proparallel
=
's'
WHERE
oid
=
'int_array_aggregate(int4)'
::
regprocedure
;
WHERE
oid
=
'int_array_aggregate(int4)'
::
pg_catalog
.
regprocedure
;
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