diff options
author | unknown <msvensson@neptunus.(none)> | 2005-02-24 10:08:47 +0100 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2005-02-24 10:08:47 +0100 |
commit | 11901d2bd9a3ead2bb1483e27f7122ce91c9bd25 (patch) | |
tree | e97a9f2170747381be1c0d6991026776610734f5 /sql | |
parent | 3e8c593df0ea8a926280df80733138ffecdb97ab (diff) | |
parent | f12722191de4b93b4bc4d001436061707e6ce9ef (diff) | |
download | mariadb-git-11901d2bd9a3ead2bb1483e27f7122ce91c9bd25.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
sql/mysqld.cc:
Auto merged
Diffstat (limited to 'sql')
-rw-r--r-- | sql/ha_ndbcluster.cc | 6 | ||||
-rw-r--r-- | sql/mysqld.cc | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/sql/ha_ndbcluster.cc b/sql/ha_ndbcluster.cc index 12e2e3672cc..884830c51ed 100644 --- a/sql/ha_ndbcluster.cc +++ b/sql/ha_ndbcluster.cc @@ -5783,8 +5783,11 @@ extern "C" pthread_handler_decl(ndb_util_thread_func, continue; } + /* Round tim e from millisceonds to seconds */ + uint wait_secs= ((ndb_cache_check_time+999)/1000); + DBUG_PRINT("ndb_util_thread", ("wait_secs: %d", wait_secs)); /* Set new time to wake up */ - set_timespec(abstime, ndb_cache_check_time); + set_timespec(abstime, wait_secs); /* Lock mutex and fill list with pointers to all open tables */ NDB_SHARE *share; @@ -5793,7 +5796,6 @@ extern "C" pthread_handler_decl(ndb_util_thread_func, { share= (NDB_SHARE *)hash_element(&ndbcluster_open_tables, i); share->use_count++; /* Make sure the table can't be closed */ - DBUG_PRINT("ndb_util_thread", ("Found open table[%d]: %s, use_count: %d", i, share->table_name, share->use_count)); diff --git a/sql/mysqld.cc b/sql/mysqld.cc index 9013a7f5c3d..c230f976adc 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -4668,7 +4668,7 @@ Disable with --skip-ndbcluster (will save memory).", (gptr*) &opt_ndb_optimized_node_selection, 0, GET_BOOL, OPT_ARG, 1, 0, 0, 0, 0, 0}, { "ndb-cache-check-time", OPT_NDB_CACHE_CHECK_TIME, - "A dedicated thread is created to update cached commit count value at the given interval.", + "A dedicated thread is created to, at the given millisecons interval, invalidate the query cache if another MySQL server in the cluster has changed the data in the database.", (gptr*) &opt_ndb_cache_check_time, (gptr*) &opt_ndb_cache_check_time, 0, GET_ULONG, REQUIRED_ARG, 0, 0, LONG_TIMEOUT, 0, 1, 0}, #endif |