updated lowercasing columns test for MSSQL
Rafael Kitover [Mon, 22 Mar 2010 11:26:28 +0000 (07:26 -0400)]
t/16mssql_common.t

index a517aa1..61a9ffe 100644 (file)
@@ -58,12 +58,14 @@ my $tester = dbixcsl_common_tests->new(
                 SELECT * FROM mssql_loader_test3
             },
             # test capitalization of cols in unique constraints
+            q{ SET QUOTED_IDENTIFIER ON },
+            q{ SET ANSI_NULLS ON },
             q{
-                CREATE TABLE mssql_loader_test5 (
-                    id INT IDENTITY NOT NULL PRIMARY KEY,
-                    FooCol INT NOT NULL,
-                    BarCol INT NOT NULL,
-                    UNIQUE (FooCol, BarCol)
+                CREATE TABLE [mssql_loader_test5] (
+                    [id] INT IDENTITY NOT NULL PRIMARY KEY,
+                    [FooCol] INT NOT NULL,
+                    [BarCol] INT NOT NULL,
+                    UNIQUE ([FooCol], [BarCol])
                 )
             },
         ],