If I create a PostgreSQL unique index on a field, is the comparison case-insensitive by default?

If no, is it possible for ask PostgreSQL to ignore string case?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

PostgreSQL is case sensitive. To do what you want create a function index. So say

CREATE UNIQUE INDEX test_upper_idx ON mytable (upper(myfield));

That way when you use UPPER(myfield) in your query and the index will be used.

See this link http://www.postgresql.org/docs/9.0/interactive/indexes-expressional.html

link|improve this answer
feedback
CREATE UNIQUE INDEX ux_table_field ON mytable(UPPER(field))
link|improve this answer
feedback

you should be able to create a function based index. (use the UPPER of the field)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.