Adding new top operation column and comp rule for node id (#1719)

* Adding actual cpu cost in top operations

* Adding node id attribute
This commit is contained in:
Aasim Khan
2022-10-06 16:05:39 -07:00
committed by GitHub
parent c7c012dbe1
commit a0390e8127
6 changed files with 46 additions and 1 deletions

View File

@@ -8605,6 +8605,14 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
public static string ActualCpu
{
get
{
return Keys.GetString(Keys.ActualCpu);
}
}
public static string EstimatedIO
{
get
@@ -13429,6 +13437,9 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string EstimatedCpu = "EstimatedCpu";
public const string ActualCpu = "ActualCpu";
public const string EstimatedIO = "EstimatedIO";