Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 43cfa1a

Browse files
author
Thomas G. Lockhart
committed
Fix incorrect second argument type for dpow() declaration.
1 parent 242b347 commit 43cfa1a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/include/catalog/pg_proc.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: pg_proc.h,v 1.50 1998/04/07 18:12:25 momjian Exp $
9+
* $Id: pg_proc.h,v 1.51 1998/04/08 06:40:09 thomas Exp $
1010
*
1111
* NOTES
1212
* 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
500500
DESCR("square root");
501501
DATA(insert OID = 231 ( dcbrt PGUID 11 f t f 1 f 701 "701" 100 0 0 100 foo bar ));
502502
DESCR("cube root");
503-
DATA(insert OID = 232 ( dpow PGUID 11 f t f 2 f 701 "701" 100 0 0 100 foo bar ));
503+
DATA(insert OID = 232 ( dpow PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100 foo bar ));
504504
DESCR("exponentiation");
505505
DATA(insert OID = 233 ( dexp PGUID 11 f t f 1 f 701 "701" 100 0 0 100 foo bar ));
506506
DESCR("exponential");
507507
DATA(insert OID = 234 ( dlog1 PGUID 11 f t f 1 f 701 "701" 100 0 0 100 foo bar ));
508-
DESCR("natural logarith (in psql, protect with ()");
508+
DESCR("natural logarithm (in psql, protect with ()");
509509

510510
DATA(insert OID = 235 ( i2tod PGUID 11 f t f 1 f 701 "21" 100 0 0 100 foo bar ));
511511
DESCR("convert");

0 commit comments

Comments
 (0)