Skip to content

Commit

Permalink
[#8859] Check for sequences in generateSchemaIfEmpty()
Browse files Browse the repository at this point in the history
The `JavaGenerator` should also generate Java code for schemas which
only contain sequences. This was missing in `generateSchemaIfEmpty()`.
  • Loading branch information
knutwannheden committed Jun 26, 2019
1 parent 501dc03 commit 517ad86
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -427,6 +427,7 @@ private final boolean generateSchemaIfEmpty(SchemaDefinition schema) {
&& database.getEnums(schema).isEmpty()
&& database.getPackages(schema).isEmpty()
&& database.getRoutines(schema).isEmpty()
&& database.getSequences(schema).isEmpty()
&& database.getTables(schema).isEmpty()
&& database.getUDTs(schema).isEmpty())
return false;
Expand Down

0 comments on commit 517ad86

Please sign in to comment.