v.25.6Experimental Feature
Experimental indexes of type gin
Experimental indexes of typegin(which I don't like because it is an inside joke of PostgreSQL hackers) were renamed totext. Existing indexes of typeginremain loadable but they will throw an exception (suggestingtextindexes instead) when one tries to use them in searches. #80855 (Robert Schulze).
Why it matters
The rename addresses confusion caused by thegin index type name, which was an inside joke related to PostgreSQL and not intuitive for users. This change helps users adopt the new text index type for text search functionality and prevents accidental usage of deprecated gin indexes.How to use it
Users should create and usetext indexes instead of the deprecated gin type. Existing gin indexes remain loadable but will raise exceptions if used in searches, recommending migration to text indexes.