Skip to content

Commit

Permalink
Fix test failing on H2 version < 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mbladel committed Apr 28, 2023
1 parent 0d381db commit ac09d25
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -50,7 +50,7 @@
settingProviders = @SettingProvider( provider = MultiLoadSubSelectCollectionDialectWithLimitTest.TestSettingProvider.class, settingName = AvailableSettings.DIALECT)
)
@SessionFactory(generateStatistics = true, useCollectingStatementInspector = true)
@RequiresDialect( H2Dialect.class )
@RequiresDialect( value = H2Dialect.class, majorVersion = 2 )
public class MultiLoadSubSelectCollectionDialectWithLimitTest {


Expand Down

0 comments on commit ac09d25

Please sign in to comment.