Add a TODO to a non-functioning JPA annotation (#917)

* Add a TODO to a non-functioning JPA annotation
This commit is contained in:
Weimin Yu 2021-01-06 13:28:53 -05:00 committed by GitHub
parent 5bf618e671
commit 6a1e86ff33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -131,6 +131,7 @@ public final class RegistryLock extends ImmutableObject implements Buildable, Sq
private boolean isSuperuser;
/** The lock that undoes this lock, if this lock has been unlocked and the domain locked again. */
// TODO(b/176498743): Lazy loading on scalar field not supported by default. See bug for details.
@OneToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "relockRevisionId", referencedColumnName = "revisionId")
private RegistryLock relock;