mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 15:15:34 +02:00
MDEV-25361 fixup: Fix integer type mismatch
InnoDB tablespace identifiers and page numbers are 32-bit numbers.
Let us use a 32-bit type for them in innochecksum.
The changes in commit 1918bdf32c
broke the build on 32-bit Windows.
Thanks to Vicențiu Ciorbaru for an initial version of this fixup.
This commit is contained in:
parent
b30f26e3fe
commit
124dc0d85b
6 changed files with 119 additions and 119 deletions
|
|
@ -458,7 +458,7 @@ in both 32-bit and 64-bit environments. */
|
|||
#ifdef UNIV_INNOCHECKSUM
|
||||
extern bool strict_verify;
|
||||
extern FILE* log_file;
|
||||
extern unsigned long long cur_page_num;
|
||||
extern uint32_t cur_page_num;
|
||||
#endif /* UNIV_INNOCHECKSUM */
|
||||
|
||||
typedef int64_t ib_int64_t;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue