diff options
author | unknown <monty@hundin.mysql.fi> | 2001-11-25 13:50:48 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-11-25 13:50:48 +0200 |
commit | 2239aa172b9a7e0100f0ab98e7e421bc0cfeb270 (patch) | |
tree | 20c1ecfa7529a49fc978cd3d82ae1115d507a9c0 /Docs | |
parent | e585c81a869ddf4a1be91d04ef3d69f2e969dcb7 (diff) | |
download | mariadb-git-2239aa172b9a7e0100f0ab98e7e421bc0cfeb270.tar.gz |
Fixes for embedded version.
BitKeeper/deleted/.del-WHITEPAPER~da1226799debcf3f:
Delete: libmysqld/WHITEPAPER
Docs/manual.texi:
Changelog
client/mysqltest.c:
Fix things that crashed embedded MySQL
libmysqld/examples/test-run:
Cleanup of old BDB files.
mysql-test/r/innodb.result:
Fix for embedded library
mysql-test/t/innodb.test:
Fix for embedded library
mysys/mf_keycache.c:
Safety
sql/ha_berkeley.cc:
Added DBUG statements
sql/ha_innobase.cc:
Fixed bug for embedded version
sql/ha_innobase.h:
Fix to use index when doing an ORDER BY on a whole InnoDB table
sql/handler.h:
Fix to use index when doing an ORDER BY on a whole InnoDB table
sql/mysqld.cc:
Safety fix
sql/sql_base.cc:
cleanup
sql/sql_select.cc:
Fix to use index when doing an ORDER BY on a whole InnoDB table
Diffstat (limited to 'Docs')
-rw-r--r-- | Docs/manual.texi | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index ffa42d2ba73..b75668cf514 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -32431,7 +32431,7 @@ create_definition: or INDEX [index_name] (index_col_name,...) or UNIQUE [INDEX] [index_name] (index_col_name,...) or FULLTEXT [INDEX] [index_name] (index_col_name,...) - or [CONSTRAINT symbol] FOREIGN KEY index_name (index_col_name,...) + or [CONSTRAINT symbol] FOREIGN KEY [index_name] (index_col_name,...) [reference_definition] or CHECK (expr) @@ -32866,7 +32866,7 @@ All mapped tables must be in the same database as the @code{MERGE} table. @item If you want to insert data in a @code{MERGE} table, you have to specify with @code{INSERT_METHOD} into with table the row should be inserted. -@xref{MERGE}. +@xref{MERGE}. This option was introduced in MySQL 4.0.0. @item In the created table the @code{PRIMARY} key will be placed first, followed @@ -45796,7 +45796,10 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}. @itemize @bullet @item @code{LOCATE()} and @code{INSTR()} are case sensitive if neither -argument is a binary string. binary strings. +argument is a binary string. +@item +Changed @code{RND()} initialization so that @code{RND(N)} and @code{RND(N+1)} +are more distinct. @item Fixed core dump bug in @code{UPDATE ... ORDER BY }. @item @@ -45808,6 +45811,8 @@ Added boolean fulltext search code. It should be considered early alpha. @item Extended @code{MODIFY} and @code{CHANGE} in @code{ALTER TABLE} to accept the @code{AFTER} keyword. +@item +Index are now used with @code{ORDER} BY on a whole InnoDB table. @end itemize @node News-4.0.0, , News-4.0.1, News-4.0.x |