mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
Make SandDance work generically for Kusto (#12229)
* Make SandDance work generically for Kusto and Postgres * Addressed comments * removed param Co-authored-by: Monica Gupta <mogupt@microsoft.com>
This commit is contained in:
@@ -111,9 +111,10 @@ export class MainThreadQueryEditor extends Disposable implements MainThreadQuery
|
||||
}
|
||||
}
|
||||
|
||||
public $registerQueryInfoListener(handle: number, providerId: string): void {
|
||||
public $registerQueryInfoListener(handle: number): void {
|
||||
this._register(this._queryModelService.onQueryEvent(event => {
|
||||
this._proxy.$onQueryEvent(handle, event.uri, event);
|
||||
let connectionProfile = this._connectionManagementService.getConnectionProfile(event.uri);
|
||||
this._proxy.$onQueryEvent(connectionProfile?.providerName, handle, event.uri, event);
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user