summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane2000-09-25 16:36:36 +0000
committerTom Lane2000-09-25 16:36:36 +0000
commit74f0b61bf4c351b29b6e0ee4897e0bb5e04e7e54 (patch)
treef7814c160d96b3f209d96d3cba0e1b7d64221afd /src
parentfa1c31eab6614ea647db770b28442226bf61a00d (diff)
Karel missed an ichar->chr ...
Diffstat (limited to 'src')
-rw-r--r--src/include/utils/builtins.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h
index c0528bcecd7..c3b9b2d0bc9 100644
--- a/src/include/utils/builtins.h
+++ b/src/include/utils/builtins.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: builtins.h,v 1.138 2000/09/19 18:18:02 petere Exp $
+ * $Id: builtins.h,v 1.139 2000/09/25 16:36:36 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -456,7 +456,7 @@ extern Datum btrim(PG_FUNCTION_ARGS);
extern Datum ltrim(PG_FUNCTION_ARGS);
extern Datum rtrim(PG_FUNCTION_ARGS);
extern Datum translate(PG_FUNCTION_ARGS);
-extern Datum ichar(PG_FUNCTION_ARGS);
+extern Datum chr(PG_FUNCTION_ARGS);
extern Datum repeat(PG_FUNCTION_ARGS);
extern Datum ascii(PG_FUNCTION_ARGS);