-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQL server browser/connections API optimisations #60680
Conversation
🪟 Windows buildsDownload Windows builds of this PR for testing. 🪟 Windows Qt6 buildsDownload Windows Qt6 builds of this PR for testing. |
Lightens load when browsing SQL Server connections via browser
f61c8c9
to
555bbe3
Compare
I think this should be backported, given that it fixes #31101 |
299bc0d
to
e58ea42
Compare
Approval in #60728 |
The backport to
stderr
stdout
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-queued_ltr_backports queued_ltr_backports
# Navigate to the new working tree
cd .worktrees/backport-queued_ltr_backports
# Create a new branch
git switch --create backport-60680-to-queued_ltr_backports
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick 19df56c51a16dbb7791e069ea2b31ae9376015d8,f3c37f557fde81e009a24a8d5bacbcd2d6ea3096,555bbe3c44da8b63544ea5d01c802c109fe50a67,e58ea426666e874d31119cf603c9a58a8bff7bfc
# Push it to GitHub
git push --set-upstream origin backport-60680-to-queued_ltr_backports
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-queued_ltr_backports Then, create a pull request where the |
Considerably lightens the load when browsing SQL Server connections via browser by avoiding excessive database queries
Fixes #31101