jOOQ codegen produced invalid code for this table in SQLite:

CREATE TABLE profiles (
    login TEXT UNIQUE NOT NULL,
    role TEXT CHECK (role IN ('mentor', 'mentee')),
    advert TEXT NOT NULL CHECK (length(advert) >= 5),
    name TEXT NOT NULL,
    first_name TEXT NOT NULL,
    picture_url TEXT NOT NULL,
    email TEXT NOT NULL,
    PRIMARY KEY (login, role)
);

Example uncompiling code - missing generic parameters on Record0:

public class ProfilesRecord extends 
org.jooq.impl.TableRecordImpl<scratch.jooq.sqlite.tables.records.ProfilesRecord>
 
implements org.jooq.Record0<> {
    // ...
}

Is there a way I can address this?

Cheers,
--binkley


-- 
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/groups/opt_out.

Reply via email to