We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b1946d4 + ff7d4b5 commit 233e291Copy full SHA for 233e291
src/NHibernate.Test/Async/NHSpecificTest/GH3474/Fixture.cs
@@ -50,6 +50,12 @@ protected override void OnTearDown()
50
transaction.Commit();
51
}
52
53
+ protected override bool AppliesTo(Dialect.Dialect dialect)
54
+ {
55
+ // Polymorphic updates require support of temp tables.
56
+ return Dialect.SupportsTemporaryTables;
57
+ }
58
+
59
[Test]
60
public async Task PolymorphicUpdateShouldNotCommitAsync()
61
{
src/NHibernate.Test/NHSpecificTest/GH3474/Fixture.cs
@@ -38,6 +38,12 @@ protected override void OnTearDown()
38
39
40
41
42
43
44
45
46
47
48
public void PolymorphicUpdateShouldNotCommit()
49
0 commit comments