Fixed Firebird codegen configuration to omit bogus sequence

This commit is contained in:
Lukas Eder 2013-01-04 16:50:38 +01:00
parent 823657cb29
commit e21bfbbd58
3 changed files with 2 additions and 8 deletions

View File

@ -19,7 +19,7 @@
<database>
<name>org.jooq.util.firebird.FirebirdDatabase</name>
<includes>.*</includes>
<excludes>T_BOOK_DETAILS|S_TRIGGERS_SEQUENCE|^MON.*|^RDB.*</excludes>
<excludes>T_BOOK_DETAILS|S_TRIGGERS_SEQUENCE|^MON.*|^RDB.*|^SQL.*</excludes>
<recordVersionFields>REC_VERSION</recordVersionFields>
<recordTimestampFields>REC_TIMESTAMP</recordTimestampFields>
<dateAsTimestamp>false</dateAsTimestamp>

View File

@ -9,7 +9,7 @@ package org.jooq.test.firebird.generatedclasses;
@java.lang.SuppressWarnings("all")
public class DefaultSchema extends org.jooq.impl.SchemaImpl {
private static final long serialVersionUID = -616879670;
private static final long serialVersionUID = -1757261929;
/**
* The singleton instance of <code></code>
@ -26,7 +26,6 @@ public class DefaultSchema extends org.jooq.impl.SchemaImpl {
@Override
public final java.util.List<org.jooq.Sequence<?>> getSequences() {
return java.util.Arrays.<org.jooq.Sequence<?>>asList(
org.jooq.test.firebird.generatedclasses.Sequences.SQL$DEFAULT,
org.jooq.test.firebird.generatedclasses.Sequences.S_AUTHOR_ID);
}

View File

@ -11,11 +11,6 @@ package org.jooq.test.firebird.generatedclasses;
@java.lang.SuppressWarnings("all")
public final class Sequences {
/**
* The sequence <code>SQL$DEFAULT</code>
*/
public static final org.jooq.Sequence<java.lang.Long> SQL$DEFAULT = new org.jooq.impl.SequenceImpl<java.lang.Long>("SQL$DEFAULT", org.jooq.test.firebird.generatedclasses.DefaultSchema.DEFAULT_SCHEMA, org.jooq.impl.SQLDataType.BIGINT);
/**
* The sequence <code>S_AUTHOR_ID</code>
*/