Fix multi-depth eager loading of relationships. If a relationship is … #10
1 changed files with 7 additions and 3 deletions
|
@ -5,9 +5,9 @@ import (
|
||||||
"reflect"
|
"reflect"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/pkg/errors"
|
|
||||||
"github.com/lbryio/sqlboiler/boil"
|
"github.com/lbryio/sqlboiler/boil"
|
||||||
"github.com/lbryio/sqlboiler/strmangle"
|
"github.com/lbryio/sqlboiler/strmangle"
|
||||||
|
"github.com/pkg/errors"
|
||||||
)
|
)
|
||||||
|
|
||||||
type loadRelationshipState struct {
|
type loadRelationshipState struct {
|
||||||
|
@ -259,9 +259,13 @@ func collectLoaded(key string, loadingFrom reflect.Value) (reflect.Value, bindKi
|
||||||
for {
|
for {
|
||||||
switch bkind {
|
switch bkind {
|
||||||
case kindStruct:
|
case kindStruct:
|
||||||
collection = reflect.Append(collection, loadedObject)
|
if !loadedObject.IsNil() {
|
||||||
|
collection = reflect.Append(collection, loadedObject)
|
||||||
|
}
|
||||||
case kindPtrSliceStruct:
|
case kindPtrSliceStruct:
|
||||||
collection = reflect.AppendSlice(collection, loadedObject)
|
if !loadedObject.IsNil() {
|
||||||
|
collection = reflect.AppendSlice(collection, loadedObject)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
i++
|
i++
|
||||||
|
|
Loading…
Reference in a new issue