Hi all,
I'm noticing that jooq 3.5.4 ( and earlier ) seems to be generating invalid
quoted sequence names for me:
When I have:
myseq = DSL.sequenceByName(Integer.class, "schema", "some_id_seq");
and then call:
dslContext = DSL.using(poolingDatasource, SQLDialect.POSTGRES);
dslContext.nextval(myseq)
I get PostgresSQL errors saying that the sequence doesn't exist, the SQL
that gets generated is:
next_val('"schema"'.'"some_id_seq"')
with a double quoted table reference. I can work around this using:
dslContext.settings().setRenderNameStyle(RenderNameStyle.AS_IS);
Has anyone else noticed this?
--
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.