mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-15 03:21:37 -04:00
Adding Query Store Service bindings on ADS side (#24167)
* Checkpoint * Adding docstrings * Updating comments
This commit is contained in:
@@ -31,6 +31,7 @@ import { AzureBlobService } from './azureBlob/azureBlobService';
|
||||
import { ErrorDiagnosticsProvider } from './errorDiagnostics/errorDiagnosticsProvider';
|
||||
import { SqlProjectsService } from './sqlProjects/sqlProjectsService';
|
||||
import { ObjectManagementService } from './objectManagement/objectManagementService';
|
||||
import { QueryStoreService } from './queryStore/queryStoreService';
|
||||
|
||||
const localize = nls.loadMessageBundle();
|
||||
const outputChannel = vscode.window.createOutputChannel(Constants.serviceName);
|
||||
@@ -249,7 +250,8 @@ function getClientOptions(context: AppContext): ClientOptions {
|
||||
ExecutionPlanServiceFeature,
|
||||
// ServerContextualizationServiceFeature, // LEWISSANCHEZ TODO: Put this provider back once STS changes are complete
|
||||
ErrorDiagnosticsProvider.asFeature(context),
|
||||
ObjectManagementService.asFeature(context)
|
||||
ObjectManagementService.asFeature(context),
|
||||
QueryStoreService.asFeature(context)
|
||||
],
|
||||
outputChannel: outputChannel,
|
||||
// Automatically reveal the output channel only in dev mode, so that the users are not impacted and issues can still be caught during development.
|
||||
|
||||
Reference in New Issue
Block a user