[t:2033], increase how often status is updated for queries

git-svn-id: file:///svn/mysql/tokudb-engine/src@14785 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Zardosht Kasheff 2009-09-28 19:10:34 +00:00 committed by Yoni Fogel
parent 67c7a83280
commit 642d93ed29

View file

@ -3965,7 +3965,7 @@ cleanup:
void ha_tokudb::track_progress(THD* thd) {
tokudb_trx_data* trx = (tokudb_trx_data *) thd_data_get(thd, tokudb_hton->slot);
if (trx) {
bool update_status = (trx->stmt_progress.queried % 1000) == 1 ||
bool update_status = (trx->stmt_progress.queried % 10000) == 1 ||
(trx->stmt_progress.inserted% 1000) == 1 ||
(trx->stmt_progress.updated% 1000) == 1 ||
(trx->stmt_progress.deleted% 1000) == 1;