branches with status:
Name Status Last Modified Last Commit
lp:~mysql/mysql-connector-cpp/trunk 1 Development 2015-06-04 12:51:14 UTC
1038. Fix Windows build

Author: Luís Silva
Revision Date: 2015-06-04 12:51:14 UTC

Fix Windows build

lp:mysql-server/cluster-7.0 2 Mature 2015-04-17 14:23:53 UTC
4873. ndb - add mapping table for MaxNoOfEx...

Author: Jonas Oreland
Revision Date: 2012-03-09 13:24:50 UTC

ndb - add mapping table for MaxNoOfExecutionThreads to thread-types

lp:mysql-server/cluster-7.1 2 Mature 2015-04-17 14:22:12 UTC
5125. Fix regression introduced by fix for ...

Author: Ole John Aske
Revision Date: 2015-01-21 08:37:53 UTC

Fix regression introduced by fix for bug#19524096.

That fix caused ndb_global_schema_lock_error to fail as mysqld
ended up in a deadlock between TransporterFacade and ClusterMgr mutex
in ClusterMgr::is_cluster_completely_unavailable(). There
likely are other deadlock scenarios also.

The fix is to remove the Guard locking clusterMgrThreadMutex.
The rational and (lack of) correctness for this is discussed in
a mail pasted below.

There are also a few small improvements to ::is_cluster_completely_unavailable()

1. Dont copy entire 'trp_node' struct but read it by refference instead.

2. Replace usage of 'm_impl->m_transporter_facade' with 'getTransporter()'
   as this is the pattern used elsewhere in this code block.

--------------- Pasted mail with some background ----------------

Subject: (Dead-) locking of ClusterMgr::theNodes[] structures

Hi

Writing this as a note to myself and others after having analyzed
the failure of ndb_global_schema_lock_error.test. That test
timed out as mysqld ended up in a deadlock between
ClusterMgr::clusterMgrThreadMutex and TransporterFacade::theMutexPtr

ClusterMgr maintains node state & info in theNodes[]. From external
components, this info is access through ClusterMgr::getNodeInfo().
theNodes[] are only updated from within ClustMgr, all external access
is read only.

Updates to theNodes[] are partly done from withing several ClustMgr::exec<foo>
methods, and partly from ClusterMgr::reportConnected() / ::reportDisconnected().
All updates seems to be done with ClusterMgr::clusterMgrThreadMutex locked.

Several ClusterMgr methods are available for inspecting node status
from other components, these all use information from theNodes[].
Some of the more commonly used of these methods are:

 - TransporterFacade::get_node_alive(n) (Reads 'theClusterMgr->getNodeInfo(n)')
 - TransporterFacade::get_an_alive_node() (Implemented on top of ::get_node_alive(n))
 - NdbImpl::get_node_stopping(n) (Reads 'theClusterMgr->getNodeInfo(n)')
 - NdbImpl::get_node_alive(n) (Reads 'theClusterMgr->getNodeInfo(n)')
 - NdbImpl::get<foo> ...A lot more node state getters....

The locking schema used to provide atomicity of theNodes[] for the above
methods are .... mixed, and not really defined at all as far as I can tell.
Some examples:

- NdbDictInterface::dictSignal(), NdbDictInterface::forceGCPWait() & NdbDictInterface::listObjects():
  Before calling get_node_alive() / ::get_an_alive_node(), a PollGuard is set.
  PollGuard calls trp_client::start_poll() which is different pre/post 7.3:
  - Pre 7.3, trp_client::start_poll
              -> TransporterFacade::start_poll -
                -> lock TransporterFacade mutex (a global mutex)

   - 7.3 -> trp_client::start_poll, lock trp_client m_mutex.
              -> TransporterFacade::start_poll ...no locking, and mutex gone in this version

 Observations: There are no locking of ClusterMgr::clusterMgrThreadMutex here,
               neither pre/post 7.3 .

- Ndb_cluster_connection::wait_until_ready(),
  Ndb_cluster_connection_impl::get_next_alive_node()
  Ndb_cluster_connection::get_no_ready():
  These all sets the TransporterFacadeFurthermore mutex.

- Ndb::sendRecSignal
  Sets a PollGuard as above, which either lock the TransporterFacade or
  the trp_client mutex

- Ndb::sendPrepTrans()
  Documents in comments that TransporterFacade mutex should be locked prior to call

