Check if a field is private after confirming it has a ksql tag

pull/55/head
niels 2024-11-06 20:35:26 +01:00
parent 0a95b40908
commit 688344f710
1 changed files with 5 additions and 4 deletions

View File

@ -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 {