不要怂,就是干,撸起袖子干!

Commit 3bcae328 by Michael Buckley

Fix raw query raw replacements test for mssql

1 parent 23952a2b
Showing with 2 additions and 1 deletions
......@@ -299,7 +299,8 @@ suite(Support.getTestDialectTeaser('SQL'), function() {
attributes: ['*'],
having: ['name IN (?)', [1, 'test', 3, "derp"]]
}), {
default: "SELECT * FROM [User] HAVING name IN (1,'test',3,'derp');"
default: "SELECT * FROM [User] HAVING name IN (1,'test',3,'derp');",
mssql: "SELECT * FROM [User] HAVING name IN (1,N'test',3,N'derp');"
});
});
});
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!