normField returns field prefixed with schema ID.
(field, schemaID string)
| 134 | |
| 135 | //normField returns field prefixed with schema ID. |
| 136 | func normField(field, schemaID string) string { |
| 137 | if strings.Contains(field, ".") { |
| 138 | return field |
| 139 | } |
| 140 | |
| 141 | return fmt.Sprintf("%s.%s", schemaID, field) |
| 142 | } |
no test coverage detected