mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-21 09:35:39 -05:00
Adding more top operations columns and fixing some column values (#1571)
* Adding more rules for prop * adding top operations to ep * Reverting changes made to display cost * Fixing comments * Removing whitespace * Fixing data size property * Adding const keys, fixing to table data, adding more info * Removing undeclared prop
This commit is contained in:
@@ -8565,11 +8565,11 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string EstimatedAverageRowSize
|
||||
public static string AverageRowSize
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.EstimatedAverageRowSize);
|
||||
return Keys.GetString(Keys.AverageRowSize);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13076,7 +13076,7 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string EstimatedIO = "EstimatedIO";
|
||||
|
||||
|
||||
public const string EstimatedAverageRowSize = "EstimatedAverageRowSize";
|
||||
public const string AverageRowSize = "AverageRowSize";
|
||||
|
||||
|
||||
public const string ActualDataSize = "ActualDataSize";
|
||||
|
||||
@@ -4618,7 +4618,7 @@
|
||||
Parameters: 0 - cost (double), 1 - percentage (int) </comment>
|
||||
</data>
|
||||
<data name="ActualOfEstimated" xml:space="preserve">
|
||||
<value>{0} of
|
||||
<value>{0} of
|
||||
{1} ({2}%)</value>
|
||||
<comment>.
|
||||
Parameters: 0 - actual (string), 1 - estimated (string), 2 - percent (decimal) </comment>
|
||||
@@ -4657,7 +4657,7 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="EstimatedSubtree" xml:space="preserve">
|
||||
<value>Estimated Subtree Cost %</value>
|
||||
<value>Estimated Subtree Cost</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ActualRows" xml:space="preserve">
|
||||
@@ -4684,8 +4684,8 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<value>Estimated IO Cost</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="EstimatedAverageRowSize" xml:space="preserve">
|
||||
<value>Estimated Average Row Size</value>
|
||||
<data name="AverageRowSize" xml:space="preserve">
|
||||
<value>Average Row Size</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ActualDataSize" xml:space="preserve">
|
||||
|
||||
@@ -2240,14 +2240,14 @@ ParallelismOverlayTooltip = Parallel Execution
|
||||
Operation = Operation
|
||||
Object = Object
|
||||
EstimatedCost = Estimated Cost %
|
||||
EstimatedSubtree = Estimated Subtree Cost %
|
||||
EstimatedSubtree = Estimated Subtree Cost
|
||||
ActualRows = Actual Rows
|
||||
EstimatedRows = Estimated Rows
|
||||
ActualExecutions = Actual Executions
|
||||
EstimatedExecutions = Estimated Executions
|
||||
EstimatedCpu = Estimated CPU Cost
|
||||
EstimatedIO = Estimated IO Cost
|
||||
EstimatedAverageRowSize = Estimated Average Row Size
|
||||
AverageRowSize = Average Row Size
|
||||
ActualDataSize = Actual Data Size
|
||||
|
||||
############################################################################
|
||||
|
||||
@@ -6210,8 +6210,8 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="EstimatedSubtree">
|
||||
<source>Estimated Subtree Cost %</source>
|
||||
<target state="new">Estimated Subtree Cost %</target>
|
||||
<source>Estimated Subtree Cost</source>
|
||||
<target state="new">Estimated Subtree Cost</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ActualRows">
|
||||
@@ -6249,9 +6249,9 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<target state="new">Actual Data Size</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="EstimatedAverageRowSize">
|
||||
<source>Estimated Average Row Size</source>
|
||||
<target state="new">Estimated Average Row Size</target>
|
||||
<trans-unit id="AverageRowSize">
|
||||
<source>Average Row Size</source>
|
||||
<target state="new">Average Row Size</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user