mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-17 02:51:45 -05:00
Adding decimal values to costs (#1449)
This commit is contained in:
@@ -9306,7 +9306,7 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
return Keys.GetString(Keys.MoreThanOneAzureFunctionWithName, functionName, fileName);
|
||||
}
|
||||
|
||||
public static string CostFormat(int x)
|
||||
public static string CostFormat(string x)
|
||||
{
|
||||
return Keys.GetString(Keys.CostFormat, x);
|
||||
}
|
||||
|
||||
@@ -3453,7 +3453,7 @@
|
||||
<data name="CostFormat" xml:space="preserve">
|
||||
<value>Cost: {0} %</value>
|
||||
<comment>"Cost: {0} percent" String to format.
|
||||
Parameters: 0 - x (int) </comment>
|
||||
Parameters: 0 - x (string) </comment>
|
||||
</data>
|
||||
<data name="RemoteDataAccess" xml:space="preserve">
|
||||
<value>Remote Data Access</value>
|
||||
|
||||
@@ -1646,7 +1646,7 @@ ActualExecModeDesc = Actual Execution Mode
|
||||
EstimatedExecMode = Estimated Execution Mode
|
||||
EstimatedExecModeDesc = Estimated Execution Mode
|
||||
;"Cost: {0} percent" String to format
|
||||
CostFormat(int x) = Cost: {0} %
|
||||
CostFormat(string x) = Cost: {0} %
|
||||
; Remote Data Access
|
||||
RemoteDataAccess = Remote Data Access
|
||||
RemoteDataAccessDescription = Whether the operator uses remote procedure call (RPC) to access remote data.
|
||||
|
||||
Reference in New Issue
Block a user