diff options
author | unknown <heikki@hundin.mysql.fi> | 2004-09-06 13:01:29 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2004-09-06 13:01:29 +0300 |
commit | bdf4d6940d53f90c42ff5f183e189818d883ed2d (patch) | |
tree | 597ef1f4b99d7426d8e3428af732bde46218b1e1 /innobase/trx | |
parent | 1230daf8f281bbb1ca07364b9a8c18ea4aa02a4d (diff) | |
download | mariadb-git-bdf4d6940d53f90c42ff5f183e189818d883ed2d.tar.gz |
srv0start.c:
Fix bug #5414 in 4.1: srv_max_n_threads was always set to only 1000, regardless of the buffer pool size; undelr very high concurrent loads this could cause an assertion failure in sync0arr.c line 384 when we ran out of wait slots for threads; also innodb_thread_concurrency did not work, because the wait queue also there overflowed at 1000 concurrent threads; also remove redundant code
trx0undo.c:
Add a missing newline to fprints
innobase/trx/trx0undo.c:
Add a missing newline to fprints
innobase/srv/srv0start.c:
Fix bug in 4.1: srv_max_n_threads was always set to only 1000, regardless of the buffer pool size; undelr very high concurrent loads this could cause an assertion failure in sync0arr.c line 384 when we ran out of wait slots for threads; also innodb_thread_concurrency did not work, because the wait queue also there overflowed at 1000 concurrent threads; also remove redundant code
Diffstat (limited to 'innobase/trx')
-rw-r--r-- | innobase/trx/trx0undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/trx/trx0undo.c b/innobase/trx/trx0undo.c index 79566fe01c3..c1edc223cbc 100644 --- a/innobase/trx/trx0undo.c +++ b/innobase/trx/trx0undo.c @@ -404,7 +404,7 @@ trx_undo_seg_create( ut_print_timestamp(stderr); fprintf(stderr, "InnoDB: Warning: cannot find a free slot for an undo log. Do you have too\n" -"InnoDB: many active transactions running concurrently?"); +"InnoDB: many active transactions running concurrently?\n"); return(NULL); } |