File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
hibernate-core/src/main/java/org/hibernate/sql/results/internal/domain Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,23 @@ public CircularFetchImpl(
62
62
this .referencedNavigablePath = referencedNavigablePath ;
63
63
}
64
64
65
+ /**
66
+ * Used from Hibernate Reactive
67
+ */
68
+ @ SuppressWarnings ("unused" )
69
+ protected CircularFetchImpl (CircularFetchImpl original ) {
70
+ super (
71
+ original .getNavigablePath (),
72
+ original .getFetchedMapping (),
73
+ original .getFetchParent (),
74
+ original .getKeyResult (),
75
+ original .getDiscriminatorFetch (),
76
+ original .isSelectByUniqueKey ()
77
+ );
78
+ this .timing = original .timing ;
79
+ this .referencedNavigablePath = original .referencedNavigablePath ;
80
+ }
81
+
65
82
@ Override
66
83
public NavigablePath getReferencedPath () {
67
84
return referencedNavigablePath ;
You can’t perform that action at this time.
0 commit comments