diff options
author | unknown <heikki@hundin.mysql.fi> | 2002-09-11 16:07:52 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2002-09-11 16:07:52 +0300 |
commit | 686a758f6561debaed0bdbd1fb395dd6937b4d93 (patch) | |
tree | c1428b35a79c4ccfab78c451b3c17860956d3224 /innobase/srv | |
parent | 6a06c4c534ac68f9d0469f31c869fe1d20b1e463 (diff) | |
download | mariadb-git-686a758f6561debaed0bdbd1fb395dd6937b4d93.tar.gz |
srv0srv.c, srv0srv.h:
Change srv_flush_log_at_trx_commit to ulint, note that ibool is defined as ulint, so this is purely formal change
os0file.c:
Start using unbuffered i/o again in Windows because sequential read using normal i/o was 4 times slower in XP
innobase/os/os0file.c:
Start using unbuffered i/o again in Windows because sequential read using normal i/o was 4 times slower in XP
innobase/include/srv0srv.h:
Change srv_flush_log_at_trx_commit to ulint, note that ibool is defined as ulint, so this is purely formal change
innobase/srv/srv0srv.c:
Change srv_flush_log_at_trx_commit to ulint, note that ibool is defined as ulint, so this is purely formal change
Diffstat (limited to 'innobase/srv')
-rw-r--r-- | innobase/srv/srv0srv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/srv/srv0srv.c b/innobase/srv/srv0srv.c index 7b5aa79b3c7..84d48bebf97 100644 --- a/innobase/srv/srv0srv.c +++ b/innobase/srv/srv0srv.c @@ -96,7 +96,7 @@ ulint srv_n_log_files = ULINT_MAX; ulint srv_log_file_size = ULINT_MAX; /* size in database pages */ ibool srv_log_archive_on = TRUE; ulint srv_log_buffer_size = ULINT_MAX; /* size in database pages */ -ibool srv_flush_log_at_trx_commit = TRUE; +ulint srv_flush_log_at_trx_commit = 1; byte srv_latin1_ordering[256] /* The sort order table of the latin1 character set. The following table is |