Fix a bug that could occur on no-field inserts
This commit is contained in:
parent
d13410617f
commit
10cfe74989
1 changed files with 5 additions and 2 deletions
|
@ -86,9 +86,12 @@ func (o *{{$tableNameSingular}}) Insert(exec boil.Executor, whitelist ... string
|
||||||
{{else -}}
|
{{else -}}
|
||||||
queryOutput = fmt.Sprintf("OUTPUT INSERTED.{{.LQ}}%s{{.RQ}} ", strings.Join(returnColumns, "{{.RQ}},INSERTED.{{.LQ}}"))
|
queryOutput = fmt.Sprintf("OUTPUT INSERTED.{{.LQ}}%s{{.RQ}} ", strings.Join(returnColumns, "{{.RQ}},INSERTED.{{.LQ}}"))
|
||||||
{{end -}}
|
{{end -}}
|
||||||
{{- end}}
|
{{end -}}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(wl) != 0 {
|
||||||
|
cache.query = fmt.Sprintf(cache.query, queryOutput, queryReturning)
|
||||||
}
|
}
|
||||||
cache.query = fmt.Sprintf(cache.query, queryOutput, queryReturning)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
value := reflect.Indirect(reflect.ValueOf(o))
|
value := reflect.Indirect(reflect.ValueOf(o))
|
||||||
|
|
Loading…
Reference in a new issue