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
Fix unsupported parameter type handling - graceful degradation instead of FATAL errors
✅ **Issue: FATAL errors for unsupported parameter types**
- Replace FATAL error with graceful degradation to TEXT type
- Allow DBeaver and other clients to work with unsupported PostgreSQL parameter types
- Prevents connection drops when clients use advanced parameter types
- Matches the pattern we used for unknown parameter types in extended queries
This fixes issues where clients like DBeaver would encounter:
'FATAL: Unsupported parameter type: <some_type>'
Instead, unsupported types now gracefully fall back to TEXT, allowing the query to proceed.
0 commit comments