mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-29 01:25:41 -05:00
Update memory settings and implement ServerPrototype (#2126)
This commit is contained in:
@@ -12946,6 +12946,11 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
return Keys.GetString(Keys.ServiceNotFound, serviceName);
|
||||
}
|
||||
|
||||
public static string PropertyNotInitialized(string propertyName)
|
||||
{
|
||||
return Keys.GetString(Keys.PropertyNotInitialized, propertyName);
|
||||
}
|
||||
|
||||
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
public class Keys
|
||||
{
|
||||
@@ -17898,6 +17903,9 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string HyperscaleAzureEdition = "HyperscaleAzureEdition";
|
||||
|
||||
|
||||
public const string PropertyNotInitialized = "PropertyNotInitialized";
|
||||
|
||||
|
||||
private Keys()
|
||||
{ }
|
||||
|
||||
|
||||
@@ -6802,4 +6802,9 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<value>Hyperscale</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="PropertyNotInitialized" xml:space="preserve">
|
||||
<value>Property '{0}' was set before initialization.</value>
|
||||
<comment>.
|
||||
Parameters: 0 - propertyName (string) </comment>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
@@ -2814,4 +2814,10 @@ DataWarehouseAzureEdition = DataWarehouse
|
||||
GeneralPurposeAzureEdition = General Purpose
|
||||
BusinessCriticalAzureEdition = Business Critical
|
||||
ErrorInvalidEdition = Edition value is not valid
|
||||
HyperscaleAzureEdition = Hyperscale
|
||||
HyperscaleAzureEdition = Hyperscale
|
||||
|
||||
#############################################################################
|
||||
# Server Properties
|
||||
|
||||
############################################################################
|
||||
PropertyNotInitialized(string propertyName) = Property '{0}' was set before initialization.
|
||||
@@ -8321,6 +8321,12 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<target state="new">None</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="PropertyNotInitialized">
|
||||
<source>Property '{0}' was set before initialization.</source>
|
||||
<target state="new">Property '{0}' was set before initialization.</target>
|
||||
<note>.
|
||||
Parameters: 0 - propertyName (string) </note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TableDesignerCreateTablePermissionDenied">
|
||||
<source>CREATE TABLE permission denied in database '{0}'.</source>
|
||||
<target state="new">CREATE TABLE permission denied in database '{0}'.</target>
|
||||
|
||||
Reference in New Issue
Block a user