You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checking if the connected instance is SQL Azure via the following code, which returns 1 if the instance is Azure SQL Database, should exit the module with advice that SQL Azure is not supported:
SELECT CASE WHEN CONVERT(nvarchar(128), SERVERPROPERTY(N'Edition')) LIKE N'%Azure%' THEN 1 ELSE 0 END
The text was updated successfully, but these errors were encountered:
Since Azure updates quietly pretty often, I think the only real way to handle support is to automate testing against it consistently (on PRs or even more often than that). I use appveyor for a project to test on Azure + lots of versions but the Azure piece is a constant PITA and if you don't already have something setup, I'd say it may not be worth it just for that.
A "your mileage may vary" approach might be the easiest, or block it altogether like Hannah suggested.
Checking if the connected instance is SQL Azure via the following code, which returns
1
if the instance is Azure SQL Database, should exit the module with advice that SQL Azure is not supported:The text was updated successfully, but these errors were encountered: