Update to MySQL 5.1.39

This commit is contained in:
Tom Lane 2009-09-22 04:29:57 +00:00 committed by Michal Schorm
parent 544d60a817
commit fbfeb21c64
4 changed files with 19 additions and 11 deletions

View File

@ -1 +1 @@
mysql-5.1.37.tar.gz mysql-5.1.39.tar.gz

View File

@ -11,17 +11,21 @@ elsewhere. At some point we might want to use our my_setstacksize()
hack in NdbThread_Create(). hack in NdbThread_Create().
diff -Naur mysql-5.1.33.orig/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp mysql-5.1.33/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp diff -Naur mysql-5.1.39.orig/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp mysql-5.1.39/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
--- mysql-5.1.33.orig/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp 2009-03-13 17:54:07.000000000 -0400 --- mysql-5.1.39.orig/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp 2009-09-04 12:21:19.000000000 -0400
+++ mysql-5.1.33/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp 2009-04-15 14:00:04.000000000 -0400 +++ mysql-5.1.39/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp 2009-09-21 22:33:08.000000000 -0400
@@ -106,8 +106,8 @@ @@ -106,13 +106,8 @@
AsyncFile::doStart() AsyncFile::doStart()
{ {
// Stacksize for filesystem threads // Stacksize for filesystem threads
- // An 8k stack should be enough -#if !defined(DBUG_OFF) && defined (__hpux)
- const NDB_THREAD_STACKSIZE stackSize = 8192; - // Empirical evidence indicates at least 32k
+ // don't make this too small + // don't make this too small
+ const NDB_THREAD_STACKSIZE stackSize = 32768; const NDB_THREAD_STACKSIZE stackSize = 32768;
-#else
- // Otherwise an 8k stack should be enough
- const NDB_THREAD_STACKSIZE stackSize = 8192;
-#endif
char buf[16]; char buf[16];
numAsyncFiles++; numAsyncFiles++;

View File

@ -1,6 +1,6 @@
Name: mysql Name: mysql
Version: 5.1.37 Version: 5.1.39
Release: 5%{?dist} Release: 1%{?dist}
Summary: MySQL client programs and shared libraries Summary: MySQL client programs and shared libraries
Group: Applications/Databases Group: Applications/Databases
URL: http://www.mysql.com URL: http://www.mysql.com
@ -642,6 +642,10 @@ fi
%{_mandir}/man1/mysql_client_test.1* %{_mandir}/man1/mysql_client_test.1*
%changelog %changelog
* Tue Sep 22 2009 Tom Lane <tgl@redhat.com> 5.1.39-1
- Update to MySQL 5.1.39, for various fixes described at
http://dev.mysql.com/doc/refman/5.1/en/news-5-1-39.html
* Mon Aug 31 2009 Tom Lane <tgl@redhat.com> 5.1.37-5 * Mon Aug 31 2009 Tom Lane <tgl@redhat.com> 5.1.37-5
- Work around unportable assumptions about stpcpy(); re-enable main.mysql test - Work around unportable assumptions about stpcpy(); re-enable main.mysql test
- Clean up some obsolete parameters to the configure script - Clean up some obsolete parameters to the configure script

View File

@ -1 +1 @@
cbdb8783b053019755ee9196f67ea04c mysql-5.1.37.tar.gz 55a398daeb69a778fc46573623143268 mysql-5.1.39.tar.gz