mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-20 18:46:56 -05:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f9b968c1ae | ||
|
|
e3f6feb135 | ||
|
|
7b0be2e773 | ||
|
|
9fec7edba7 |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "azuredatastudio",
|
||||
"version": "1.14.0",
|
||||
"version": "1.14.1",
|
||||
"distro": "1ea70f8c965707516bf389622a3fc2aeb8a0321b",
|
||||
"author": {
|
||||
"name": "Microsoft Corporation"
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user