Files
sqltoolsservice/test/Microsoft.SqlTools.ServiceLayer.Test.Common/TestData/TSqlFormatter/BaselineFiles/Go_NewlineHandling.sql
Kevin Cunnane 8d017368f9 Fixes #721 (#282)
- Ensure minimum of 2 newlines after GO statement
- All existing unit tests are passing, indicating this is respecting scenarios where users have comment lines after GO statements (this happens in many other tests)
2017-03-16 10:20:22 -07:00

12 lines
200 B
Transact-SQL

use WideWorldImporters;
go
alter database current collate Latin1_General_100_CI_AS;
go
alter database current set RECOVERY SIMPLE;
go
alter database current set AUTO_UPDATE_STATISTICS_ASYNC on;
go