• Steven's avatar
    fix(store): fix PostgreSQL tag filtering type inference error · 424f11f2
    Steven authored
    Resolves issue where tag filtering in PostgreSQL databases failed with "operator does not exist: jsonb ~~ unknown" error. The hierarchical tag filtering feature introduced in commit 5e47f25b generated SQL with implicit type placeholders that PostgreSQL couldn't infer.
    
    The fix explicitly casts the LIKE comparison placeholder to text (::text) in the PostgreSQL dialect, ensuring proper type resolution for the query parameter.
    
    Fixes #5275
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    Co-Authored-By: 's avatarClaude <noreply@anthropic.com>
    424f11f2
Name
Last commit
Last update
..
MAINTENANCE.md Loading commit data...
README.md Loading commit data...
engine.go Loading commit data...
helpers.go Loading commit data...
ir.go Loading commit data...
parser.go Loading commit data...
render.go Loading commit data...
schema.go Loading commit data...