-
Avram currently supports `Array(String)`, but if you need to search an array with case insensitive, then things get a little hairy
(assuming you have a GIN index on this column...)
```
=# selec…
-
### Describe want to want
actually it's not able to introspect a citext column
```
// TODO: failed to parse database type 'citext'
email: unknown("email").notNull(),
```
-
Jira Link: [DB-2117](https://yugabyte.atlassian.net/browse/DB-2117)
When trying to create an index on a column with type `citext` I get the following error:
```
SQL Error [0A000]: ERROR: INDEX on c…
-
### SQLDelight Version
2.0.2
### SQLDelight Dialect
postgresql
### Describe the Bug
When defining the schema with CREATE EXTENSION and CREATE TABLE statements I would expect them to be executed i…
-
The citext type does not have a maximum length defined like the VARCHAR type. This makes validating the column character length difficult as it needs to be constrained by using a CHECK constraint. Loo…
-
### Bug description
When doing a prisma `findMany()` with a `distinct` on a Postgres View that has a column of type `CITEXT`, prisma does not return distinct records.
### How to reproduce
1. Crea…
-
PostGres 10.5
Build 130
For [CITEXT](https://www.postgresql.org/docs/current/static/citext.html), currently it says `unsupport` (which is bad english, should be `unsupported`).
-
### Bug description
There appears to be an issue with query performance of citext columns
Some kind of casting (or lack of casting) is happening that is preventing the use of citext indexes
Her…
-
In the passed, I had to register a custom codec to process the citext.
Is there a reason the library doesn't handle citext itself?
One issue I found with my custom codec is that the OID isn't alw…
-
I think `citext` is such a common extension that it is worth supporting it out of the box. What do you think?
```
go run ariga.io/entimport/cmd/entimport -dsn 'postgresql://postgres:postgres@localho…