Skip to content

Commit

Permalink
remove stupid trace
Browse files Browse the repository at this point in the history
  • Loading branch information
Codetector1374 committed Jul 31, 2024
1 parent 5ad02e2 commit 10ac9a0
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/innodb/table/field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,6 @@ impl Field {
if signed {
let numeric_value = num & ((1u64 << (len * 8 - 1)) - 1);
let is_positive = (num & (1u64 << (len * 8 - 1))) != 0;
trace!(
"Signed Int: numeric: {:#x}, is_pos: {}",
numeric_value,
is_positive
);
FieldValue::SignedInt(if is_positive {
numeric_value as i64
} else {
Expand Down

0 comments on commit 10ac9a0

Please sign in to comment.