Declaring sequenceGenarator with the schema property like below :
@SequenceGenerator(name = "idgen", sequenceName = "email_seq", schema="myschema")
does not work since Hibernate looks for the sequence in the public schema instead and ignoring the property schema. Can this please be fixed? Thank you |