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

Commit 4b11e39

Browse files
author
Thomas G. Lockhart
committed
Remove single-argument trim() function from table.
Never seen because the parser frontend converts all trim() calls to btrim(), ltrim(), and rtime() calls before execution.
1 parent 21d1e47 commit 4b11e39

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/include/catalog/pg_proc.h

Lines changed: 1 addition & 4 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.64 1998/08/11 18:28:47 momjian Exp $
9+
* $Id: pg_proc.h,v 1.65 1998/08/15 06:47:39 thomas Exp $
1010
*
1111
* NOTES
1212
* The script catalog/genbki.sh reads this file and generates .bki
@@ -2041,9 +2041,6 @@ DESCR("");
20412041
/* Oracle Compatibility Related Functions - By Edmund Mergl <E.Mergl@bawue.de> */
20422042
DATA(insert OID = 868 ( strpos PGUID 14 f t f 2 f 23 "25 25" 100 0 0 100 "select textpos($1, $2)" - ));
20432043
DESCR("find position of substring");
2044-
2045-
DATA(insert OID = 869 ( trim PGUID 14 f t f 1 f 25 "25" 100 0 0 100 "select btrim($1, \' \')" - ));
2046-
DESCR("trim trailing whitespace");
20472044
DATA(insert OID = 870 ( lower PGUID 11 f t f 1 f 25 "25" 100 0 0 100 foo bar ));
20482045
DESCR("lowercase");
20492046
DATA(insert OID = 871 ( upper PGUID 11 f t f 1 f 25 "25" 100 0 0 100 foo bar ));

0 commit comments

Comments
 (0)