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