Re: Case Insensitive comparison

From: "George A(dot)J" <jinujosein(at)yahoo(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Case Insensitive comparison
Date: 2003-09-25 14:04:07
Message-ID: 20030925140407.64555.qmail@web14908.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


Thanks to all of you for your valuable suggesstions....
does postgresql internally uses the = operator(text,text) for any other purposes.
i think that overloading it solves the index problem too...

Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
Josh Berkus writes:
>> How can i create a function that accept and return any type. the type "any"
>> is not allowing as parameter or return type. Is it possible? i want to
>> create a function similar to NULLIF().

> You can't, nor will you be able to -- in te future, some 7.4 functions will be
> able to *accept* any type, but they will still return a specific type.

Au contraire. The 7.4 polymorphic-function features may well solve
jinujose's problem, if he can indeed write a type-independent function
body. For example

create function nullif(anyelement, anyelement) returns anyelement as
'select case when $1 = $2 then null else $1 end' language sql;

I'm not sure we're all the way there yet, cf
http://archives.postgresql.org/pgsql-general/2003-09/msg00500.php

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

---------------------------------
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message BenLaKnet 2003-09-25 15:20:37 [pg-sql] Character encoding
Previous Message Bruno Wolff III 2003-09-25 13:20:46 Re: Case Insensitive comparison