github.com/go-pg/pg/v10/internal/pool.ColumnInfo.Name (field)

13 uses

	github.com/go-pg/pg/v10/internal/pool (current package)
		reader.go#L26: 	Name     string
		reader.go#L44: 		Name:  string(name),

	github.com/go-pg/pg/v10/orm
		model_map.go#L47: 	m.m[col.Name] = val
		model_scan.go#L35: 			col.Index, col.Name)
		model_scan.go#L66: 			col.Index, col.Name)
		model_table_m2m.go#L101: 		m.columns[col.Name] = string(b)
		model_table_m2m.go#L104: 		m.columns[col.Name] = ""
		model_table_struct.go#L256: 	if m.table.hasFlag(discardUnknownColumnsFlag) || col.Name[0] == '_' {
		model_table_struct.go#L262: 		col.Name, m.table,
		model_table_struct.go#L279: 	joinName, fieldName := splitColumn(col.Name)
		model_table_struct.go#L283: 			joinCol.Name = fieldName
		model_table_struct.go#L288: 			joinCol.Name = fieldName
		model_table_struct.go#L293: 	field, ok := m.table.FieldsMap[col.Name]