Вы можете изменить на nondeterministi c сопоставление, но поскольку это кажется недоступным, вы можете установить citext extension , затем измените свои столбцы, чтобы ввести citext.
create extension if not exists citext.
alter table *table_name* alter column *column_name* set data type citext';
Полный пример приведен ниже. Я попытался создать скрипку. Однако citext не существовало, и у меня не было прав на установку расширения.
create extension if not exists citext;
create table test_ci( col1 text, col2 citext);
insert into test_ci(col1,col2)
( values ('ABC','XyZ'), ('ABc','lll'), ('Abc','LLL'), ('abc','xYz'))
select *
from test_ci
where col1 = 'ABC';
select *
from test_ci
where col2 = 'XYZ';
alter table test_ci alter col1 set data type citext;
select *
from test_ci
where col1 = 'ABC';