mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -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#}",
|
"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": {
|
"downloadFileNames": {
|
||||||
"Windows_86": "win-x86-netcoreapp2.2.zip",
|
"Windows_86": "win-x86-netcoreapp2.2.zip",
|
||||||
"Windows_64": "win-x64-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"
|
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
||||||
integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
|
integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
|
||||||
|
|
||||||
"dataprotocol-client@github:Microsoft/sqlops-dataprotocolclient#0.2.8":
|
"dataprotocol-client@github:Microsoft/sqlops-dataprotocolclient#0.2.9":
|
||||||
version "0.2.8"
|
version "0.2.9"
|
||||||
resolved "https://codeload.github.com/Microsoft/sqlops-dataprotocolclient/tar.gz/3ec3ec3fa63a8dae958c18a85b91fec74c50aec5"
|
resolved "https://codeload.github.com/Microsoft/sqlops-dataprotocolclient/tar.gz/0a3c0f22940d1c67bb567171508ccb1169c6313a"
|
||||||
dependencies:
|
dependencies:
|
||||||
vscode-languageclient "3.5.1"
|
vscode-languageclient "3.5.1"
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "profiler",
|
"name": "profiler",
|
||||||
"displayName": "SQL Server Profiler",
|
"displayName": "SQL Server Profiler",
|
||||||
"description": "SQL Server Profiler for Azure Data Studio",
|
"description": "SQL Server Profiler for Azure Data Studio",
|
||||||
"version": "0.4.0",
|
"version": "0.5.0",
|
||||||
"publisher": "Microsoft",
|
"publisher": "Microsoft",
|
||||||
"preview": true,
|
"preview": true,
|
||||||
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ const profilerViewTemplateSchema: IJSONSchema = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'TextData',
|
name: 'TextData',
|
||||||
eventsMapped: ['options_text', 'batch_text']
|
eventsMapped: ['options_text', 'batch_text', 'statement']
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'ApplicationName',
|
name: 'ApplicationName',
|
||||||
@@ -99,7 +99,7 @@ const profilerViewTemplateSchema: IJSONSchema = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'TextData',
|
name: 'TextData',
|
||||||
eventsMapped: ['options_text', 'batch_text']
|
eventsMapped: ['options_text', 'batch_text', 'statement']
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'SPID',
|
name: 'SPID',
|
||||||
@@ -120,7 +120,7 @@ const profilerViewTemplateSchema: IJSONSchema = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'TextData',
|
name: 'TextData',
|
||||||
eventsMapped: ['options_text', 'batch_text']
|
eventsMapped: ['options_text', 'batch_text', 'statement']
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Duration',
|
name: 'Duration',
|
||||||
@@ -157,7 +157,7 @@ const profilerViewTemplateSchema: IJSONSchema = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'TextData',
|
name: 'TextData',
|
||||||
eventsMapped: ['options_text', 'batch_text']
|
eventsMapped: ['options_text', 'batch_text', 'statement']
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'ApplicationName',
|
name: 'ApplicationName',
|
||||||
@@ -214,7 +214,7 @@ const profilerViewTemplateSchema: IJSONSchema = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'TextData',
|
name: 'TextData',
|
||||||
eventsMapped: ['options_text', 'batch_text']
|
eventsMapped: ['options_text', 'batch_text', 'statement']
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'SPID',
|
name: 'SPID',
|
||||||
|
|||||||
Reference in New Issue
Block a user