You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the provided github link we check if the value is a certain type to allow the GIN operator.
There should either be extra handling for psql and cockroachdb to support this gin_trgm_ops function on top of the Gin index to allow for string types to be indexed properly using a Gin Trigram; or a workaround to not error when it's used in the schema itself.
The text was updated successfully, but these errors were encountered:
CockroachDb allows for gin indexes on string types using the
gin_trgm_ops
function which comes with it.https://github.com/prisma/prisma-engines/blob/main/psl/parser-database/src/types.rs#L417-L440
In the provided github link we check if the value is a certain type to allow the
GIN
operator.There should either be extra handling for psql and cockroachdb to support this
gin_trgm_ops
function on top of theGin
index to allow for string types to be indexed properly using a Gin Trigram; or a workaround to not error when it's used in the schema itself.The text was updated successfully, but these errors were encountered: