diff --git a/src/sql/workbench/contrib/query/browser/query.contribution.ts b/src/sql/workbench/contrib/query/browser/query.contribution.ts index 06a2b5aa97..665e84b87c 100644 --- a/src/sql/workbench/contrib/query/browser/query.contribution.ts +++ b/src/sql/workbench/contrib/query/browser/query.contribution.ts @@ -522,6 +522,11 @@ const registryProperties: { [path: string]: IConfigurationPropertySchema; } = { 'type': 'boolean', 'default': true, 'description': localize('mssql.query.ansiNulls', "Enable SET ANSI_NULLS") + }, + 'mssql.query.alwaysEncryptedParameterization': { + 'type': 'boolean', + 'default': false, + 'description': localize('mssql.query.alwaysEncryptedParameterization', "Enable Parameterization for Always Encrypted") } };