aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-01-17 00:40:51 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-01-17 00:40:51 +0000
commit90b883425a0c029bdef14ae4fabbeccfe74cdaf9 (patch)
treec665e395394f6ce4fb2cc7c843118c73c52feaf3 /src
parent2d4a05d7dfc475c65b838642e26da407561267bc (diff)
downloadpostgresql-90b883425a0c029bdef14ae4fabbeccfe74cdaf9.tar.gz
postgresql-90b883425a0c029bdef14ae4fabbeccfe74cdaf9.zip
Apparently, no one's ever used float4abs(), because it's got incorrect
data in its pg_proc entry. abs() doesn't require two arguments, last I heard.
Diffstat (limited to 'src')
-rw-r--r--src/include/catalog/pg_proc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h
index 32ef4bca2ec..e128590cc84 100644
--- a/src/include/catalog/pg_proc.h
+++ b/src/include/catalog/pg_proc.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_proc.h,v 1.112 2000/01/10 16:13:21 momjian Exp $
+ * $Id: pg_proc.h,v 1.113 2000/01/17 00:40:51 tgl Exp $
*
* NOTES
* The script catalog/genbki.sh reads this file and generates .bki
@@ -434,7 +434,7 @@ DATA(insert OID = 205 ( float4mi PGUID 11 f t t 2 f 700 "700 700" 100 0 0 1
DESCR("subtract");
DATA(insert OID = 206 ( float4um PGUID 11 f t t 1 f 700 "700" 100 0 0 100 float4um - ));
DESCR("subtract");
-DATA(insert OID = 207 ( float4abs PGUID 11 f t t 1 f 700 "700 700" 100 0 0 100 float4abs - ));
+DATA(insert OID = 207 ( float4abs PGUID 11 f t t 1 f 700 "700" 100 0 0 100 float4abs - ));
DESCR("absolute value");
DATA(insert OID = 208 ( float4inc PGUID 11 f t t 1 f 700 "700" 100 0 0 100 float4inc - ));
DESCR("increment");