mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-16 08:05:05 +00:00
Fix OrderSequenceGenerationTest
This commit is contained in:
parent
dd50e1e28e
commit
82e42ef946
@ -67,7 +67,7 @@ public void testCreateSequenceExportScripts() throws Exception {
|
||||
final String content = new String( Files.readAllBytes( createSchema.toPath() ) ).toLowerCase();
|
||||
for ( int i = 0; i < createStrings.length; ++i ) {
|
||||
if ( getDialect() instanceof OracleDialect ) {
|
||||
assertTrue( content.contains( ( createStrings[ i ] + " ORDER" ).toLowerCase() ) );
|
||||
assertTrue( content.contains( ( createStrings[ i ] + " NOCACHE ORDER" ).toLowerCase() ) );
|
||||
}
|
||||
else {
|
||||
assertTrue( content.contains( createStrings[ i ].toLowerCase() ) );
|
||||
|
Loading…
x
Reference in New Issue
Block a user