diff options
author | unknown <monty@hundin.mysql.fi> | 2002-03-12 11:38:22 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-03-12 11:38:22 +0200 |
commit | 4c221321b624e55238c641b515e24ad1091cdc93 (patch) | |
tree | c217663c9f7a4fba0c5a00acb72b3e980954f780 /Docs | |
parent | c13baf70ec937501389ed6e9f94c98635f1c1b76 (diff) | |
download | mariadb-git-4c221321b624e55238c641b515e24ad1091cdc93.tar.gz |
Added help for --local-infile
Fix for bug on intel where (int32) 1 << 32 == 1, which gave problems when using 32 keys.
Allow SET PASSWORD for anonymous user
Docs/manual.texi:
Changelog
client/mysql.cc:
Added help for --local-infile
client/mysqlimport.c:
Merge with 4.0.
Patch for LOCAL INFILE handling
configure.in:
cleanup
include/global.h:
Fix for bug on intel where (int32) 1 << 32 == 1
mysql-test/r/create.result:
Test of CREATE TABLE with 32 keys
mysql-test/t/create.test:
Test of CREATE TABLE with 32 keys
scripts/mysqlhotcopy.sh:
Patch for databasenames with space.
sql/ha_isam.cc:
Fix for bug on intel where (int32) 1 << 32 == 1
sql/ha_myisam.cc:
Fix for bug on intel where (int32) 1 << 32 == 1
sql/ha_myisammrg.cc:
Fix for bug on intel where (int32) 1 << 32 == 1
sql/mysqld.cc:
Added help for --local-infile
sql/sql_acl.cc:
Allow SET PASSWORD of anonymous user
sql/table.cc:
Fix for bug on intel where (int32) 1 << 32 == 1
Diffstat (limited to 'Docs')
-rw-r--r-- | Docs/manual.texi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index 9e8c63f88f5..4955de63ea8 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -12010,6 +12010,12 @@ make sure that @file{gmalloc.o} is included in @file{libgthreads.a} and In FSU Pthreads, the following system calls are pthreads-aware: @code{read()}, @code{write()}, @code{getmsg()}, @code{connect()}, @code{accept()}, @code{select()}, and @code{wait()}. + +@item +The CSSA-2001-SCO.35.2 (the patch is listed in custom as +erg711905-dscr_remap security patch (ver 2.0.0) breaks FSU threads and +makes mysqld instable. You have to remove this one if you want to run +mysqld on an OpenServer 5.0.6 machine. @end itemize If you want to install DBI on SCO, you have to edit the @file{Makefile} in @@ -46890,6 +46896,12 @@ not yet 100% confident in this code. @node News-3.23.50, News-3.23.49, News-3.23.x, News-3.23.x @appendixsubsec Changes in release 3.23.50 @itemize @bullet +@item +Fixed problem with @code{SHOW CREATE TABLE} and @code{PRIMARY KEY} when using +32 indexes. +@item +Fixed that one can use @code{SET PASSWORD} for the anonymous user. +@item Fixed core-dump bug when reading client groups from option files using @code{mysql_options()}. @item |