diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2018-02-14 18:39:56 +0000 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2018-02-14 18:39:56 +0000 |
commit | ac8e3c85a40467de0ffc908dd9c5214acf23b38a (patch) | |
tree | 42d7927f707495576ff0876c93c60e6011dc73a5 /storage/innobase/include/trx0purge.h | |
parent | 1a10b261d0c810efe56a84ead44eb841762fb5c6 (diff) | |
download | mariadb-git-ac8e3c85a40467de0ffc908dd9c5214acf23b38a.tar.gz |
MDEV-15295 Type mismatch for srv_fatal_semaphore_wait_threshold
Diffstat (limited to 'storage/innobase/include/trx0purge.h')
-rw-r--r-- | storage/innobase/include/trx0purge.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/include/trx0purge.h b/storage/innobase/include/trx0purge.h index c9f5edb1432..be98921005d 100644 --- a/storage/innobase/include/trx0purge.h +++ b/storage/innobase/include/trx0purge.h @@ -517,9 +517,9 @@ public: parallelized purge operation */ ReadView view; /*!< The purge will not remove undo logs which are >= this view (purge view) */ - volatile ulint n_submitted; /*!< Count of total tasks submitted + ulint n_submitted; /*!< Count of total tasks submitted to the task queue */ - volatile ulint n_completed; /*!< Count of total tasks completed */ + ulint n_completed; /*!< Count of total tasks completed */ /*------------------------------*/ /* The following two fields form the 'purge pointer' which advances |