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?
|
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?
| |||
|
feedback
|
|
PostgreSQL is case sensitive. To do what you want create a function index. So say
That way when you use See this link http://www.postgresql.org/docs/9.0/interactive/indexes-expressional.html | ||||
|
feedback
|
|
you should be able to create a function based index. (use the UPPER of the field) | |||
|
feedback
|