diff options
author | unknown <monty@hundin.mysql.fi> | 2001-10-31 03:22:31 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-10-31 03:22:31 +0200 |
commit | 4765ab612ca4f5ee35c413437f7da04889bd0a14 (patch) | |
tree | a7cd1bf6f7f295d11ffce88081f69bc1963bfd06 /Docs/manual.texi | |
parent | bacf546eaaa2666a1634ea224af2c53cb17dcfb9 (diff) | |
download | mariadb-git-4765ab612ca4f5ee35c413437f7da04889bd0a14.tar.gz |
Update for OS2 (patch from Yuri Dario).
Use LONG_TIMEOUT (one year) instead of ~0 for long timeouts
Fixed error messages.
Fixed problem with const propagation when comparing columns of different types
BitKeeper/deleted/.del-.cvsignore~a91d63182f0b2366:
Delete: sql/share/norwegian/.cvsignore
BitKeeper/deleted/.del-.cvsignore~469064b5190d703d:
Delete: sql/share/norwegian-ny/.cvsignore
Docs/manual.texi:
Changelog
client/client_priv.h:
Update for OS2
client/mysqldump.c:
Update for OS2
include/mysqld_error.h:
Updated error texts
isam/create.c:
Removed warning
myisam/myisamchk.c:
Fix for OS2
myisam/myisampack.c:
Fix for OS2
mysys/mf_cache.c:
Fix for OS2
mysys/mf_tempfile.c:
Fix for OS2
mysys/my_os2file64.c:
Fix for OS2
mysys/my_tempnam.c:
Fix for OS2
os2/ChangeLog.os2:
Fix for OS2
os2/MySQL-Client.icc:
Fix for OS2
os2/MySQL-Opt.icc:
Fix for OS2
os2/MySQL-Source.icc:
Fix for OS2
os2/MySQL-Sql.icc:
Fix for OS2
os2/MySQL-Util.icc:
Fix for OS2
sql/mysqld.cc:
Use LONG_TIMEOUT (one year) instead of ~0 for long timeouts. This avoids some problems when users spefices wrong arguments to mysqld.
sql/nt_servc.cc:
C
sql/share/czech/errmsg.txt:
Updated error texts
sql/share/danish/errmsg.txt:
Updated error texts
sql/share/dutch/errmsg.txt:
Updated error texts
sql/share/english/errmsg.txt:
Updated error texts
sql/share/estonian/errmsg.txt:
Updated error texts
sql/share/french/errmsg.txt:
Updated error texts
sql/share/german/errmsg.txt:
Updated error texts
sql/share/greek/errmsg.txt:
Updated error texts
sql/share/hungarian/errmsg.txt:
Updated error texts
sql/share/italian/errmsg.txt:
Updated error texts
sql/share/japanese/errmsg.txt:
Updated error texts
sql/share/korean/errmsg.txt:
Updated error texts
sql/share/norwegian-ny/errmsg.txt:
Updated error texts
sql/share/norwegian/errmsg.txt:
Updated error texts
sql/share/polish/errmsg.txt:
Updated error texts
sql/share/portuguese/errmsg.txt:
Updated error texts
sql/share/romanian/errmsg.txt:
Updated error texts
sql/share/russian/errmsg.txt:
Updated error texts
sql/share/slovak/errmsg.txt:
Updated error texts
sql/share/spanish/errmsg.txt:
Updated error texts
sql/share/swedish/errmsg.txt:
Updated error texts
sql/share/ukrainian/errmsg.txt:
Updated error texts
sql/sql_select.cc:
Fixed problem with const propagation when comparing columns of different types.
Fixed bug when HEAP table is converted to MyISAM tables in GROUP BY on long strings.
Diffstat (limited to 'Docs/manual.texi')
-rw-r--r-- | Docs/manual.texi | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index 6514b36e703..e01f8ceb5b4 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -46840,6 +46840,12 @@ not yet 100% confident in this code. @appendixsubsec Changes in release 3.23.44 @itemize @bullet @item +Fixed bug in const-propagation when comparing columns of different +types. (@code{SELECT * FROM date_col="2001-01-01" and date_col=time_col}) +@item +Fixed bug that caused error message @code{Can't write, because of unique +constraint} with some @code{GROUP BY} queries. +@item Fixed problem with sjis character strings used within quoted table names. @item Fixed coredump when using @code{CREATE ... FULLTEXT} keys with other table @@ -46847,6 +46853,8 @@ handlers than MyISAM. @item Add missing @code{InnoDB} variables to @code{SHOW VARIABLES}. @item +Foreign keys checking is now done for @code{InnoDB} tables. +@item Don't use @code{signal()} on windows because this appears to not be 100 % reliable. @item @@ -46858,7 +46866,9 @@ Fixed bug when doing @code{LEFT JOIN ... ON (column_name = constant) WHERE colu When using replications, aborted queries that contained @code{%} could cause a core dump. @item -TCP_NODELAY was not used on some systems. (Speed problem). +@code{TCP_NODELAY} was not used on some systems. (Speed problem). +@item +Applied portability fixes for OS/2 (Patch by Yuri Dario). @end itemize @node News-3.23.43, News-3.23.42, News-3.23.44, News-3.23.x |