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
Currently, sea-query cannot generate index creation statements that specify operator classes for expression indexes, such as creating a GiST index with gist_trgm_ops on a column or expression. This limits usage of PostgreSQL features like trigram indexes on expressions.
Proposed Solutions
Add support for specifying operator classes on columns and expressions in index definitions, allowing statements like:
CREATEINDEXidx_email_trgmON users USING GIST (email gist_trgm_ops);