Skip to content

Commit 3eb1938

Browse files
committed
Merge pull request Azure#1015 from milosevic81/dev
Update ChangeLog.md
2 parents 1641ac1 + cc509a7 commit 3eb1938

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@
5151
* Set-AzureVMSqlServerExtension
5252
* Get-AzureVMSqlServerExtension
5353
* Remove-AzureVMSqlServerExtension
54+
* Azure SQL Database Index Recommendation Cmdlets
55+
* Get-AzureSqlDatabaseIndexRecommendations
56+
* Start-AzureSqlDatabaseExecuteIndexRecommendation
57+
* Stop-AzureSqlDatabaseExecuteIndexRecommendation
58+
* Azure SQL Database and Server Upgrade Hints Cmdlets
59+
* Get-AzureSqlDatabaseUpgradeHint
60+
* Get-AzureSqlServerUpgradeHint
5461

5562
## 2015.08.17 version 0.9.7
5663
* Azure Profile cmdlets

src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/GetAzureSqlDatabaseIndexRecommendations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ protected override IEnumerable<IndexRecommendation> GetEntity()
9090
}
9191

9292
// If table property is set keep only indexes on corresponding table
93-
if (MyInvocation.BoundParameters.ContainsKey("Table"))
93+
if (MyInvocation.BoundParameters.ContainsKey("TableName"))
9494
{
9595
results = results.Where(i => i.Table == TableName).ToList();
9696
}

0 commit comments

Comments
 (0)