mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-15 09:35:37 -05:00
fixed the keys filter to support 2012 and 2014 also (#565)
* fixed the keys filter to support 2 all sql versions also
This commit is contained in:
@@ -1517,7 +1517,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectExplorer.SmoModel
|
||||
Property = "IndexKeyType",
|
||||
Type = typeof(Enum),
|
||||
TypeToReverse = typeof(SqlIndexQuerier),
|
||||
ValidFor = ValidForFlag.Sql2016|ValidForFlag.Sql2017|ValidForFlag.AzureV12,
|
||||
ValidFor = ValidForFlag.AzureV12|ValidForFlag.AllOnPrem,
|
||||
Values = new List<object>
|
||||
{
|
||||
{ IndexKeyType.DriPrimaryKey },
|
||||
@@ -1610,7 +1610,7 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectExplorer.SmoModel
|
||||
Property = "IndexKeyType",
|
||||
Type = typeof(Enum),
|
||||
TypeToReverse = typeof(SqlIndexQuerier),
|
||||
ValidFor = ValidForFlag.Sql2016|ValidForFlag.Sql2017|ValidForFlag.AzureV12,
|
||||
ValidFor = ValidForFlag.AzureV12|ValidForFlag.AllOnPrem,
|
||||
Values = new List<object>
|
||||
{
|
||||
{ IndexKeyType.None },
|
||||
|
||||
Reference in New Issue
Block a user