github.com/go-pg/pg/v10/orm.Table.FieldsMap (field)

15 uses

	github.com/go-pg/pg/v10/orm (current package)
		model_table_slice.go#L50: 	if field, ok := m.table.FieldsMap[name]; ok {
		model_table_struct.go#L293: 	field, ok := m.table.FieldsMap[col.Name]
		query.go#L450: 	if _, ok := table.FieldsMap[column]; ok {
		table.go#L83: 	FieldsMap   map[string]*Field
		table.go#L192: 	t.FieldsMap[field.SQLName] = field
		table.go#L202: 	delete(t.FieldsMap, field.SQLName)
		table.go#L216: 	field := t.FieldsMap[name]
		table.go#L222: 	_, ok := t.FieldsMap[name]
		table.go#L227: 	field, ok := t.FieldsMap[name]
		table.go#L235: 	field, ok := t.FieldsMap[name]
		table.go#L252: 	t.FieldsMap = make(map[string]*Field, t.Type.NumField())
		table.go#L495: 		t.FieldsMap[v] = field
		table.go#L501: 		t.FieldsMap[field.SQLName] = field
		table.go#L1175: 		if _, ok := t.FieldsMap[f.SQLName]; !ok {
		table.go#L1176: 			t.FieldsMap[f.SQLName] = f