diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-02 18:41:22 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-02 18:41:22 +0000 |
commit | 5123139210a6767e99f3e420038d64926beb7d78 (patch) | |
tree | e4eadcde9f1d7d76c9f9de43f3ef39e99101f7a1 /src/include/utils/builtins.h | |
parent | f6e0130b5bee398b68ed64144cd0a467e8b8713a (diff) | |
download | postgresql-5123139210a6767e99f3e420038d64926beb7d78.tar.gz postgresql-5123139210a6767e99f3e420038d64926beb7d78.zip |
Remove encoding lookups from grammar stage, push them back to places
where it's safe to do database access. Along the way, fix core dump
for 'DEFAULT' parameters to CREATE DATABASE. initdb forced due to
change in pg_proc entry.
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 990c9f36be8..a933520daa2 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.203 2002/10/19 02:08:18 momjian Exp $ + * $Id: builtins.h,v 1.204 2002/11/02 18:41:22 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -696,6 +696,6 @@ extern Datum show_all_settings(PG_FUNCTION_ARGS); extern Datum pg_lock_status(PG_FUNCTION_ARGS); /* catalog/pg_conversion.c */ -extern Datum pg_convert3(PG_FUNCTION_ARGS); +extern Datum pg_convert_using(PG_FUNCTION_ARGS); #endif /* BUILTINS_H */ |