{"id":"718ab519964b8100","repo":"jackc/pgx","slug":"uint8-w","errorCode":null,"errorMessage":"uint8: %w","messagePattern":"uint8: %w","errorType":"error_code","errorClass":null,"httpStatus":null,"severity":"error","filePath":"pgtype/int.go","lineNumber":1497,"sourceCode":"\t} else if n > math.MaxInt8 {\n\t\treturn fmt.Errorf(\"%d is greater than maximum value for int8\", n)\n\t}\n\n\t*p = int8(n)\n\n\treturn nil\n}\n\ntype scanPlanBinaryInt8ToUint8 struct{}\n\nfunc (scanPlanBinaryInt8ToUint8) Scan(src []byte, dst any) error {\n\tif src == nil {\n\t\treturn fmt.Errorf(\"cannot scan NULL into %T\", dst)\n\t}\n\n\traw, err := pgio.Uint64Exact(src)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"uint8: %w\", err)\n\t}\n\n\tp, ok := (dst).(*uint8)\n\tif !ok {\n\t\treturn ErrScanTargetTypeChanged\n\t}\n\n\tn := int64(raw)\n\tif n < 0 {\n\t\treturn fmt.Errorf(\"%d is less than minimum value for uint8\", n)\n\t}\n\n\tif n > math.MaxUint8 {\n\t\treturn fmt.Errorf(\"%d is greater than maximum value for uint8\", n)\n\t}\n\n\t*p = uint8(n)\n","sourceCodeStart":1479,"sourceCodeEnd":1515,"githubUrl":"https://github.com/jackc/pgx/blob/ec1a0befd22592cffffdeeb0a50311b506372f4c/pgtype/int.go#L1479-L1515","documentation":"Error \"uint8: %w\" thrown in jackc/pgx.","triggerScenarios":"Thrown at pgtype/int.go:1497 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"analyzedSha":"ec1a0befd22592cffffdeeb0a50311b506372f4c","analyzedAt":"2026-08-04T22:52:11.263Z","schemaVersion":2}