From 86d98492e89d70b7a400ac5d53c5c23eda7752c2 Mon Sep 17 00:00:00 2001 From: Lewis Sanchez Date: Wed, 28 Aug 2024 19:11:53 -0700 Subject: [PATCH] Prefer copying from UI process --- src/sql/workbench/contrib/query/browser/query.contribution.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sql/workbench/contrib/query/browser/query.contribution.ts b/src/sql/workbench/contrib/query/browser/query.contribution.ts index a39a3ad0fc7c..922416f62e97 100644 --- a/src/sql/workbench/contrib/query/browser/query.contribution.ts +++ b/src/sql/workbench/contrib/query/browser/query.contribution.ts @@ -335,8 +335,8 @@ const queryEditorConfiguration: IConfigurationNode = { }, 'queryEditor.results.preferProvidersCopyHandler': { 'type': 'boolean', - 'description': localize('queryEditor.results.preferProvidersCopyHandler', "Whether the copy result request should be handled by the query provider when it is supported. The default value is true, set this to false to force all copy handling to be done by Azure Data Studio."), - 'default': true + 'description': localize('queryEditor.results.preferProvidersCopyHandler', "Whether the copy result request should be handled by the query provider when it is supported. The default value is false, set this to true to force all copy handling to be done by the query provider."), + 'default': false }, 'queryEditor.results.inMemoryDataProcessingThreshold': { 'type': 'number',