{"id":"6fdba429d8b05f9d","repo":"jackc/pgx","slug":"d-is-less-than-minimum-value-for-int","errorCode":null,"errorMessage":"%d is less than minimum value for int","messagePattern":"(.+?) is less than minimum value for int","errorType":"exception","errorClass":null,"httpStatus":null,"severity":"error","filePath":"pgtype/builtin_wrappers.go","lineNumber":114,"sourceCode":"\n\treturn nil\n}\n\nfunc (w int64Wrapper) Int64Value() (Int8, error) {\n\treturn Int8{Int64: int64(w), Valid: true}, nil\n}\n\ntype intWrapper int\n\nfunc (w intWrapper) SkipUnderlyingTypePlan() {}\n\nfunc (w *intWrapper) ScanInt64(v Int8) error {\n\tif !v.Valid {\n\t\treturn fmt.Errorf(\"cannot scan NULL into *int\")\n\t}\n\n\tif v.Int64 < math.MinInt {\n\t\treturn fmt.Errorf(\"%d is less than minimum value for int\", v.Int64)\n\t}\n\tif v.Int64 > math.MaxInt {\n\t\treturn fmt.Errorf(\"%d is greater than maximum value for int\", v.Int64)\n\t}\n\n\t*w = intWrapper(v.Int64)\n\n\treturn nil\n}\n\nfunc (w intWrapper) Int64Value() (Int8, error) {\n\treturn Int8{Int64: int64(w), Valid: true}, nil\n}\n\ntype uint8Wrapper uint8\n\nfunc (w uint8Wrapper) SkipUnderlyingTypePlan() {}\n","sourceCodeStart":96,"sourceCodeEnd":132,"githubUrl":"https://github.com/jackc/pgx/blob/ec1a0befd22592cffffdeeb0a50311b506372f4c/pgtype/builtin_wrappers.go#L96-L132","documentation":"Error \"%d is less than minimum value for int\" thrown in jackc/pgx.","triggerScenarios":"Thrown at pgtype/builtin_wrappers.go:114 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}