From 53cb97af9b6a6fcc50a267c679e84a1c533c31fb Mon Sep 17 00:00:00 2001 From: Jeff Trimmer Date: Tue, 5 May 2020 12:01:01 -0700 Subject: [PATCH] Add Always Encrypted Parameterization Option (#10182) --- .../workbench/contrib/query/browser/query.contribution.ts | 5 +++++ 1 file changed, 5 insertions(+) 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") } };