HHH-11036 - The drop schema filtering of sequence generation with schemaFilter is wrong

This commit is contained in:
Andrea Boriero 2016-08-11 08:07:28 +02:00
parent 5b7d00ef1e
commit 78cab094b9
1 changed files with 1 additions and 1 deletions

View File

@ -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 );