Fix typo in float8

non-blocking
Pinank Solanki 2022-02-02 03:23:29 +05:30 committed by Jack Christensen
parent ccc7cc2931
commit 94e10b98b1
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ func (dst *Float8) DecodeBinary(ci *ConnInfo, src []byte) error {
}
if len(src) != 8 {
return fmt.Errorf("invalid length for float4: %v", len(src))
return fmt.Errorf("invalid length for float8: %v", len(src))
}
n := int64(binary.BigEndian.Uint64(src))