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
43cfa1a0
Commit
43cfa1a0
authored
27 years ago
by
Thomas G. Lockhart
Browse files
Options
Downloads
Patches
Plain Diff
Fix incorrect second argument type for dpow() declaration.
parent
242b3478
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/catalog/pg_proc.h
+3
-3
3 additions, 3 deletions
src/include/catalog/pg_proc.h
with
3 additions
and
3 deletions
src/include/catalog/pg_proc.h
+
3
−
3
View file @
43cfa1a0
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_proc.h,v 1.5
0
1998/04/0
7 18:12:25 momjian
Exp $
* $Id: pg_proc.h,v 1.5
1
1998/04/0
8 06:40:09 thomas
Exp $
*
* NOTES
* The script catalog/genbki.sh reads this file and generates .bki
...
...
@@ -500,12 +500,12 @@ DATA(insert OID = 230 ( dsqrt PGUID 11 f t f 1 f 701 "701" 100 0 0 100 fo
DESCR
(
"square root"
);
DATA
(
insert
OID
=
231
(
dcbrt
PGUID
11
f
t
f
1
f
701
"701"
100
0
0
100
foo
bar
));
DESCR
(
"cube root"
);
DATA
(
insert
OID
=
232
(
dpow
PGUID
11
f
t
f
2
f
701
"701"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
232
(
dpow
PGUID
11
f
t
f
2
f
701
"701
701
"
100
0
0
100
foo
bar
));
DESCR
(
"exponentiation"
);
DATA
(
insert
OID
=
233
(
dexp
PGUID
11
f
t
f
1
f
701
"701"
100
0
0
100
foo
bar
));
DESCR
(
"exponential"
);
DATA
(
insert
OID
=
234
(
dlog1
PGUID
11
f
t
f
1
f
701
"701"
100
0
0
100
foo
bar
));
DESCR
(
"natural logarith (in psql, protect with ()"
);
DESCR
(
"natural logarith
m
(in psql, protect with ()"
);
DATA
(
insert
OID
=
235
(
i2tod
PGUID
11
f
t
f
1
f
701
"21"
100
0
0
100
foo
bar
));
DESCR
(
"convert"
);
...
...
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