We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 139e92d commit 5ac9373Copy full SHA for 5ac9373
questdb-rs/src/ingress/decimal.rs
@@ -167,7 +167,7 @@ impl DecimalSerializer for &rust_decimal::Decimal {
167
// We skip the upper 3 bytes (which are sign-extended) and write the lower 13 bytes
168
let mantissa = self.mantissa();
169
out.push(13);
170
- out.extend_from_slice(&mantissa.to_be_bytes()[3..]); // Skip upper 4 bytes, write lower 12
+ out.extend_from_slice(&mantissa.to_be_bytes()[3..]);
171
172
Ok(())
173
}
0 commit comments