So this has become a total mess. It might seem like that it prior
to 7.3 was the intention that TransporterFacade mutex should be held
when accessing theNodes[], or any methods that access it itself.
After 7.3 a mix of TransporterFacade and Trp_client mutex is effectively used

Updating looks like it sets the ClusterMgr mutex to protect these, which will
of course not work as the reader doesnt set this mutex. However, it could be
that all updates happens at places where it is called from the TransporterFacade.
Here we *used to* hold the TransporterFacade mutex prior to 7.3, which would make
some sense. This all needs more investigation .... and some documentation in the code...
In the current state there certainly are no effective concurrency protection of
the node state info in 7.3+ , It could be that it work in 7.1 & 7.2

On top of this the fix for bug#19524096 introduced
ClusterMgr::is_cluster_completely_unavailable() which is also based on
the nodes status available in theNodes[]. Probably in good faith,
backed by that updates of theNodes[] was protected with clusterMgrThreadMutex,
that method grabs that lock before accessing theNodes[] info.

Actually this method is *the only* node state getters which
does any explicit locking. ... and it was doomed to fail as this
was completely untested territory. See other mail about how
it could deadlock with the TranporterFacade mutex.

Sidenote: any other node state getters attempting to follow the
same locking pattern had likely deadlocked the same way.

::is_cluster_completely_unavailable() is called from within code
which also calls ::get_node_alive() and ::get_an_alive_node(),
without using any locking protection for these. Based on this I will
propose a patch for the bug#19524096 regression, which simply
removes the mutex locking from ::is_cluster_completely_unavailable().

This will not be entirely kosher based on how the shared node state
structs should have been mutex protected. However, based on my discussion
above, there are already so many violations in this area that a single
more should not matter. A bigger effort should be taken to clean up this entirely.

lp:mysql-server/cluster-7.2 2 Mature 2015-04-17 14:21:59 UTC
4625. Cherrypicked revision-id: mauritz.su...

Author: Mauritz Sundell
Revision Date: 2014-10-09 13:02:54 UTC

Cherrypicked

revision-id: mauritz.sundell@oracle.com-20141009124636-dg0th9bzvr27r1i7
parent: mauritz.sundell@oracle.com-20140930122950-gn1rl2yigc4s7ucu
committer: Mauritz Sundell <mauritz.sundell@oracle.com>
branch nick: mysql-7.1
timestamp: Thu 2014-10-09 14:46:36 +0200
message:
    Bug #19582807 MAKE SIGNAL DUMP IN TRACE FILES ALWAYS START FROM LATEST SIGNAL

    Removes a regression introduced with patch for the above bug.

    During crash dumps there could be a segmentation fault or most recent
    signals could be dump as old signals or not at all.

lp:mysql-server/cluster-7.3 1 Development 2015-04-17 14:21:29 UTC
4444. Cherrypicked revision-id: mauritz.su...

Author: Mauritz Sundell
Revision Date: 2014-10-09 13:04:27 UTC

Cherrypicked

revision-id: mauritz.sundell@oracle.com-20141009124636-dg0th9bzvr27r1i7
parent: mauritz.sundell@oracle.com-20140930122950-gn1rl2yigc4s7ucu
committer: Mauritz Sundell <mauritz.sundell@oracle.com>
branch nick: mysql-7.1
timestamp: Thu 2014-10-09 14:46:36 +0200
message:
    Bug #19582807 MAKE SIGNAL DUMP IN TRACE FILES ALWAYS START FROM LATEST SIGNAL

    Removes a regression introduced with patch for the above bug.

    During crash dumps there could be a segmentation fault or most recent
    signals could be dump as old signals or not at all.

lp:connectorj 1 Development 2015-04-17 14:07:16 UTC
1382. New version, 5.1.34

Author: Jess Balint
Revision Date: 2014-10-14 16:32:13 UTC

New version, 5.1.34

lp:myconnpy bug 1 Development 2015-04-17 14:03:28 UTC
389. Release 1.0.10

Author: Geert JM Vanderkelen
Revision Date: 2013-05-02 08:32:13 UTC

Release 1.0.10

lp:myconnpy/1.1 1 Development 2015-04-17 14:01:45 UTC
451. BUG#18422727: Removed GPL license in ...

Author: Peeyush Gupta
Revision Date: 2014-04-24 06:34:31 UTC

