summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2001-06-11 12:23:30 +0300
committerunknown <monty@hundin.mysql.fi>2001-06-11 12:23:30 +0300
commit7603a9c778af070d2050f8ed489ab3f40e5b68d5 (patch)
tree608b29edc93e0262804ea5b328b6cd71f1d80626
parent0f2849e4c1a89cba7f10b6944fe3ca35534708e2 (diff)
downloadmariadb-git-7603a9c778af070d2050f8ed489ab3f40e5b68d5.tar.gz
Small fixes in the manual.
BitKeeper/etc/ignore: Added sql-bench/compare-results-all sql-bench/template.html to the ignore list Docs/manual.texi: Changed innodb_unix_file_flush_method -> innodb_flush_method.
-rw-r--r--.bzrignore2
-rw-r--r--Docs/manual.texi10
2 files changed, 9 insertions, 3 deletions
diff --git a/.bzrignore b/.bzrignore
index dbe41ffe92a..a5a65443413 100644
--- a/.bzrignore
+++ b/.bzrignore
@@ -284,3 +284,5 @@ support-files/mysql.spec
tags
tmp/*
sql-bench/gif/*
+sql-bench/compare-results-all
+sql-bench/template.html
diff --git a/Docs/manual.texi b/Docs/manual.texi
index 76e84b4cdad..0a39e508579 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -25727,7 +25727,7 @@ in its own lock table and rolls back the transaction. If you use
than InnoDB in the same transaction, then a deadlock may arise which
InnoDB cannot notice. In cases like this the timeout is useful to
resolve the situation.
-@item @code{innodb_unix_file_flush_method} @tab
+@item @code{innodb_flush_method} @tab
(Available from 3.23.39 up.)
The default value for this is @code{fdatasync}.
Another option is @code{O_DSYNC}.
@@ -26338,7 +26338,7 @@ In some versions of Linux and Unix, flushing files to disk with the Unix
@code{fdatasync} and other similar methods is surprisingly slow.
The default method InnoDB uses is the @code{fdatasync} function.
If you are not satisfied with the database write performance, you may
-try setting @code{innodb_unix_file_flush_method} in @file{my.cnf}
+try setting @code{innodb_flush_method} in @file{my.cnf}
to @code{O_DSYNC}, though O_DSYNC seems to be slower on most systems.
You can also try setting it to @code{littlesync}, which means that
InnoDB does not call the file flush for every write it does to a
@@ -42520,6 +42520,9 @@ For more information on Object Oriented Programming
@uref{http://language.perl.com/info/documentation.html}
@end example
+Note that if you want to use transactions with Perl, you need to have
+@code{Msql-Mysql-modules} version 1.2216 or newer.
+
Installation instructions for @strong{MySQL} Perl support are given in
@ref{Perl support}.
@@ -45730,7 +45733,8 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}.
@itemize @bullet
@item
-Added support for symbolic links to @code{MyISAM} tables.
+Added support for symbolic links to @code{MyISAM} tables. Symlink handling is
+now enabled by default for Windows.
@item
Added @code{SQL_CALC_FOUND_ROWS} and @code{FOUND_ROWS()}. This makes it
possible to know how many rows a query would have returned