mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-20 09:35:38 -05:00
simplify drop object request handler (#1953)
* simplify drop object request handler * fix test cases * fix issues * update strings * fix error * fix error
This commit is contained in:
@@ -10150,6 +10150,11 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
return Keys.GetString(Keys.UnsupportedModelType, type);
|
||||
}
|
||||
|
||||
public static string ObjectNotRenamable(string urn)
|
||||
{
|
||||
return Keys.GetString(Keys.ObjectNotRenamable, urn);
|
||||
}
|
||||
|
||||
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
public class Keys
|
||||
{
|
||||
@@ -14043,6 +14048,9 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string ErrorConnectionNotFound = "ErrorConnectionNotFound";
|
||||
|
||||
|
||||
public const string ObjectNotRenamable = "ObjectNotRenamable";
|
||||
|
||||
|
||||
public const string DefaultLanguagePlaceholder = "DefaultLanguagePlaceholder";
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user