Commit e197d7dc authored by calvin's avatar calvin

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)
parent 25408c8e
...@@ -145,7 +145,7 @@ extern int srv_query_thread_priority; ...@@ -145,7 +145,7 @@ extern int srv_query_thread_priority;
extern ulong srv_max_buf_pool_modified_pct; extern ulong srv_max_buf_pool_modified_pct;
extern ulong srv_max_purge_lag; extern ulong srv_max_purge_lag;
extern ulint srv_replication_delay; extern ulong srv_replication_delay;
/*-------------------------------------------*/ /*-------------------------------------------*/
extern ulint srv_n_rows_inserted; extern ulint srv_n_rows_inserted;
......
...@@ -311,7 +311,7 @@ UNIV_INTERN ibool srv_use_checksums = TRUE; ...@@ -311,7 +311,7 @@ UNIV_INTERN ibool srv_use_checksums = TRUE;
UNIV_INTERN ibool srv_set_thread_priorities = TRUE; UNIV_INTERN ibool srv_set_thread_priorities = TRUE;
UNIV_INTERN int srv_query_thread_priority = 0; 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; UNIV_INTERN ulong srv_n_spin_wait_rounds = 20;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment