mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
pgindent run for 8.2.
This commit is contained in:
@ -11,7 +11,7 @@
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/utils/adt/like.c,v 1.65 2006/09/04 18:32:55 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/adt/like.c,v 1.66 2006/10/04 00:29:59 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -66,12 +66,12 @@ wchareq(char *p1, char *p2)
|
||||
|
||||
/*
|
||||
* Formerly we had a routine iwchareq() here that tried to do case-insensitive
|
||||
* comparison of multibyte characters. It did not work at all, however,
|
||||
* comparison of multibyte characters. It did not work at all, however,
|
||||
* because it relied on tolower() which has a single-byte API ... and
|
||||
* towlower() wouldn't be much better since we have no suitably cheap way
|
||||
* of getting a single character transformed to the system's wchar_t format.
|
||||
* So now, we just downcase the strings using lower() and apply regular LIKE
|
||||
* comparison. This should be revisited when we install better locale support.
|
||||
* comparison. This should be revisited when we install better locale support.
|
||||
*
|
||||
* Note that MBMatchText and MBMatchTextIC do exactly the same thing now.
|
||||
* Is it worth refactoring to avoid duplicated code? They might become
|
||||
@ -286,12 +286,12 @@ nameiclike(PG_FUNCTION_ARGS)
|
||||
else
|
||||
{
|
||||
/* Force inputs to lower case to achieve case insensitivity */
|
||||
text *strtext;
|
||||
text *strtext;
|
||||
|
||||
strtext = DatumGetTextP(DirectFunctionCall1(name_text,
|
||||
NameGetDatum(str)));
|
||||
strtext = DatumGetTextP(DirectFunctionCall1(lower,
|
||||
PointerGetDatum(strtext)));
|
||||
PointerGetDatum(strtext)));
|
||||
pat = DatumGetTextP(DirectFunctionCall1(lower,
|
||||
PointerGetDatum(pat)));
|
||||
|
||||
@ -327,12 +327,12 @@ nameicnlike(PG_FUNCTION_ARGS)
|
||||
else
|
||||
{
|
||||
/* Force inputs to lower case to achieve case insensitivity */
|
||||
text *strtext;
|
||||
text *strtext;
|
||||
|
||||
strtext = DatumGetTextP(DirectFunctionCall1(name_text,
|
||||
NameGetDatum(str)));
|
||||
strtext = DatumGetTextP(DirectFunctionCall1(lower,
|
||||
PointerGetDatum(strtext)));
|
||||
PointerGetDatum(strtext)));
|
||||
pat = DatumGetTextP(DirectFunctionCall1(lower,
|
||||
PointerGetDatum(pat)));
|
||||
|
||||
|
Reference in New Issue
Block a user