BUG#18422727: Removed GPL license in the commercial deb package

Commercial deb package of Connector/Python was containing a
copyright file containing GPL license. This patch updates
the copyright file of commercial deb package with commercial
license.

lp:myconnpy/1.2 1 Development 2015-04-17 13:57:09 UTC
516. BUG#19444705: Fix Connector/Python de...

Author: Balasubramanian Kandasamy
Revision Date: 2014-08-14 20:53:38 UTC

BUG#19444705: Fix Connector/Python dependency for utilities 1.5.1

lp:myodbc/5.2 2 Mature 2015-04-15 08:57:59 UTC
1241. Updated the OpenSSL 1.0.1m changelog ...

Author: Kent Boortz
Revision Date: 2015-04-15 08:57:59 UTC

Updated the OpenSSL 1.0.1m changelog entry

lp:myodbc/5.3 1 Development 2015-04-15 08:55:59 UTC
1302. Updated the OpenSSL 1.0.1m changelog ...

Author: Kent Boortz
Revision Date: 2015-04-15 08:55:59 UTC

Updated the OpenSSL 1.0.1m changelog entry

lp:mysql-utilities/1.6 1 Development 2015-02-26 15:48:47 UTC
511. Updated release date in CHANGES.txt f...

Author: Nelson Goncalves
Revision Date: 2015-02-26 15:48:47 UTC

Updated release date in CHANGES.txt for release to SysQA

lp:mysql-utilities/1.5 1 Development 2015-02-26 15:43:57 UTC
521. Updated release dates in CHANGES.txt ...

Author: Nelson Goncalves
Revision Date: 2015-02-26 15:43:57 UTC

Updated release dates in CHANGES.txt for release to SysQA

lp:mysql-server/5.1 bug 2 Mature 2015-01-22 12:24:36 UTC
4061. Bug#17617945 BUFFER OVERFLOW IN GET_M...

Author: Tor Didriksen
Revision Date: 2013-11-01 15:39:19 UTC

Bug#17617945 BUFFER OVERFLOW IN GET_MERGE_MANY_BUFFS_COST WITH SMALL SORT_BUFFER_SIZE

get_cost_calc_buff_size() could return wrong value for the size of imerge_cost_buff.

lp:mysql-server/5.5 2 Mature 2015-01-22 12:24:21 UTC
4736. Added sles11 repo packages

Author: Balasubramanian Kandasamy
Revision Date: 2014-11-04 07:30:23 UTC

 Added sles11 repo packages

lp:mysql-server/5.6 (Linked to a blueprint) 2 Mature 2015-01-22 12:24:05 UTC
6235. Bug #19183565 CREATE DYNAMIC INNODB_T...

Author: Thirunarayanan B
Revision Date: 2014-11-21 05:20:02 UTC

Bug #19183565 CREATE DYNAMIC INNODB_TMPDIR VARIABLE TO CONTROL
  WHERE INNODB WRITES TEMP FILES
  - Reverting the patch.

lp:mysql-server 1 Development 2015-01-22 12:23:44 UTC
7626. Fix for bugs 18402580 and 18402999, a...

Author: Bjorn Munch
Revision Date: 2014-03-19 10:32:19 UTC

Fix for bugs 18402580 and 18402999, as suggested for 18402580

  Instead of relying on $HOME, use Perl's getpwuid() to get home dir.

lp:~mysql/myconnpy/1.6 1 Development 2014-09-26 15:31:15 UTC
456. BUG#19675964 : README file name in DM...

Author: Israel Gomez
Revision Date: 2014-09-24 18:45:40 UTC

BUG#19675964 : README file name in DMG packages is not congruent to other pkgs

The README file in the MySQL Utilities commercial DMG packages is being named
ReadMe.txt instead of README_com.txt unlike in other packages. Similarly, the
LICENSE file was packed as License.txt instead of LICENSE.txt. This patch
fixes the packaging code to correctly include these files with names that are
congruent with the other packages.

The license notice that appears in the Python egg for the commercial
distribution has also been corrected to be NO GPL applicable.

As part of fix BUG#19675930, the bdist command has been updated to include
the README_Fabric_com.txt instaed of README_Fabric.txt

In addition the MySQL Utilities version has been updated to be the same as
the release version (1.6).

v4 patch for mu-1.6.0

lp:mysql-proxy/0.8 2 Mature 2014-08-19 07:21:07 UTC
1315. fixed prototype to match _invalid_par...

