1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

getdatabaseencoding() and PG_encoding_to_char() were being sloppy about

converting char* strings to type 'name'.  Imagine my surprise when 7.1
release coredumped upon start when compiled --enable-multibyte ...
This commit is contained in:
Tom Lane
2001-04-16 02:42:01 +00:00
parent 6ccb2af725
commit fbee97664e
3 changed files with 10 additions and 7 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.64 2001/03/22 04:00:00 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.65 2001/04/16 02:42:01 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -168,13 +168,13 @@ SetDataDir(const char *dir)
Datum
getdatabaseencoding(PG_FUNCTION_ARGS)
{
PG_RETURN_NAME("SQL_ASCII");
return DirectFunctionCall1(namein, CStringGetDatum("SQL_ASCII"));
}
Datum
PG_encoding_to_char(PG_FUNCTION_ARGS)
{
PG_RETURN_NAME("SQL_ASCII");
return DirectFunctionCall1(namein, CStringGetDatum("SQL_ASCII"));
}
Datum