Count warnings differently, as SQLT produces some weird stuff under 5.10. All of...
[dbsrgits/DBIx-Class-Historic.git] / t / 746mssql.t
index 9d46eea..aebdbf4 100644 (file)
@@ -25,6 +25,7 @@ eval { $dbh->do("DROP TABLE artist") };
 CREATE TABLE artist (
    artistid INT IDENTITY NOT NULL,
    name VARCHAR(255),
+   rank INT NOT NULL DEFAULT '13',
    charfield CHAR(10) NULL,
    primary key(artistid)
 )