Commit a4febb5
authored
fix(comptaction): use int64_t for parsing total_keys and deleted_keys (#3599)
# Summary
When the number of total keys is above 2^31 the following error is
present in the logs
```
[E][compaction_checker.cc:87] [compaction checker] Parse total_keys error: out of range of integer type
```
Parsing as `int64_t` match `total_keys` and `deleted_keys` type.1 parent df6c98e commit a4febb5
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
82 | 82 | | |
83 | 83 | | |
84 | 84 | | |
85 | | - | |
| 85 | + | |
86 | 86 | | |
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
93 | | - | |
| 93 | + | |
94 | 94 | | |
95 | 95 | | |
96 | 96 | | |
| |||
0 commit comments