mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-25 09:35:37 -05:00
Renames ShowPlan directories along with corresponding namespaces (#1435)
* Renames ShowPlan directories along with corresponding namespaces * Renames ShowPlanGraphUtils to ExecutionPlanGraphUtils * Revert "Renames ShowPlanGraphUtils to ExecutionPlanGraphUtils" This reverts commit 5dc2696ae906598447eed7360a3f342218432b83. * Reverts show plan tests name change. * Renames show plan test XML files. * Renames ported directory to ShowPlan and updates namespace accordingly
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.SqlTools.Hosting.Protocol.Contracts;
|
||||
|
||||
namespace Microsoft.SqlTools.ServiceLayer.ExecutionPlan
|
||||
{
|
||||
public class GetExecutionPlanParams
|
||||
{
|
||||
public ExecutionPlanGraphInfo GraphInfo { get; set; }
|
||||
}
|
||||
|
||||
public class GetExecutionPlanResult
|
||||
{
|
||||
public List<ExecutionPlanGraph> Graphs { get; set; }
|
||||
}
|
||||
|
||||
public class GetExecutionPlanRequest
|
||||
{
|
||||
public static readonly
|
||||
RequestType<GetExecutionPlanParams, GetExecutionPlanResult> Type =
|
||||
RequestType<GetExecutionPlanParams, GetExecutionPlanResult>.Create("queryexecutionplan/getexecutionplan");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user