diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-08-15 06:47:39 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-08-15 06:47:39 +0000 |
commit | 4b11e394bc4692eeb4834024116b5b0afa2c2726 (patch) | |
tree | 84a317c5b01fd03395524374fb37cd52d6f62452 /src | |
parent | 21d1e474f5fb50c479deb7b43b39a8c0ba491348 (diff) | |
download | postgresql-4b11e394bc4692eeb4834024116b5b0afa2c2726.tar.gz postgresql-4b11e394bc4692eeb4834024116b5b0afa2c2726.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_proc.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index 5de1f6eaee8..af78e4b1eb3 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.64 1998/08/11 18:28:47 momjian Exp $ + * $Id: pg_proc.h,v 1.65 1998/08/15 06:47:39 thomas Exp $ * * NOTES * The script catalog/genbki.sh reads this file and generates .bki @@ -2041,9 +2041,6 @@ DESCR(""); /* Oracle Compatibility Related Functions - By Edmund Mergl <E.Mergl@bawue.de> */ DATA(insert OID = 868 ( strpos PGUID 14 f t f 2 f 23 "25 25" 100 0 0 100 "select textpos($1, $2)" - )); DESCR("find position of substring"); - -DATA(insert OID = 869 ( trim PGUID 14 f t f 1 f 25 "25" 100 0 0 100 "select btrim($1, \' \')" - )); -DESCR("trim trailing whitespace"); DATA(insert OID = 870 ( lower PGUID 11 f t f 1 f 25 "25" 100 0 0 100 foo bar )); DESCR("lowercase"); DATA(insert OID = 871 ( upper PGUID 11 f t f 1 f 25 "25" 100 0 0 100 foo bar )); |