mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
branches/zip: fix Mantis issue #96 Problem compiling ha_innodb.cc
on 64-bit Windows Change the definition of srv_replication_delay from ulint to ulong. ulint is 64-bit on Win64. Approved by: Heikki (on IM)
This commit is contained in:
parent
25408c8e48
commit
e197d7dcf7
2 changed files with 2 additions and 2 deletions
|
@ -145,7 +145,7 @@ extern int srv_query_thread_priority;
|
|||
extern ulong srv_max_buf_pool_modified_pct;
|
||||
extern ulong srv_max_purge_lag;
|
||||
|
||||
extern ulint srv_replication_delay;
|
||||
extern ulong srv_replication_delay;
|
||||
/*-------------------------------------------*/
|
||||
|
||||
extern ulint srv_n_rows_inserted;
|
||||
|
|
|
@ -311,7 +311,7 @@ UNIV_INTERN ibool srv_use_checksums = TRUE;
|
|||
UNIV_INTERN ibool srv_set_thread_priorities = TRUE;
|
||||
UNIV_INTERN int srv_query_thread_priority = 0;
|
||||
|
||||
UNIV_INTERN ulint srv_replication_delay = 0;
|
||||
UNIV_INTERN ulong srv_replication_delay = 0;
|
||||
|
||||
/*-------------------------------------------*/
|
||||
UNIV_INTERN ulong srv_n_spin_wait_rounds = 20;
|
||||
|
|
Loading…
Add table
Reference in a new issue