From c32d4ee2f7f4070c6b992dab8fc09d21ccbcc68f Mon Sep 17 00:00:00 2001 From: Alan Ren Date: Mon, 19 Nov 2018 14:47:41 -0800 Subject: [PATCH] fix for 3245 (#3281) --- extensions/mssql/src/config.json | 2 +- extensions/mssql/yarn.lock | 6 +++--- extensions/profiler/package.json | 2 +- .../parts/profiler/contrib/profiler.contribution.ts | 10 +++++----- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/extensions/mssql/src/config.json b/extensions/mssql/src/config.json index 9fc282d26d..57d4a34fe2 100644 --- a/extensions/mssql/src/config.json +++ b/extensions/mssql/src/config.json @@ -1,6 +1,6 @@ { "downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/v{#version#}/microsoft.sqltools.servicelayer-{#fileName#}", - "version": "1.5.0-alpha.55", + "version": "1.5.0-alpha.56", "downloadFileNames": { "Windows_86": "win-x86-netcoreapp2.2.zip", "Windows_64": "win-x64-netcoreapp2.2.zip", diff --git a/extensions/mssql/yarn.lock b/extensions/mssql/yarn.lock index 0748af64ed..fa295abb5f 100644 --- a/extensions/mssql/yarn.lock +++ b/extensions/mssql/yarn.lock @@ -75,9 +75,9 @@ core-util-is@~1.0.0: resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= -"dataprotocol-client@github:Microsoft/sqlops-dataprotocolclient#0.2.8": - version "0.2.8" - resolved "https://codeload.github.com/Microsoft/sqlops-dataprotocolclient/tar.gz/3ec3ec3fa63a8dae958c18a85b91fec74c50aec5" +"dataprotocol-client@github:Microsoft/sqlops-dataprotocolclient#0.2.9": + version "0.2.9" + resolved "https://codeload.github.com/Microsoft/sqlops-dataprotocolclient/tar.gz/0a3c0f22940d1c67bb567171508ccb1169c6313a" dependencies: vscode-languageclient "3.5.1" diff --git a/extensions/profiler/package.json b/extensions/profiler/package.json index 58d78adeff..ae073ef5fc 100644 --- a/extensions/profiler/package.json +++ b/extensions/profiler/package.json @@ -2,7 +2,7 @@ "name": "profiler", "displayName": "SQL Server Profiler", "description": "SQL Server Profiler for Azure Data Studio", - "version": "0.4.0", + "version": "0.5.0", "publisher": "Microsoft", "preview": true, "license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt", diff --git a/src/sql/parts/profiler/contrib/profiler.contribution.ts b/src/sql/parts/profiler/contrib/profiler.contribution.ts index bc4170de8e..0c765405d0 100644 --- a/src/sql/parts/profiler/contrib/profiler.contribution.ts +++ b/src/sql/parts/profiler/contrib/profiler.contribution.ts @@ -45,7 +45,7 @@ const profilerViewTemplateSchema: IJSONSchema = { }, { name: 'TextData', - eventsMapped: ['options_text', 'batch_text'] + eventsMapped: ['options_text', 'batch_text', 'statement'] }, { name: 'ApplicationName', @@ -99,7 +99,7 @@ const profilerViewTemplateSchema: IJSONSchema = { }, { name: 'TextData', - eventsMapped: ['options_text', 'batch_text'] + eventsMapped: ['options_text', 'batch_text', 'statement'] }, { name: 'SPID', @@ -120,7 +120,7 @@ const profilerViewTemplateSchema: IJSONSchema = { }, { name: 'TextData', - eventsMapped: ['options_text', 'batch_text'] + eventsMapped: ['options_text', 'batch_text', 'statement'] }, { name: 'Duration', @@ -157,7 +157,7 @@ const profilerViewTemplateSchema: IJSONSchema = { }, { name: 'TextData', - eventsMapped: ['options_text', 'batch_text'] + eventsMapped: ['options_text', 'batch_text', 'statement'] }, { name: 'ApplicationName', @@ -214,7 +214,7 @@ const profilerViewTemplateSchema: IJSONSchema = { }, { name: 'TextData', - eventsMapped: ['options_text', 'batch_text'] + eventsMapped: ['options_text', 'batch_text', 'statement'] }, { name: 'SPID',