Skip to content

Commit

Permalink
[25356] removed FetchType LAZY for ext info of Heap and Heap2
Browse files Browse the repository at this point in the history
  • Loading branch information
huthomas committed Aug 23, 2023
1 parent fcc8e99 commit b10a87e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@

import java.time.LocalDate;

import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Convert;
import javax.persistence.Entity;
import javax.persistence.EntityListeners;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Lob;
Expand Down Expand Up @@ -40,7 +38,6 @@ public class Heap extends AbstractEntityWithId implements EntityWithId, EntityWi
@Column(length = 8)
protected LocalDate datum;

@Basic(fetch = FetchType.LAZY)
@Lob()
protected byte[] inhalt;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@

import java.time.LocalDate;

import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Convert;
import javax.persistence.Entity;
import javax.persistence.EntityListeners;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Lob;
Expand Down Expand Up @@ -40,7 +38,6 @@ public class Heap2 extends AbstractEntityWithId implements EntityWithId, EntityW
@Column(length = 8)
protected LocalDate datum;

@Basic(fetch = FetchType.LAZY)
@Lob()
protected byte[] contents;

Expand Down

0 comments on commit b10a87e

Please sign in to comment.