fix: use dialect-aware identifier quoting in TableQueryBuilder#305
Merged
fix: use dialect-aware identifier quoting in TableQueryBuilder#305
Conversation
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughThis change introduces a customizable Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Possibly related PRs
Poem
✨ Finishing Touches
🧪 Generate unit tests (beta)
📝 Coding Plan
Comment |
datlechin
added a commit
that referenced
this pull request
Mar 13, 2026
datlechin
added a commit
that referenced
this pull request
Mar 13, 2026
…adata lookups (#306) * feat: replace hardcoded DatabaseType switches with dynamic plugin metadata lookups (#305) * fix: address PR review feedback for plugin metadata lookups * fix: address PR review round 2 feedback - Fix Switch Connection button disabled state (connection switching always works) - Localize cascade description strings in TableOperationDialog - Sanitize file extension in ConnectionFormView filePathPrompt - Deduplicate aliased plugins via ObjectIdentifier in PluginManager * fix: address code review issues in plugin metadata PR - Remove .db from DuckDB file extensions to avoid collision with SQLite - Use supportsImport plugin lookup instead of editorLanguage check in sidebar - Wire SidebarContextMenuLogic.importVisible into production view body - Simplify window title to unconditional "\(langName) Query" pattern - Update tests to match supportsImport-based import visibility
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.
Summary
dialectQuoteclosure toTableQueryBuilderso the fallback quote style matches the database dialect whenpluginDriveris nilRoot Cause
TableQueryBuilder.quote()had a hardcoded double-quote fallback whenpluginDriverwas nil. For MySQL/MariaDB/SQLite/ClickHouse,pluginDriveris always nil (they don't implementbuildBrowseQuery), so refresh queries used"table"instead of`table`.Meanwhile, the initial table open path (
QueryTab.buildBaseTableQuery) correctly usedquoteIdentifierFromDialect()to get backtick quoting from the dialect.Test plan
Summary by CodeRabbit