Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
3d8fc8c6
Commit
3d8fc8c6
authored
8 years ago
by
Robert Haas
Browse files
Options
Downloads
Patches
Plain Diff
Schema-qualify some references to regprocedure.
Andreas Karlsson, per a gripe from Tom Lane.
parent
bf9a60ee
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/citext/citext--1.1--1.2.sql
+4
-4
4 additions, 4 deletions
contrib/citext/citext--1.1--1.2.sql
contrib/intagg/intagg--1.0--1.1.sql
+1
-1
1 addition, 1 deletion
contrib/intagg/intagg--1.0--1.1.sql
with
5 additions
and
5 deletions
contrib/citext/citext--1.1--1.2.sql
+
4
−
4
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
;
This diff is collapsed.
Click to expand it.
contrib/intagg/intagg--1.0--1.1.sql
+
1
−
1
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
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment