Fixed
Details
Assignee
Luis BarreiroLuis BarreiroReporter
Sergei TsypanovSergei TsypanovComponents
Fix versions
Priority
Minor
Details
Details
Assignee
Luis Barreiro
Luis BarreiroReporter
Sergei Tsypanov
Sergei TsypanovComponents
Fix versions
Priority
Created June 15, 2017 at 7:47 AM
Updated September 13, 2017 at 6:25 PM
Resolved September 12, 2017 at 9:15 PM
I have the following entity
@Entity @Getter @Setter public class Pupil { @Id @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "SEQUENCE") @SequenceGenerator(name = "SEQUENCE", sequenceName = "PUPIL_SEQ", allocationSize = 5000) private Long id; @Column private int age; @Column private String name; @Column private LocalDate enrolled; public Pupil() { } }
after instrumentation this entity contains
private transient CollectionTracker $$_hibernate_collectionTracker;
which is redundant as entity does not have any collection field.