Removing circular references from Plan Comparison (#1498)

This commit is contained in:
Aasim Khan
2022-05-18 00:13:26 -07:00
committed by GitHub
parent 91db096b09
commit e7c7489b21
3 changed files with 6 additions and 12 deletions

View File

@@ -34,7 +34,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ExecutionPlan.Contracts
/// <summary>
/// List of matching nodes for the ExecutionGraphComparisonResult.
/// </summary>
public List<ExecutionGraphComparisonResult> MatchingNodes { get; set; } = new List<ExecutionGraphComparisonResult>();
public List<int> MatchingNodesId { get; set; } = new List<int>();
/// <summary>
/// The parent of the ExecutionGraphComparisonResult.
/// </summary>