Re: Make a column case insensitive - Mailing list pgsql-sql

From Jan Wieck
Subject Re: Make a column case insensitive
Date
Msg-id 4116F233.5040402@Yahoo.com
Whole thread Raw
In response to Make a column case insensitive  ("Gordon Ross" <G.Ross@ccw.gov.uk>)
Responses Re: Make a column case insensitive  (Pierre-Frédéric Caillaud<lists@boutiquenumerique.com>)
List pgsql-sql
On 8/6/2004 11:29 AM, Gordon Ross wrote:

> Is it possible to make a column case insensitive, without having to pepper your SELECTs with lots of lower() function
calls(and forgetting to do it at times !)
 
> 
> (I'm on 7.4.3)

With a little bit of legwork you can create an itext data type. It would 
just use textin() and textout() for the data type declaration itself. From there you'd define a bunch of comparision
operatorsthat are based 
 
on sql functions doing case insensitive comparision, plus an operator 
class and a couple of implicit casts. I don't think you'd even need a 
single line of C code for that new data type.


Jan


> 
> Thanks,
> 
> GTG
> 
> Gordon Ross,
> Network Manager/Rheolwr Rhydwaith
> Countryside Council for Wales/Cyngor Cefn Gwlad Cymru
> 
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org


-- 
#======================================================================#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me.                                  #
#================================================== JanWieck@Yahoo.com #


pgsql-sql by date:

Previous
From: Josh Berkus
Date:
Subject: Re: surrogate key or not?
Next
From: Pierre-Frédéric Caillaud
Date:
Subject: Re: Make a column case insensitive