mirror of https://github.com/go-gorm/gorm.git
fix panic problem when the struct has unexported field.
This commit is contained in:
parent
f43456fecf
commit
e313827f04
|
@ -5,6 +5,7 @@ import (
|
|||
"database/sql/driver"
|
||||
"errors"
|
||||
"fmt"
|
||||
"go/ast"
|
||||
"reflect"
|
||||
"regexp"
|
||||
"strconv"
|
||||
|
@ -550,6 +551,9 @@ func (scope *Scope) createTable() *Scope {
|
|||
fields := scope.Fields()
|
||||
scopeType := scope.IndirectValue().Type()
|
||||
for i := 0; i < scopeType.NumField(); i++ {
|
||||
if !ast.IsExported(scopeType.Field(i).Name) {
|
||||
continue
|
||||
}
|
||||
for _, field := range scope.fieldFromStruct(scopeType.Field(i), false) {
|
||||
field = fields[field.DBName]
|
||||
if field.IsNormal {
|
||||
|
|
|
@ -129,6 +129,7 @@ type Animal struct {
|
|||
Name string `sql:"DEFAULT:'galeone'"`
|
||||
From string //test reserved sql keyword as field name
|
||||
Age time.Time `sql:"DEFAULT:current_timestamp"`
|
||||
unexported string // unexported value
|
||||
CreatedAt time.Time
|
||||
UpdatedAt time.Time
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue