Porting showplan code from ssms (#1280)

* Porting showplan code from ssms

* Moving showplans bits to a subfolder

* code cleanup

* Remvoing unnecssary conditional visibility
This commit is contained in:
Aasim Khan
2021-11-04 14:54:52 -07:00
committed by GitHub
parent e33caf38c4
commit e8c50caea1
49 changed files with 45123 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
namespace Microsoft.SqlTools.ServiceLayer.ShowPlan.ShowPlanGraph
{
public class Graph
{
public Node Root;
public Description Description;
}
}