{"id":"9945766dbf967a8b","repo":"jackc/pgx","slug":"d-is-less-than-minimum-value-for-int8-994576","errorCode":null,"errorMessage":"%d is less than minimum value for int8","messagePattern":"(.+?) is less than minimum value for int8","errorType":"validation","errorClass":null,"httpStatus":null,"severity":"error","filePath":"pgtype/int.go","lineNumber":317,"sourceCode":"\nfunc (scanPlanBinaryInt2ToInt8) 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.Uint16Exact(src)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"int2: %w\", err)\n\t}\n\n\tp, ok := (dst).(*int8)\n\tif !ok {\n\t\treturn ErrScanTargetTypeChanged\n\t}\n\n\tn := int16(raw)\n\tif n < math.MinInt8 {\n\t\treturn fmt.Errorf(\"%d is less than minimum value for int8\", n)\n\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 scanPlanBinaryInt2ToUint8 struct{}\n\nfunc (scanPlanBinaryInt2ToUint8) 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.Uint16Exact(src)\n\tif err != nil {","sourceCodeStart":299,"sourceCodeEnd":335,"githubUrl":"https://github.com/jackc/pgx/blob/ec1a0befd22592cffffdeeb0a50311b506372f4c/pgtype/int.go#L299-L335","documentation":"Error \"%d is less than minimum value for int8\" thrown in jackc/pgx.","triggerScenarios":"Thrown at pgtype/int.go:317 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}