diff options
author | heikki@hundin.mysql.fi <> | 2004-09-06 13:01:29 +0300 |
---|---|---|
committer | heikki@hundin.mysql.fi <> | 2004-09-06 13:01:29 +0300 |
commit | b3325a06d1a2bb35f1ae0d75758190b4cfaf8cb3 (patch) | |
tree | 597ef1f4b99d7426d8e3428af732bde46218b1e1 /innobase/trx/trx0undo.c | |
parent | ad6ad34b45ed8414eec08885334d540eafafb0fc (diff) | |
download | mariadb-git-b3325a06d1a2bb35f1ae0d75758190b4cfaf8cb3.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
Diffstat (limited to 'innobase/trx/trx0undo.c')
-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); } |