mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-07 09:35:37 -05:00
Fixing durability type filter in OE (#2043)
* Fixing durability type filter in OE * Adding doc comment
This commit is contained in:
@@ -2445,6 +2445,22 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string FilterDurabilitySchemaOnly
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.FilterDurabilitySchemaOnly);
|
||||
}
|
||||
}
|
||||
|
||||
public static string FilterDurabilitySchemaAndData
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.FilterDurabilitySchemaAndData);
|
||||
}
|
||||
}
|
||||
|
||||
public static string FilterIsMemoryOptimized
|
||||
{
|
||||
get
|
||||
@@ -12197,6 +12213,12 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string FilterDurabilityTypeDescription = "FilterDurabilityTypeDescription";
|
||||
|
||||
|
||||
public const string FilterDurabilitySchemaOnly = "FilterDurabilitySchemaOnly";
|
||||
|
||||
|
||||
public const string FilterDurabilitySchemaAndData = "FilterDurabilitySchemaAndData";
|
||||
|
||||
|
||||
public const string FilterIsMemoryOptimized = "FilterIsMemoryOptimized";
|
||||
|
||||
|
||||
|
||||
@@ -1490,6 +1490,14 @@
|
||||
<value>Include or exclude objects based on the durability type.</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="FilterDurabilitySchemaOnly" xml:space="preserve">
|
||||
<value>Schema Only</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="FilterDurabilitySchemaAndData" xml:space="preserve">
|
||||
<value>Schema and Data</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="FilterIsMemoryOptimized" xml:space="preserve">
|
||||
<value>Is Memory Optimized</value>
|
||||
<comment></comment>
|
||||
|
||||
@@ -728,6 +728,8 @@ FilterOwner = Owner
|
||||
FilterOwnerDescription = Include or exclude objects based on the owner or part of an owner name.
|
||||
FilterDurabilityType = Durability Type
|
||||
FilterDurabilityTypeDescription = Include or exclude objects based on the durability type.
|
||||
FilterDurabilitySchemaOnly = Schema Only
|
||||
FilterDurabilitySchemaAndData = Schema and Data
|
||||
FilterIsMemoryOptimized = Is Memory Optimized
|
||||
FilterIsMemoryOptimizedDescription = Include or exclude objects based on whether the object is memory optimized.
|
||||
FilterCreateDate = Create Date
|
||||
|
||||
@@ -7227,6 +7227,16 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<target state="new">Include or exclude objects based on whether the column is in a primary key.</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="FilterDurabilitySchemaOnly">
|
||||
<source>Schema Only</source>
|
||||
<target state="new">Schema Only</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="FilterDurabilitySchemaAndData">
|
||||
<source>Schema and Data</source>
|
||||
<target state="new">Schema and Data</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
||||
Reference in New Issue
Block a user