Open timothyvanderaerden opened 3 years ago
Jira Link: DB-2117 When trying to create an index on a column with type citext I get the following error:
citext
SQL Error [0A000]: ERROR: INDEX on column of type 'user_defined_type' not yet supported
I tested with the following SQL:
CREATE TABLE public.test ( email citext NULL ); CREATE INDEX test_email_idx ON public.test (email);
Hi @timothyvanderaerden
Indexes on citext aren't yet available. As a workaround you can use LOWER() like it's explained in PostgreSQL docs.
LOWER()
Jira Link: DB-2117 When trying to create an index on a column with type
citext
I get the following error:I tested with the following SQL: