Commit 18f55920 authored by unknown's avatar unknown

Merge work.mysql.com:/home/bk/mysql-4.0

into fred.bitbike.com:/home/arjen/mysql-4.0


Docs/manual.texi:
  Auto merged
parents 4bf8ec93 4e04b123
...@@ -8,10 +8,10 @@ ...@@ -8,10 +8,10 @@
use strict; use strict;
my $table_width = 12.75; # cm my $table_width = 12.75; # Specify the max width of the table in cm
my $gutter_width = 0.55; # 2 mm my $gutter_width = 0.55; # Specify the width of the gutters in cm
my $str = join '', <>; my $str = join '', <>; # Push stdin (or file)
$str =~ s{([\t ]*(<colspec colwidth=\".+?\" />\s*)+)} $str =~ s{([\t ]*(<colspec colwidth=\".+?\" />\s*)+)}
{&rel2abs($1)}ges; {&rel2abs($1)}ges;
......
...@@ -6,8 +6,12 @@ ...@@ -6,8 +6,12 @@
#create include.texi with version/port # #create include.texi with version/port #
echo "@c This file is autogenerated by the Makefile" > include.texi echo "@c This file is autogenerated by the Makefile" > include.texi
echo -n "@set mysql_version " >> include.texi echo -n "@set mysql_version " >> include.texi
# grep "AM_INIT_AUTOMAKE(mysql, " ../configure.in | \
# sed -e 's;AM_INIT_AUTOMAKE(mysql, ;;' -e 's;);;' >> include.texi
# 2002-04-26 arjen - the below just picks #.# instead of #.#.#-alpha
# (code by mwagner - tnx)
grep "AM_INIT_AUTOMAKE(mysql, " ../configure.in | \ grep "AM_INIT_AUTOMAKE(mysql, " ../configure.in | \
sed -e 's;AM_INIT_AUTOMAKE(mysql, ;;' -e 's;);;' >> include.texi perl -p -e 's/AM_INIT_AUTOMAKE\(mysql,\s(\d+\.\d+)\..+/$1/' >> include.texi
echo -n "@set default_port " >> include.texi echo -n "@set default_port " >> include.texi
grep "MYSQL_TCP_PORT_DEFAULT=" ../configure.in | \ grep "MYSQL_TCP_PORT_DEFAULT=" ../configure.in | \
sed -e 's;MYSQL_TCP_PORT_DEFAULT=;;' >> include.texi sed -e 's;MYSQL_TCP_PORT_DEFAULT=;;' >> include.texi
......
...@@ -231,8 +231,8 @@ security bug in @code{MySQL Server}, you should send an e-mail to ...@@ -231,8 +231,8 @@ security bug in @code{MySQL Server}, you should send an e-mail to
@menu @menu
* Manual-info:: About This Manual * Manual-info:: About This Manual
* What-is:: What Is MySQL? * What-is:: What Is MySQL
* What is MySQL AB:: What Is MySQL AB? * What is MySQL AB:: What Is MySQL AB
* Licensing and Support:: MySQL Support and Licensing * Licensing and Support:: MySQL Support and Licensing
* MySQL 4.0 In A Nutshell:: MySQL 4.0 In A Nutshell * MySQL 4.0 In A Nutshell:: MySQL 4.0 In A Nutshell
* MySQL Information Sources:: MySQL Information Sources * MySQL Information Sources:: MySQL Information Sources
...@@ -397,7 +397,7 @@ alternatives are listed within braces (@samp{@{} and @samp{@}}): ...@@ -397,7 +397,7 @@ alternatives are listed within braces (@samp{@{} and @samp{@}}):
@node What-is, What is MySQL AB, Manual-info, Introduction @node What-is, What is MySQL AB, Manual-info, Introduction
@section What Is MySQL? @section What Is MySQL
@cindex MySQL, defined @cindex MySQL, defined
@cindex MySQL, introduction @cindex MySQL, introduction
...@@ -948,7 +948,7 @@ year values). ...@@ -948,7 +948,7 @@ year values).
@node What is MySQL AB, Licensing and Support, What-is, Introduction @node What is MySQL AB, Licensing and Support, What-is, Introduction
@section What Is MySQL AB? @section What Is MySQL AB
@cindex MySQL AB, defined @cindex MySQL AB, defined
...@@ -1423,7 +1423,8 @@ The @code{MySQL} software is released under the ...@@ -1423,7 +1423,8 @@ The @code{MySQL} software is released under the
which probably is the best known @code{Open Source} license. which probably is the best known @code{Open Source} license.
The formal terms of the @code{GPL} license can be found at The formal terms of the @code{GPL} license can be found at
@uref{http://www.gnu.org/licenses/}. @uref{http://www.gnu.org/licenses/}.
See also @uref{http://www.gnu.org/licenses/gpl-faq.html}. See also @uref{http://www.gnu.org/licenses/gpl-faq.html} and
@uref{http://www.gnu.org/philosophy/enforcing-gpl.html}.
Since the @code{MySQL} software is released under the @code{GPL}, Since the @code{MySQL} software is released under the @code{GPL},
it may often be used for free, but for certain uses you may want it may often be used for free, but for certain uses you may want
...@@ -12762,12 +12763,6 @@ example, @samp{x*} matches any number of @samp{x} characters, ...@@ -12762,12 +12763,6 @@ example, @samp{x*} matches any number of @samp{x} characters,
@samp{[0-9]*} matches any number of digits, and @samp{.*} matches any @samp{[0-9]*} matches any number of digits, and @samp{.*} matches any
number of anything. number of anything.
@item
Regular expressions are case sensitive, but you can use a character class to
match both lettercases if you wish. For example, @samp{[aA]} matches
lowercase or uppercase @samp{a} and @samp{[a-zA-Z]} matches any letter in
either case.
@item @item
The pattern matches if it occurs anywhere in the value being tested. The pattern matches if it occurs anywhere in the value being tested.
(SQL patterns match only if they match the entire value.) (SQL patterns match only if they match the entire value.)
...@@ -33189,20 +33184,6 @@ If you are not getting the results you expect from your query, please ...@@ -33189,20 +33184,6 @@ If you are not getting the results you expect from your query, please
read the @code{GROUP BY} description. read the @code{GROUP BY} description.
@xref{Group by functions}. @xref{Group by functions}.
@item
@cindex hints
@code{SQL_BUFFER_RESULT} will force the result to be put into a temporary
table. This will help MySQL free the table locks early and will help
in cases where it takes a long time to send the result set to the client.
@item
@cindex hints
@code{SQL_SMALL_RESULT}, a MySQL-specific option, can be used
with @code{GROUP BY} or @code{DISTINCT} to tell the optimiser that the
result set will be small. In this case, MySQL will use fast
temporary tables to store the resulting table instead of using sorting. In
MySQL Version 3.23 this shouldn't normally be needed.
@item @item
@cindex hints @cindex hints
@code{STRAIGHT_JOIN} forces the optimiser to join the tables in the order in @code{STRAIGHT_JOIN} forces the optimiser to join the tables in the order in
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment