Update to MySQL 5.1.39
This commit is contained in:
parent
544d60a817
commit
fbfeb21c64
@ -1 +1 @@
|
||||
mysql-5.1.37.tar.gz
|
||||
mysql-5.1.39.tar.gz
|
||||
|
@ -11,17 +11,21 @@ elsewhere. At some point we might want to use our my_setstacksize()
|
||||
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
|
||||
--- mysql-5.1.33.orig/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp 2009-03-13 17:54:07.000000000 -0400
|
||||
+++ mysql-5.1.33/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp 2009-04-15 14:00:04.000000000 -0400
|
||||
@@ -106,8 +106,8 @@
|
||||
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.39.orig/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp 2009-09-04 12:21:19.000000000 -0400
|
||||
+++ mysql-5.1.39/storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp 2009-09-21 22:33:08.000000000 -0400
|
||||
@@ -106,13 +106,8 @@
|
||||
AsyncFile::doStart()
|
||||
{
|
||||
// Stacksize for filesystem threads
|
||||
- // An 8k stack should be enough
|
||||
- const NDB_THREAD_STACKSIZE stackSize = 8192;
|
||||
-#if !defined(DBUG_OFF) && defined (__hpux)
|
||||
- // Empirical evidence indicates at least 32k
|
||||
+ // 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];
|
||||
numAsyncFiles++;
|
||||
|
@ -1,6 +1,6 @@
|
||||
Name: mysql
|
||||
Version: 5.1.37
|
||||
Release: 5%{?dist}
|
||||
Version: 5.1.39
|
||||
Release: 1%{?dist}
|
||||
Summary: MySQL client programs and shared libraries
|
||||
Group: Applications/Databases
|
||||
URL: http://www.mysql.com
|
||||
@ -642,6 +642,10 @@ fi
|
||||
%{_mandir}/man1/mysql_client_test.1*
|
||||
|
||||
%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
|
||||
- Work around unportable assumptions about stpcpy(); re-enable main.mysql test
|
||||
- Clean up some obsolete parameters to the configure script
|
||||
|
Loading…
Reference in New Issue
Block a user