Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fix for the Restore-AzSqlDatabase cmdlet #18475

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Sql/Sql/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
-->
## Upcoming Release
* Added additional input validation to `Stop-AzSqlInstanceDatabaseLogReplay` cmdlet to ensure the target database was created by log replay service
* Bug fix for cmdlet `Restore-AzSqlDatabase`. The optional property `Tags` was not working as expected

## Version 3.9.0
* Added new cmdlet `Get-AzSqlInstanceEndpointCertificate`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,7 @@ internal AzureSqlDatabaseModel RestoreDatabase(string resourceGroup, DateTime re
LicenseType = model.LicenseType,
RequestedBackupStorageRedundancy = model.RequestedBackupStorageRedundancy,
ZoneRedundant = model.ZoneRedundant,
Tags = model.Tags
};

// check if restore operation is cross subscription or same subscription
Expand Down