Case Insensitive Data Type

From: "Russell Black" <russell(dot)black(at)iarchives(dot)com>
To: <pgsql-general(at)postgresql(dot)org>
Subject: Case Insensitive Data Type
Date: 2002-05-24 16:46:20
Message-ID: 061801c20342$881c8310$0464a8c0@iarchives.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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(at)Somewhere(dot)com is the same as joe(at)somewhere(dot)com(dot)

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(at)somewhere(dot)com', 'Joe');
INSERT 24751 1

/* A different case of an existing primary key should fail */
INSERT INTO foo VALUES ('Joe(at)SOMEWHERE(dot)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(at)SOMEWHERE(dot)com';
email | name
-------------------+------
joe(at)somewhere(dot)com | Joe
(1 row)

Anyone know how I can accomplish this? Can I create a custom data type to do this?

Thanks, Russell

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Randal L. Schwartz 2002-05-24 16:53:51 [meta] complaint email addr when news.postgresql.org is down?
Previous Message Moritz Sinn 2002-05-24 16:13:54 Re: user defined variables