File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Async/NHSpecificTest/GH3474 Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,12 @@ protected override void OnTearDown()
50
50
transaction . Commit ( ) ;
51
51
}
52
52
53
+ protected override bool AppliesTo ( Dialect . Dialect dialect )
54
+ {
55
+ // Polymorphic updates require support of temp tables.
56
+ return Dialect . SupportsTemporaryTables ;
57
+ }
58
+
53
59
[ Test ]
54
60
public async Task PolymorphicUpdateShouldNotCommitAsync ( )
55
61
{
Original file line number Diff line number Diff line change @@ -38,6 +38,12 @@ protected override void OnTearDown()
38
38
transaction . Commit ( ) ;
39
39
}
40
40
41
+ protected override bool AppliesTo ( Dialect . Dialect dialect )
42
+ {
43
+ // Polymorphic updates require support of temp tables.
44
+ return Dialect . SupportsTemporaryTables ;
45
+ }
46
+
41
47
[ Test ]
42
48
public void PolymorphicUpdateShouldNotCommit ( )
43
49
{
You can’t perform that action at this time.
0 commit comments