Commit e7fe89d5 authored by Bruce Momjian's avatar Bruce Momjian

This makes the initcap function compatible with Oracle 9i, it has been

tested on both redhat 8 and FreebSD.
--
Mike Nolan
parent 1e5a16cc
......@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/oracle_compat.c,v 1.44 2003/05/23 22:33:20 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/oracle_compat.c,v 1.45 2003/07/27 03:16:20 momjian Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -132,7 +132,8 @@ initcap(PG_FUNCTION_ARGS)
while (m-- > 0)
{
if (isspace((unsigned char) ptr[-1]))
/* Oracle capitalizes after all non-alphanumeric */
if (!isalnum((unsigned char) ptr[-1]))
*ptr = toupper((unsigned char) *ptr);
else
*ptr = tolower((unsigned char) *ptr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment