github.com/jackc/pgx/v5/pgconn.FieldDescription.Format (field)

10 uses

	github.com/jackc/pgx/v5/pgconn (current package)
		pgconn.go#L861: 	Format               int16
		pgconn.go#L880: 		dst[i].Format = rd.Fields[i].Format
		pgconn.go#L2951: 			outputFields[i].Format = pgtype.TextFormatCode
		pgconn.go#L2958: 			outputFields[i].Format = format
		pgconn.go#L2964: 			outputFields[i].Format = resultFormats[i]

	github.com/jackc/pgx/v5
		rows.go#L266: 			rows.scanPlans[i] = m.PlanScan(fieldDescriptions[i].DataTypeOID, fieldDescriptions[i].Format, dest[i])
		rows.go#L277: 			rows.scanPlans[i] = m.PlanScan(fieldDescriptions[i].DataTypeOID, fieldDescriptions[i].Format, dest[i])
		rows.go#L309: 			value, err := dt.Codec.DecodeValue(rows.typeMap, fd.DataTypeOID, fd.Format, buf)
		rows.go#L315: 			switch fd.Format {
		rows.go#L380: 		err := typeMap.Scan(fieldDescriptions[i].DataTypeOID, fieldDescriptions[i].Format, values[i], d)