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()
5050 transaction . Commit ( ) ;
5151 }
5252
53+ protected override bool AppliesTo ( Dialect . Dialect dialect )
54+ {
55+ // Polymorphic updates require support of temp tables.
56+ return Dialect . SupportsTemporaryTables ;
57+ }
58+
5359 [ Test ]
5460 public async Task PolymorphicUpdateShouldNotCommitAsync ( )
5561 {
Original file line number Diff line number Diff line change @@ -38,6 +38,12 @@ protected override void OnTearDown()
3838 transaction . Commit ( ) ;
3939 }
4040
41+ protected override bool AppliesTo ( Dialect . Dialect dialect )
42+ {
43+ // Polymorphic updates require support of temp tables.
44+ return Dialect . SupportsTemporaryTables ;
45+ }
46+
4147 [ Test ]
4248 public void PolymorphicUpdateShouldNotCommit ( )
4349 {
You can’t perform that action at this time.
0 commit comments