Hello,

after generating some records from the schema the generated code won't 
compile....

-----------------
public class MachineRunsRecord
extends
org.jooq.impl.UpdatableRecordImpl<hello.database.tables.records.MachineRunsRecord>
implements
org.jooq.Record4<java.lang.Integer, java.lang.String, java.sql.Timestamp, 
java.sql.Timestamp> {

..........
@Override
public org.jooq.Field<java.lang.Integer> field1() {
return hello.database.tables.MachineRuns.MACHINE_RUNS.ID;
}

field1 : "The method field1() of type MachineRunsRecord must override a 
superclass method"
-----

but in 

------
@Generated("This class was generated using jOOQ-tools")
public interface Record4<T1, T2, T3, T4> extends Record {

    /**
     * Get the first field.
     */
    Field<T1> field1();
--------
The field appears to be there. The Compiler complains that it can't find 
it, T1 is java.lang.Integer, so it should be available....

Is this a configuration problem, or how can one fix that?
Best,
Patrik

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to