mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 09:35:39 -05:00
fix for 3245 (#3281)
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user