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";

View File

@@ -4704,6 +4704,10 @@ The Query Processor estimates that implementing the following index could improv
<value>Estimated CPU Cost</value>
<comment></comment>
</data>
<data name="ActualCpu" xml:space="preserve">
<value>Actual CPU Cost</value>
<comment></comment>
</data>
<data name="EstimatedIO" xml:space="preserve">
<value>Estimated IO Cost</value>
<comment></comment>

View File

@@ -2258,6 +2258,7 @@ EstimatedRows = Estimated Rows
ActualExecutions = Actual Executions
EstimatedExecutions = Estimated Executions
EstimatedCpu = Estimated CPU Cost
ActualCpu = Actual CPU Cost
EstimatedIO = Estimated IO Cost
AverageRowSize = Average Row Size
ActualDataSize = Actual Data Size

View File

@@ -6494,6 +6494,11 @@ The Query Processor estimates that implementing the following index could improv
<target state="new">The connection could not be found</target>
<note></note>
</trans-unit>
<trans-unit id="ActualCpu">
<source>Actual CPU Cost</source>
<target state="new">Actual CPU Cost</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>