Case Insensitive Data Type - Mailing list pgsql-general

From Russell Black
Subject Case Insensitive Data Type
Date
Msg-id 061801c20342$881c8310$0464a8c0@iarchives.com
Whole thread Raw
Responses Re: Case Insensitive Data Type
Re: Case Insensitive Data Type
List pgsql-general
I'm using email addresses as a primary key in one of my tables.  Currently, I have to ensure that the email addresses are converted to lower case before they get put into the table, and that all lookups on that field are converted to lower case before the select statement, in order to ensure that Joe@Somewhere.com is the same as joe@somewhere.com.
 
Does anyone know of a case-insensitive data type?  I'd want the following behavior:
 
/* Make the primary key be a case-insensitive data type */
CREATE TABLE foo (email CASE_INSENSITIVE_VARCHAR(50) PRIMARY KEY, name VARCHAR(50));
 
/* Insert a row with a case insensitive key */
INSERT INTO foo VALUES ('joe@somewhere.com', 'Joe');
INSERT 24751 1
 
/* A different case of an existing primary key should fail */
INSERT INTO foo VALUES ('Joe@SOMEWHERE.com', 'Joe');  
ERROR:  Cannot insert a duplicate key into unique index foo_pkey
 
/* A lookup on a different case of an existing key should be successful: */
SELECT * FROM foo WHERE email = 'Joe@SOMEWHERE.com';
       email       | name
-------------------+------
 
joe@somewhere.com | Joe
(1 row)
 
Anyone know how I can accomplish this?  Can I create a custom data type to do this?
 
Thanks, Russell
 
 

pgsql-general by date:

Previous
From: Moritz Sinn
Date:
Subject: Re: user defined variables
Next
From: merlyn@stonehenge.com (Randal L. Schwartz)
Date:
Subject: [meta] complaint email addr when news.postgresql.org is down?