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:
Leila Lali
2017-12-11 10:34:26 -08:00
committed by GitHub
parent 392325036e
commit dedca05721
2 changed files with 4 additions and 4 deletions

View File

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