HHH-11036 - The drop schema filtering of sequence generation with schemaFilter is wrong
This commit is contained in:
parent
5b7d00ef1e
commit
78cab094b9
|
@ -243,7 +243,7 @@ public class SchemaDropperImpl implements SchemaDropper {
|
|||
|
||||
for ( Sequence sequence : namespace.getSequences() ) {
|
||||
if ( !schemaFilter.includeSequence( sequence ) ) {
|
||||
return;
|
||||
continue;
|
||||
}
|
||||
checkExportIdentifier( sequence, exportIdentifiers );
|
||||
applySqlStrings( dialect.getSequenceExporter().getSqlDropStrings( sequence, metadata ), formatter, options, targets );
|
||||
|
|
Loading…
Reference in New Issue