isStringType returns true when v is a Go string. Used by the fields-builder to distinguish "real value to pass through" from "empty/missing".
(v any)
| 837 | // fields-builder to distinguish "real value to pass through" from |
| 838 | // "empty/missing". |
| 839 | func isStringType(v any) bool { |
| 840 | _, ok := v.(string) |
| 841 | return ok |
| 842 | } |
| 843 | |
| 844 | // columnFieldKeys is the set of fields-blob keys the dispatcher |
| 845 | // recognizes as actually being column writes on the underlying |