Hello, I suspect this is because of https://github.com/jOOQ/jOOQ/issues/4055
Is this generated code from an overloaded table-valued function? Best Regards, Lukas 2017-06-15 16:47 GMT+02:00 <[email protected]>: > Hello, when I try generate in same generated class duplicate. Example > > > public class _StValuecountRecord > > > /** > * Setter for <code>public._st_valuecount.value</code>. > */ > public void setValue(Double value) { > set(0, value); > } > > /** > * Getter for <code>public._st_valuecount.value</code>. > */ > public Double getValue() { > return (Double) get(0); > } > > /** > * Setter for <code>public._st_valuecount.value</code>. > */ > public void setValue(Double value) { > set(1, value); > } > > /** > * Getter for <code>public._st_valuecount.value</code>. > */ > public Double getValue() { > return (Double) get(1); > } > > > > use connection to PostgreSQL 9.4. > > Trying use versions 3.9.3 , 3.9.1 , 3.8.7 and result similar, duplicate in > equal or other classes. > > -- > 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. > -- 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.
