Switch to unified view

a b/tests/support/mssql/setup.sql
1
CREATE DATABASE test
2
ALTER DATABASE test SET COMPATIBILITY_LEVEL = 100;
3
4
CREATE DATABASE temp_tables
5
ALTER DATABASE temp_tables SET COMPATIBILITY_LEVEL = 100;
6
7
SET QUOTED_IDENTIFIER ON;
8
GO