type github.com/jackc/pgx/v5/pgtype.BoolCodec

8 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		bool.go#L105: type BoolCodec struct{}
		bool.go#L107: func (BoolCodec) FormatSupported(format int16) bool {
		bool.go#L111: func (BoolCodec) PreferredFormat() int16 {
		bool.go#L115: func (BoolCodec) PlanEncode(m *Map, oid uint32, format int16, value any) EncodePlan {
		bool.go#L206: func (BoolCodec) PlanScan(m *Map, oid uint32, format int16, target any) ScanPlan {
		bool.go#L227: func (c BoolCodec) DecodeDatabaseSQLValue(m *Map, oid uint32, format int16, src []byte) (driver.Value, error) {
		bool.go#L231: func (c BoolCodec) DecodeValue(m *Map, oid uint32, format int16, src []byte) (any, error) {
		pgtype_default.go#L52: 	defaultMap.RegisterType(&Type{Name: "bool", OID: BoolOID, Codec: BoolCodec{}})