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: address PR review findings for DuckDB integration
- Use regexp_matches() for DuckDB regex filter instead of ~ operator
(DuckDB ~ is full-match, not substring like PostgreSQL)
- Add explicit CAST(column AS VARCHAR) for DuckDB LIKE on non-text columns
- Fix index column regex to handle schema-qualified identifiers
- Replace regex-based stripLimitOffset with parenthesis-aware parser
that only strips top-level trailing LIMIT/OFFSET clauses
- Add .duckdb to SQLStatementGenerator ($N placeholders, standard
UPDATE/DELETE), SQLEscaping, and SQLParameterInliner
- Add DuckDB case to showAllTablesMetadata via information_schema
- Sync autocomplete types with TypePickerContentView (add TINYINT,
SMALLINT, CHAR, BPCHAR, BLOB, BYTEA, TIMESTAMP WITH TIME ZONE, etc.)
0 commit comments