Renaming query plan to execution plan (#18551)

This commit is contained in:
Aasim Khan
2022-02-25 00:49:34 -08:00
committed by GitHub
parent 8032f59d41
commit 02341088eb
165 changed files with 373 additions and 350 deletions

View File

@@ -332,7 +332,7 @@ export class QueryManagementService implements IQueryManagementService {
this._notify(resultSetInfo.ownerUri, (runner: QueryRunner) => {
runner.handleResultSetUpdated(resultSetInfo.resultSetSummary);
if (resultSetInfo.executionPlans && this._configurationService.getValue('workbench.enablePreviewFeatures')) {
runner.handleQueryPlan2Available(resultSetInfo.executionPlans);
runner.handleExecutionPlanAvailable(resultSetInfo.executionPlans);
}
});
}