mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Fix a truncations warning
This commit is contained in:
@ -186,7 +186,7 @@ struct Query_cache_query
|
|||||||
inline void set_results_ready() { ready= 1; }
|
inline void set_results_ready() { ready= 1; }
|
||||||
inline bool is_results_ready() { return ready; }
|
inline bool is_results_ready() { return ready; }
|
||||||
inline void increment_hits() { hit_count++; }
|
inline void increment_hits() { hit_count++; }
|
||||||
inline ulong hits() { return hit_count; }
|
inline ulonglong hits() { return hit_count; }
|
||||||
void lock_writing();
|
void lock_writing();
|
||||||
void lock_reading();
|
void lock_reading();
|
||||||
bool try_lock_writing();
|
bool try_lock_writing();
|
||||||
|
Reference in New Issue
Block a user