Update memory settings and implement ServerPrototype (#2126)

This commit is contained in:
Barbara Valdez
2023-07-06 17:25:45 -07:00
committed by GitHub
parent b9277c3830
commit 4c4d6584b3
9 changed files with 1154 additions and 47 deletions

View File

@@ -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()
{ }

View File

@@ -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 &apos;{0}&apos; was set before initialization.</value>
<comment>.
Parameters: 0 - propertyName (string) </comment>
</data>
</root>

View File

@@ -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.

View File

@@ -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>