mirror of https://github.com/VinGarcia/ksql.git
Check if a field is private after confirming it has a ksql tag
parent
0a95b40908
commit
688344f710
|
@ -257,10 +257,6 @@ func getTagNames(t reflect.Type) (_ StructInfo, err error) {
|
|||
byName: map[string]*FieldInfo{},
|
||||
}
|
||||
for i := 0; i < t.NumField(); i++ {
|
||||
// If this field is private:
|
||||
if t.Field(i).PkgPath != "" {
|
||||
return StructInfo{}, fmt.Errorf("all fields using the ksql tags must be exported, but %v is unexported", t)
|
||||
}
|
||||
|
||||
attrName := t.Field(i).Name
|
||||
name := t.Field(i).Tag.Get("ksql")
|
||||
|
@ -268,6 +264,11 @@ func getTagNames(t reflect.Type) (_ StructInfo, err error) {
|
|||
continue
|
||||
}
|
||||
|
||||
// If this field is private:
|
||||
if t.Field(i).PkgPath != "" {
|
||||
return StructInfo{}, fmt.Errorf("all fields using the ksql tags must be exported, but %v is unexported", t)
|
||||
}
|
||||
|
||||
tags := strings.Split(name, ",")
|
||||
var modifier ksqlmodifiers.AttrModifier
|
||||
if len(tags) > 1 {
|
||||
|
|
Loading…
Reference in New Issue