Skip to content

Commit

Permalink
Set prefer provider copy setting to false for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
lewis-sanchez committed Aug 30, 2024
1 parent 8d33982 commit 550d24e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sql/workbench/contrib/query/browser/query.contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 true, except for linux where the default value is false, set this to false to force all copy handling to be done by Azure Data Studio."),
'default': process.platform !== 'linux' ? true : false,
},
'queryEditor.results.inMemoryDataProcessingThreshold': {
'type': 'number',
Expand Down

0 comments on commit 550d24e

Please sign in to comment.