Skip to content

Commit c0e4118

Browse files
Emil Tzvetkovbahusoid
Emil Tzvetkov
authored andcommitted
GH-2454 exclude test for dialects without SupportsScalarSubSelects (MsSqlCe)
1 parent 0a28698 commit c0e4118

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/NHibernate.Test/NHSpecificTest/GH2454/FixtureByCode.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ namespace NHibernate.Test.NHSpecificTest.GH2454
99
[TestFixture]
1010
public class ByCodeFixture : TestCaseMappingByCode
1111
{
12+
protected override bool AppliesTo(Dialect.Dialect dialect)
13+
{
14+
return dialect.SupportsScalarSubSelects;
15+
}
16+
1217
protected override HbmMapping GetMappings()
1318
{
1419
var mapper = new ModelMapper();

0 commit comments

Comments
 (0)