fix(search): ensure pg_trgm extension availability for PostgreSQL search#7845
Merged
NGPixel merged 2 commits intorequarks:mainfrom Nov 13, 2025
Merged
Conversation
- Move pg_trgm extension creation to initialization phase to ensure availability - Add error handling for similarity search queries that depend on pg_trgm - Implement fallback to basic ILIKE matching when pg_trgm is unavailable - Add proper logging for debugging search-related issues Fixes issues where PostgreSQL search suggestions fail due to missing or improperly initialized pg_trgm extension, particularly in containerized environments where extension creation timing matters.
Refactor error handling for search suggestions to simplify code.
Member
|
Thanks. I removed the ILIKE fallback section as I don't think it will yield relevant enough suggestions, especially since it looks in middle of words as well. pg_trgm is a base extension that should always be included unless you build postgres yourself, so I'd rather have admins focus on adding the missing extension that having a fallback that produces subpar results. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes issues where PostgreSQL search suggestions fail due to missing or improperly initialized pg_trgm extension, particularly in containerized environments where extension creation timing matters.
@NGPixel - as requested.