type github.com/lib/pq.fieldDesc

11 uses

	github.com/lib/pq (current package)
		conn.go#L711: func decideColumnFormats(colTyps []fieldDesc, forceText bool) (colFmts []format, colFmtData []byte) {
		conn.go#L1368: 	colTyps  []fieldDesc
		conn.go#L1672: func (cn *conn) readStatementDescribeResponse() (paramTyps []oid.Oid, colNames []string, colTyps []fieldDesc) {
		conn.go#L1794: func parseStatementRowDescribe(r *readBuf) (colNames []string, colTyps []fieldDesc) {
		conn.go#L1797: 	colTyps = make([]fieldDesc, n)
		conn.go#L1814: 	colTyps := make([]fieldDesc, n)
		rows.go#L13: type fieldDesc struct {
		rows.go#L24: func (fd fieldDesc) Type() reflect.Type {
		rows.go#L45: func (fd fieldDesc) Name() string {
		rows.go#L49: func (fd fieldDesc) Length() (length int64, ok bool) {
		rows.go#L60: func (fd fieldDesc) PrecisionScale() (precision, scale int64, ok bool) {