Table Designer: Add config for table designer trigger behavior (#23165)

* add a config for table designer trigger behavior

* bump STS
This commit is contained in:
Hai Cao
2023-05-18 13:35:50 -07:00
committed by GitHub
parent d3f1d594e9
commit a1f2be73a6
3 changed files with 7 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{
"downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/{#version#}/microsoft.sqltools.servicelayer-{#fileName#}",
"version": "4.8.0.9",
"version": "4.8.0.10",
"downloadFileNames": {
"Windows_86": "win-x86-net7.0.zip",
"Windows_64": "win-x64-net7.0.zip",

View File

@@ -433,6 +433,11 @@
"default": false,
"description": "%mssql.tableDesigner.preloadDatabaseModel%"
},
"mssql.tableDesigner.allowDisableAndReenableDdlTriggers": {
"type": "boolean",
"default": true,
"description": "%mssql.tableDesigner.allowDisableAndReenableDdlTriggers%"
},
"mssql.objectExplorer.groupBySchema": {
"type": "boolean",
"default": false,

View File

@@ -177,6 +177,7 @@
"mssql.parallelMessageProcessing": "[Experimental] Whether the requests to the SQL Tools Service should be handled in parallel. This is introduced to discover the issues there might be when handling all requests in parallel. The default value is false. Azure Data Studio is required to be relaunched when the value is changed.",
"mssql.enableSqlAuthenticationProvider": "Enables use of the Sql Authentication Provider for 'Active Directory Interactive' authentication mode when user selects 'AzureMFA' authentication. This enables Server-side resource endpoint integration when fetching access tokens. This option is only supported for 'MSAL' Azure Authentication Library. Azure Data Studio is required to be relaunched when the value is changed.",
"mssql.tableDesigner.preloadDatabaseModel": "Whether to preload the database model when the database node in the object explorer is expanded. When enabled, the loading time of table designer can be reduced. Note: You might see higher than normal memory usage if you need to expand a lot of database nodes.",
"mssql.tableDesigner.allowDisableAndReenableDdlTriggers": "Whether to allow table designer to disable and re-enable DDL triggers during publish",
"mssql.objectExplorer.groupBySchema": "When enabled, the database objects in Object Explorer will be categorized by schema.",
"mssql.objectExplorer.enableGroupBySchema": "Enable Group By Schema",
"mssql.objectExplorer.disableGroupBySchema": "Disable Group By Schema",