GetFieldNames returns from a Columns slice the column names. If pkOnly is true then only the primary key columns will be returned. func (cc Columns) GetFieldNames(pkOnly bool) []string { ret := make([]string, 0, len(cc)) for _, col := range cc { isPk := col.Key.String == "PRI" if pkOnly && isP
(table, column string)
source not stored for this graph (policy: none)