Author: Jan Kneschke
Revision Date: 2014-08-19 07:21:07 UTC

fixed prototype to match _invalid_parameter_handler

see http://msdn.microsoft.com/en-us/library/a9yf33zb.aspx

lp:mysql-utilities/1.4 1 Development 2014-07-17 16:11:38 UTC
451. Add CHANGES.txt to commercial rpms

Author: Balasubramanian Kandasamy
Revision Date: 2014-07-17 16:11:38 UTC

Add CHANGES.txt to commercial rpms

lp:mysql-fabric 1 Development 2014-07-10 15:08:02 UTC
240. Releasing version 1.4.4

Author: Alfranio Correia
Revision Date: 2014-07-10 15:08:02 UTC

Releasing version 1.4.4

lp:mysql-utilities 1 Development 2014-06-23 18:31:10 UTC
419. Merging back the changes

Author: Surya Narayana Murthy Narkedimilli
Revision Date: 2014-06-23 18:31:10 UTC

Merging back the changes

lp:mysql-proxy/0.7 2 Mature 2013-12-17 06:42:18 UTC
708. bumped the version number to 0.7.3 an...

Author: <email address hidden>
Revision Date: 2009-07-10 11:41:54 UTC

bumped the version number to 0.7.3 and updated the NEWS

lp:mysql-proxy (Linked to a blueprint) 1 Development 2013-12-17 06:42:17 UTC
1245. removed section about Centos 4.3 and ...

Author: Jan Kneschke
Revision Date: 2012-05-25 06:50:13 UTC

removed section about Centos 4.3 and replaced fink by macports

lp:myodbc 2 Mature 2013-09-25 16:25:03 UTC
1114. Remove dependency on stlport4

Author: Kent Boortz
Revision Date: 2013-09-25 16:25:03 UTC

Remove dependency on stlport4

lp:~mysql/mysql-utilities/1.3.4 1 Development 2013-08-02 20:14:36 UTC
349. MySQL Utilities release-1.3.4 : Packa...

Author: Israel Gomez
Revision Date: 2013-08-01 20:04:35 UTC

MySQL Utilities release-1.3.4 : Package testing

This patch fixes the error occurring at the build of commercial msi
package error:"missing file README.txt", introduced by the changes in
previous patch.

Also changes the installation path of the python library files in debian
from ".../python2.Y/site-packages/" to ".../python2.Y/dist-packages/" to
be the same as the Connector python uses.

lp:~mysql/mysql-utilities/1.3.2 1 Development 2013-06-18 08:41:57 UTC
328. Release-1.3.2 CHANGES.txt update 2

Author: Chuck Bell
Revision Date: 2013-06-07 15:13:17 UTC

Release-1.3.2 CHANGES.txt update 2

lp:~mysql/mysql-utilities/1.3.1 1 Development 2013-06-14 08:12:20 UTC
317. Release-1.3.1 Correct Windows .XML f...

Author: Chuck Bell
Revision Date: 2013-05-02 21:25:09 UTC

Release-1.3.1

Correct Windows .XML file entry for .frm reader.

lp:mysql-replication-listener 1 Development 2013-04-20 09:49:19 UTC
73. Releasing version 0.1.0

Author: Mats Kindahl
Revision Date: 2013-04-20 09:49:19 UTC

Releasing version 0.1.0

lp:mysql-connector-cpp/1.1.1 1 Development 2012-09-13 20:30:49 UTC
933. copyright year in CHANGES :)

Author: Lawrin Novitsky
Revision Date: 2012-08-06 18:13:42 UTC

copyright year in CHANGES :)

lp:myodbc/3.51 2 Mature 2012-08-28 12:07:38 UTC
782. Changed RPM release number to start f...

Author: Kent Boortz
Revision Date: 2012-02-13 09:57:01 UTC

Changed RPM release number to start from 1

lp:connectorj/trunk 1 Development 2012-08-22 20:32:31 UTC
853. Merged from 5.1

Author: Mark Matthews
Revision Date: 2011-02-20 01:21:10 UTC

Merged from 5.1

lp:mysqlndstat 0 Experimental 2008-12-20 00:10:13 UTC
12. HTML work

Author: Johannes Schlüter
Revision Date: 2008-10-31 17:00:16 UTC

HTML work

133 of 33 results