mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
[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:
parent
67c7a83280
commit
642d93ed29
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue