Compare commits

..

4 Commits

Author SHA1 Message Date
Anthony Dresser
f9b968c1ae use URI to equal (#8770) 2019-12-23 18:05:34 -08:00
Karl Burtram
e3f6feb135 Revert "Bump SQL Tools to 2.0.0-release.41"
This reverts commit 7b0be2e773.
2019-12-23 18:01:32 -08:00
Karl Burtram
7b0be2e773 Bump SQL Tools to 2.0.0-release.41 2019-12-19 13:30:11 -08:00
Karl Burtram
9fec7edba7 Bump to 1.14.1 for Dec hotfix 1 2019-12-19 13:28:46 -08:00
2 changed files with 4 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "azuredatastudio",
"version": "1.14.0",
"version": "1.14.1",
"distro": "1ea70f8c965707516bf389622a3fc2aeb8a0321b",
"author": {
"name": "Microsoft Corporation"

View File

@@ -24,6 +24,7 @@ import { attachTabbedPanelStyler } from 'sql/platform/theme/common/styler';
import { IThemeService } from 'vs/platform/theme/common/themeService';
import { Event } from 'vs/base/common/event';
import { startsWith } from 'vs/base/common/strings';
import { URI } from 'vs/base/common/uri';
class MessagesView extends Disposable implements IPanelView {
private messagePanel: MessagePanel;
@@ -317,8 +318,8 @@ export class QueryResultsView extends Disposable {
this.setQueryRunner(info.queryRunner);
} else {
let disposable = this.queryModelService.onRunQueryStart(c => {
if (c === input.uri) {
let info = this.queryModelService._getQueryInfo(input.uri);
if (URI.parse(c).toString() === URI.parse(input.uri).toString()) {
let info = this.queryModelService._getQueryInfo(c);
this.setQueryRunner(info.queryRunner);
disposable.dispose();
}