mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
Tired of seeing these warnings ...
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
/* -----------------------------------------------------------------------
|
/* -----------------------------------------------------------------------
|
||||||
* ascii.c
|
* ascii.c
|
||||||
*
|
*
|
||||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/ascii.c,v 1.3 2000/08/05 14:59:17 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/utils/adt/ascii.c,v 1.4 2000/08/26 21:56:23 tgl Exp $
|
||||||
*
|
*
|
||||||
* Portions Copyright (c) 1999-2000, PostgreSQL, Inc
|
* Portions Copyright (c) 1999-2000, PostgreSQL, Inc
|
||||||
*
|
*
|
||||||
@ -38,18 +38,21 @@ Datum
|
|||||||
to_ascii_encname(PG_FUNCTION_ARGS)
|
to_ascii_encname(PG_FUNCTION_ARGS)
|
||||||
{
|
{
|
||||||
multibyte_error();
|
multibyte_error();
|
||||||
|
return 0; /* keep compiler quiet */
|
||||||
}
|
}
|
||||||
|
|
||||||
Datum
|
Datum
|
||||||
to_ascii_enc(PG_FUNCTION_ARGS)
|
to_ascii_enc(PG_FUNCTION_ARGS)
|
||||||
{
|
{
|
||||||
multibyte_error();
|
multibyte_error();
|
||||||
|
return 0; /* keep compiler quiet */
|
||||||
}
|
}
|
||||||
|
|
||||||
Datum
|
Datum
|
||||||
to_ascii_default(PG_FUNCTION_ARGS)
|
to_ascii_default(PG_FUNCTION_ARGS)
|
||||||
{
|
{
|
||||||
multibyte_error();
|
multibyte_error();
|
||||||
|
return 0; /* keep compiler quiet */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -198,4 +201,4 @@ to_ascii_default(PG_FUNCTION_ARGS)
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* MULTIBYTE */
|
#endif /* MULTIBYTE */
|
||||||
|
Reference in New Issue
Block a user